mikea314

Results 5 comments of mikea314

In Grid.cs, please can you change: // Datatype script.AppendLine(_enabledTreeGrid ? string.Format("treedatatype:'{0}',", _dataType.ToString().ToLower()) : string.Format("datatype:'{0}',", _dataType.ToString().ToLower())); To: // Datatype script.AppendLine(string.Format("datatype:'{0}',", _dataType.ToString().ToLower())); // TreeGrid Datatype if (_enabledTreeGrid) { script.AppendLine(string.Format("treedatatype:'{0}',", _dataType.ToString().ToLower())); }

This was closed, but it doesn't appear to have been fixed ?

Done Resolve Issue #38: datatype needs to be set, even if we are setting a treedatatype https://github.com/robinvanderknaap/MvcJqGrid/pull/57 #57 opened a minute ago by mikea314 https://github.com/robinvanderknaap/MvcJqGrid/issues?q=is%3Apr+is%3Aopen+author%3Amikea314 On Wed, Jun 3, 2015...

> 1. modify the LoadServer data from: > `Task LoadParents(T? parent)` to` Task LoadParents(TreeNodeData parent)` > In this case the users will have to add children's to Children collection >...