Hi,
I have used Telerik Radgrid with
'rad:GridClientSelectColumn' for Checkbox selection.
I used a ASP ObjectDataSource like this,
<asp:ObjectDataSource ID="GetAssociationDataSource" runat="server" SelectMethod="GetEMSAssociationsforReplace"
TypeName="Ecm360.Content.Authoring.LayoutsBO.ManageEmployeeBO">
<SelectParameters>
<asp:Parameter Name="intEmployeeID" Type="Int32" DefaultValue="-2" />
<asp:Parameter DefaultValue="1" Name="iPageNumber" Type="Int32" />
<asp:Parameter DefaultValue="5" Name="iPageSize" Type="Int32" />
<asp:Parameter DefaultValue="0" Name="iRecordCount" Type="Int32" Direction="Output" />
</SelectParameters>
</asp:ObjectDataSource>
When the page is loaded, this Objectdatasource will be called by default
with default data, & the checkbox displays without any issues.
But through JSON call, another call is made tru webservice, to fetch the appropriate
data & this time the checkboxes of GridClientSelectColumn are not binding and
its blank, please find the attached image...
Please help...