Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
435
Hierarchy Grid with Multiple Layouts using LoadOnDemand feature
posted

Hi,

I have a need to display multiple ColumnLayouts using LoadOnDemand. Currently everything is working as expecting except the Children ColumnLayouts displayed a empty Grid.

GridModel gridModel = this.GetGridModel(ajaxUpdateTarget, 0);
 
                GridUIHelper.ApplyLayout(ref gridModel, vm);
                gridModel.DataSource = resultSet.Result.AsQueryable();
                return gridModel.GetData();

Thank you