Good day there,
I would like to modify my filter expression on the server side in c#. The problem is that my radgrid rgAuditTrails_NeedDataSource event is not firing. I am declaring the events correctly as such;
<telerik:RadGrid ID="rgAuditTrails" AllowFilteringByColumn="true"
runat="server" SkinID="MySkin" ClientSettings-Selecting-AllowRowSelect="true"
AutoGenerateColumns="False" GridLines="None" AllowPaging="True"
DataSourceID="dsAuditTrails" PageSize="15"
onitemcommand="rgAuditTrails_ItemCommand"
onneeddatasource="rgAuditTrails_NeedDataSource
">
and I am making sure that EnableViewState="True" here.
<MasterTableView EnableViewState="true" DataKeyNames="AuditTrailID" DataSourceID="dsAuditTrails">
Could you perhaps come with any suggestions.
Thanks
RB