Hi,
For anyone who is also experiencing this problem. It appears something has changed regarding ObjectDataSource and adding to the selectparameter collection.
If, as we do, you programmatically do
in the Page_Load event, then this will cause your grids to stop working as expected when trying to expandcollapse. Telerik have provided the following solution
and adding OnSelecting="dsmyods_Selecting" to the ObjectDataSource decleration.
Hope this helps someone.
For anyone who is also experiencing this problem. It appears something has changed regarding ObjectDataSource and adding to the selectparameter collection.
If, as we do, you programmatically do
dsmyods.SelectParameters.Clear();
dsmyods.SelectParameters.Add("Param", 123);
protected void dsmyods_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
{
e.InputParameters.Clear();
e.InputParameters.Add("Param", 123);
}
and adding OnSelecting="dsmyods_Selecting" to the ObjectDataSource decleration.
Hope this helps someone.