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.
I want to leave the widht of the column, just enough for its values, since I dont want to activate the scroll bar.
Is it possible to do what I asked? Put the summary value on one column, and its description on another.
Hello dr,Please take a look at the sample which does just this. IT gets the inner html and splits it in two cells of one summary row. I can suggest a better approach because when you make a summary on the second column the splitiing will be overridden. You can inject <br\> elements between every “ “ symbol and then your summary row will be with higher height but the whole summary could be on one cell instead of just splitting it.
Hello dr,Please let me know if you have any further questions regarding this issue.