I have a RadGrid inside of a Wizard step.
Why is the GridTemplateColumn container control disabled when the Tab is disabled and then enablled? if I have the Wizard Step enabled=false and then set it to to True in client-side code, the RadButton inside of the GridTemplateColumn is disabled. If i set it to True from the start the RadGrid controls are fine.
What the heck?
<telerik:RadWizardStep runat="server" Title="Company" ID="RadWizardStepCompany" Enabled="false">
IF I SET THIS TO TRUE - THE BUTTON IN THE GRID IS FINE
<telerik:RadWizardStep runat="server" Title="Company" ID="RadWizardStepCompany" Enabled="true">
<telerik:GridTemplateColumn> <ItemTemplate> <div style="float: left; width: 100%;"> <telerik:RadButton ID="RadButtonSelect" runat="server" Text="Select" CommandName="Select" Enabled="true" CommandArgument='<%# Eval("CompanyId")%>' AutoPostBack="false" OnClientClicked="RadButtonCompanySelectClicked" /> </div> </ItemTemplate> <HeaderStyle Width="55px" /> </telerik:GridTemplateColumn>