Hi,
I have one Radgrid with multiple dynamic text box columns and some fileds, that multiple columns are creating in server side only.
While updating the Grid items, I need validations on that text boxes ..
Can anyone help me regarding this..
Thanks
-Rk.Moorthy
I have one Radgrid with multiple dynamic text box columns and some fileds, that multiple columns are creating in server side only.
<telerik:RadGrid ID="RGManualSolver" runat="server" AutoGenerateColumns="false" Skin="Vista" OnNeedDataSource="RGManualSolver_NeedDataSource" OnUpdateCommand="RGManualSolver_UpdateCommand" OnItemCommand="RGManualSolver_ItemCommand" OnPreRender="RGManualSolver_PreRender" Width="1040px" Height="300px"> <MasterTableView EditMode="InPlace" EnableColumnsViewState="false" Width="97%" ClientDataKeyNames="MarketName" DataKeyNames="MKTID,SCID"> <Columns> <telerik:GridEditCommandColumn ButtonType="LinkButton" UniqueName="EditCommandColumn" ItemStyle-Width="60px" HeaderStyle-Width="60px"> </telerik:GridEditCommandColumn> <telerik:GridTemplateColumn DataField="SHOWCOST" HeaderText="VIEW COST ALLOCATION"> <ItemTemplate> <asp:LinkButton ID="LnkShowCostClick" runat="server" Text='<%#Eval("SHOWCOST") %>' CommandName="SHOWCOSTALLOCATIONClick"></asp:LinkButton> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> <ClientSettings> <Scrolling AllowScroll="true" /> </ClientSettings> </telerik:RadGrid>While updating the Grid items, I need validations on that text boxes ..
Can anyone help me regarding this..
Thanks
-Rk.Moorthy