Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1800
Summary text in groupby row
posted

Hi,

I have a ultrawebgrid that is having a groupby on a colum. I want to format the text that is displayed in the groupby row. I tried a couple of options including setting the GroupbyRowDescriptionMask property but it didn't work out.

Is there any equivalent in webgrid like SummarySetting in wingrid? Can anyone give an example of how to do SUM of a column and display it in the summary?

Thanks.,

Parents
No Data
Reply
  • 14049
    Verified Answer
    Offline posted
    Hello,

    The GroupbyRowDescriptionMask property is designed to do so in the
    WebGrid. If you put something like this it should work:
    UltraWebGrid1.DisplayLayout.GroupbyRowDescriptionMask = "Sum =
    [sum:NumericColumnKey]";
    where NumericColumnKey is the key of your numeric column.

    What do you see in your app?
Children