jsuske1985
jsuske1985
Did you ever figure this out, i am stuck on the same issue.
Do a try and catch: ``` try { MVCGridDefinitionTable.GetDefinition("LogGrid"); } catch (Exception e) { MVCGridDefinitionTable.Add("LogGrid", def); } ``` The reason you are getting that error is because the grid is...
> I need to display total which will be sum of a particular column in grid itself. Let me know for solutions Hi, I did figure out a solution, but...
Solved It: ``` def.Paging = true; def.ItemsPerPage = 25; def.MaxItemsPerPage = 25; def.RetrieveData = (context) => { var options = context.QueryOptions; var result = new QueryResult(); var query = _modelItems.AsQueryable();...