I have a grid. It has a 'GridClientSelectColumn' and another grid template column.
On grid load the radcombobox should be made visible false. when i select the row the label should be invisible & combobox should be bound from database & made visible. All these should be done at client side. Is it possible?
On grid load the radcombobox should be made visible false. when i select the row the label should be invisible & combobox should be bound from database & made visible. All these should be done at client side. Is it possible?
| <telerik:GridTemplateColumn AllowFiltering="false" HeaderText="Progress" UniqueName="RadComboBox_ScoreName" |
| Visible="true"> |
| <ItemTemplate> |
| <telerik:RadComboBox ID="RadComboBox_ScoreName" runat="server" MarkFirstMatch="True" |
| Font-Names="Arial" Skin="Web20" Width="80px"> |
| <Items> |
| <telerik:RadComboBoxItem runat="server" Text="--Select--" Value="--Select--" /> |
| </Items> |
| <CollapseAnimation Duration="200" Type="OutQuint" /> |
| </telerik:RadComboBox> |
| <asp:Label ID="lblScoreID" runat="server" Visible="false" Text='<%# DataBinder.Eval(Container.DataItem, "ScoreID")%>'></asp:Label> |
| </ItemTemplate> |
| <ItemStyle VerticalAlign="Top" /> |
| <HeaderStyle ForeColor="#192666" Font-Bold="True" /> |
| </telerik:GridTemplateColumn> |