Click here to Skip to main content
15,891,923 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have two rad-wizards and a text box in each wizard, i want to set the same value(from db) for two text-boxes on clicking of button. I know how to set for one at a time. Can someone help me to achieve this.

What I have tried:

Markup:

<telerik:RadWizardStep Title="Step Properties" runat="server">
        <table style="width:100%">
            <tr>
                <td style="width: 35%;" class="td_label" valign="top">
                    <telerik:RadLabel runat="server" RenderMode="Lightweight" ID="RadLabel1" Text="Sln Form:" CssClass="LabelStyle">
                    </telerik:RadLabel>
                </td>
                <td class="noWrap">
                    <telerik:RadTextBox runat="server" RenderMode="Lightweight" ID="slnForm" Enabled="false" CssClass="TextBoxMandatoryStyle">
                    </telerik:RadTextBox>
                </td>
            </tr>
        </table>
</telerik:RadWizardStep>

<telerik:RadWizardStep Title="Form" runat="server" ID="rformWizard">
        <table style="width: 100%">
            <tr>
                <td style="width: 35%;" class="td_label" valign="top">
                    <telerik:RadLabel runat="server" RenderMode="Lightweight" ID="SlnLabel" Text="SLN Form:" CssClass="LabelStyle">
                    </telerik:RadLabel>
                </td>
                <td class="noWrap">
                    <telerik:RadTextBox RenderMode="Lightweight" ID="slntxt" Enabled="false" runat="server" CssClass="TextBoxMandatoryStyle">
                    </telerik:RadTextBox>
                </td>
            </tr>
<telerik:RadWizardStep>
Posted
Updated 27-Nov-18 10:51am

1 solution

There may be some here who knows about Telerik controls, but I believed you stand a better chance by posting it at Telerik dedicated forums: Telerik Developer Forums[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900