I am trying to use the ASP.NET 4.5 Model Binding features of RadGrid in version 2013.3.1114. My SelectMethod is defined in a Business Object. RadGrid throws an exception indicating that it cannot find the method on the page.
I have implemented the OnCallingDataMethods event:
protected void CallingDataMethods(object sender, CallingDataMethodsEventArgs e)
{
e.DataMethodsObject = new BLL();
}
However, RadGrid still attempts to locate the SelectMethod on the page object. Using the OnCallingDataMethods event of RadComboBox works correctly, so I am surprised that it is not working for RadGrid.
Has this been resolved in newer versions of RadGrid? If not, what are my options?
I have implemented the OnCallingDataMethods event:
protected void CallingDataMethods(object sender, CallingDataMethodsEventArgs e)
{
e.DataMethodsObject = new BLL();
}
However, RadGrid still attempts to locate the SelectMethod on the page object. Using the OnCallingDataMethods event of RadComboBox works correctly, so I am surprised that it is not working for RadGrid.
Has this been resolved in newer versions of RadGrid? If not, what are my options?