The summary of the column + its title is too big, and doesnt fit into one column.
I want to have the value of the summary below one column but its description below the previous colums.
So in the following example, I want the actual sum, to be bellow the ColPremAmount column,
and the title: "Total premium" to be bellow the previous column.
<ig:SummaryRow ShowSummariesButtons="False" EmptyFooterText=""> <ColumnSummaries> <ig:ColumnSummaryInfo ColumnKey="ColPremAmount"> <Summaries> <ig:Summary CustomSummaryName="Total premium" SummaryType="Sum" /> </Summaries> </ig:ColumnSummaryInfo> </ColumnSummaries> </ig:SummaryRow>
Hello drpoalim,Thank you for posting in our forums. This will happen when you have a grid with small width and you have not set width manually to pixels but letting the grid to split it automatically to the number of the columns. Please set manually the width of this column to lets say 300px and its summary will not get cut. This however may activate the scrollbar of the grid.
In my case I don't manage to find the grid this way.
var mtable = document.getElementById("x:680611362.15:mkr:footerContent.hdn");
Also I prefer not to find the grid with this numbers like this.
I would like to find the grid this way, var grid = $find("WebDataGrid1");
and then find its summary row.
Is this possible?