Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to Change 'Estimated Annual Mileage' for the state CA from a 2 digit input to 6 digit input due to CA Verified Mileage project. All other states will still require a 2 digit input except CA.

What i am trying to figure out is if there is a method of being able to change the MaxLength below once CA has been selected. I would usually create a new Table Row and then call this using an IF state if CA was selected and hide the existing, but it seems who ever coded this before me coded the full table to be called instead of table rows as usual.

Method calling the table

fnStyleDisplay(BrowserVersion, "trItemUsage_1", "none");

The Table its Calling along with the Table Row holding the Estimate Annual Mileage i am trying to change.

<tr id="trItemUsage_1" style="display: none;">
    <td colspan="4">
        <table width="760px" class="TableBorder" id="Table153">
            <tr height="0px">
                <td width="20%"></td>
                <td width="30%"></td>
                <td width="20%"></td>
                <td width="30%"></td>
            </tr>
            <tr>
                <td colspan="4">
                    <span class="SubSectionDescription">First Item : </span>
                </td>
            </tr>
            <tr id="tr3">
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Year :
                </td>
                <td>
                    <asp:TextBox runat="server" Width="40px" MaxLength="4" id="txtItemUsage_1_Year"></asp:TextBox>
                </td>
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Make :
                </td>
                <td>
                    <asp:TextBox runat="server" Width="200px" MaxLength="25" id="txtItemUsage_1_Make"></asp:TextBox>
                </td>
            </tr>
            <tr id="tr4">
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Model :
                </td>
                <td>
                    <asp:TextBox runat="server" Width="200px" MaxLength="25" id="txtItemUsage_1_Model"></asp:TextBox>
                </td>
            </tr>
            <tr>                                                            
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Estimated Annual Mileage :
                </td>
                <td>
                    <asp:TextBox runat="server" Width="30px" MaxLength="2" id="txtItemUsage_1_Mileage" onblur="txtItemUsage_Mileage_onblur('1')"></asp:TextBox>
                </td>
                <td id="tdItemUsage_1_Usage">
                    <span class="FieldRequired">*</span>&nbsp;Please specify item usage :
                </td>
                <td>
                    <asp:DropDownList runat="server" ID="cboItemUsage_1_Usage" onchange="cboItemUsage_Usage_onchange('1')">
                        <asp:ListItem value="">--</asp:ListItem>
                        <asp:ListItem value="Pleasure">Pleasure</asp:ListItem>
                        <asp:ListItem value="Work">Work</asp:ListItem>
                        <asp:ListItem value="Business">Business</asp:ListItem>
                        <asp:ListItem value="Farm">Farm</asp:ListItem>
                    </asp:DropDownList>
                </td>
            </tr>
            <tr id="trItemUsage_1_Miles" style="display: none">
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Miles One Way to Work/School :
                </td>
                <td>
                    <asp:TextBox runat="server" Width="30px" MaxLength="2" id="txtItemUsage_1_Miles"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Should the operator assignments be changed?
                </td>
                <td>
                    <asp:DropDownList runat="server" ID="cboItemUsage_1_ChangeAssignments" onchange="cboItemUsage_ChangeAssignments_onchange('1')">
                        <asp:ListItem value="">--</asp:ListItem>
                        <asp:ListItem value="Yes">Yes</asp:ListItem>
                        <asp:ListItem value="No">No</asp:ListItem>
                    </asp:DropDownList>
                </td>
            </tr>
            <tr id="trItemUsage_1_AssignmentChanges" style="display: none">
                <td>
                    <span class="FieldRequired">*</span>&nbsp;Please specificy assignment changes :
                </td>
                <td>
                    <asp:TextBox runat="server" Width="200px" MaxLength="200" id="txtItemUsage_1_AssignmentChanges"></asp:TextBox>
                </td>
            </tr>
        </table>
    </td>
</tr>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.