Hi, I could not find any docs satisfying my requirement .Can anyone help me in designing a grid as below.
User will enter values in rows for textbox1, textbox2 and textbox3. Last row should display the total of the values entered in above rows.
Discussion posts and replies are publicly visible
Following the patterns here
https://docs.appian.com/suite/help/21.3/Editable_Grid_Component.html#examples
You simply add a last row showing the required components and values.
My requirement is i have to do sum of values returned when user applies filter in non -editable grid. For example, grid has mileage column, when user applies filter then if rows are returned then i have to display sum of mileage returned from three rows.
This should be doable. Generally speaking this is a use case where you should be querying the data in advance into a local variable, then using that to populate the grid.
What have you tried already? Are you having any specific difficulties?
So the requirement is i have an interface where there are multiple filters, when user applies filters lets suppose it applies on two fields, then what ever rows are returned in non -editable grid, then i have to show the sum of one column values in some field
I was thinking of storing the value returned from a!gridField into some var (means whatever value is being returned when user applies xyz filter would be displaying in that grid and the data stored in grid can help me acheive the same, but i didnt find any parameter in a!gridField through which i can do this.