This question is locked. New answers and comments are not allowed.
Hello,
I see from this thread and this thread that you are working towards adding a grand total row / footer.
I have a client requesting that we add a totals row and wanted to get your thoughts and input.
I'm using the telerik grid to sit on top of a Microsoft Analysis Services Cube. I use a fairly complex MDX statement to pull data back into the webservice, populate a POCO object collection and then I bind the grid to that collection.
Couple of thoughts/concerns:
Really looking for your thoughts ideas as I have no-one else to ponder this with.
I see from this thread and this thread that you are working towards adding a grand total row / footer.
I have a client requesting that we add a totals row and wanted to get your thoughts and input.
I'm using the telerik grid to sit on top of a Microsoft Analysis Services Cube. I use a fairly complex MDX statement to pull data back into the webservice, populate a POCO object collection and then I bind the grid to that collection.
Couple of thoughts/concerns:
- I'm not sure I want the Telerik grid to do the summarizing. It may be easier to just pull back the totals row using MDX and use that to create a 'GrandTotal' row object. Especially in cases like Gross Margin Percent, it's not a sum calculation - you need the detail.
- I could just throw the row into the grid but then it will sort and filter - don't want that.
- Could I programmatically remove and re-insert the row whenever the grid is filtered or sorted? (seems like too much work).
- Maybe throw a second grid on the page, with the same column widths as the first grid so it lines up correctly, and bind it to the GrandTotal row? If the user resizes the 1st grid, I'll have to resize the grandtotal grid. Does this seem like a good solution?
Really looking for your thoughts ideas as I have no-one else to ponder this with.