How to merge the footer row's column in jqgrid

PCA

I have a footer column, where i need to show the total information. I have added the footer row true and got the footer row added.

enter image description here

simlar to the above image.

Here in footer row, i want to merge the client and date colum for the total in single column.

Does any one have done, please share your thoughts

Oleg

You use my old demo from the answer. If I understand you correctly you want remove vertical lines (cell borders) between some columns in the footer row. One can set colspan (close to the results from the answer). The disadvantage of the approach will be that one would need to adjust the width of the merged columns inside of resizeStop. So I suggest you to make unneeded vertical lines transparent. In general it's mostly the same what I described in the answer. In your case it would be something like

var $footRow = $("#list").closest(".ui-jqgrid-bdiv")
                         .next(".ui-jqgrid-sdiv")
                         .find(".footrow");

$footRow.find('>td[aria-describedby="list_name"]')
    .css("border-right-color", "transparent");

The demo demonstrates the approach. I made some more right borders of footer row invisible. So the results are like on the picture below:

enter image description here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to merge the footer row's column in jqgrid

From Dev

How to add two footer row in jqgrid using userdata?

From Dev

Bootstrap Footer Column/Row issue

From Dev

How to display calculated field in footer in jqgrid

From Dev

How to get Select's text from jqGrid column with inline editing

From Dev

How to Merge Some Column from Row into another Column

From Dev

How to read the JQgrid row values

From Dev

how to merge row in one column (GridView with merged cells)

From Dev

How to use dplyr to merge row data based on a column id

From Dev

How to use dplyr to merge row data based on a column id

From Dev

How to hide a jqgrid column dynamically

From Dev

How to hide a jqgrid column dynamically

From Dev

how to sort the jqgrid by one column

From Dev

Scroll Appear's In JqGrid Column's Header

From Dev

How to enable grouping with summary footer for each group in jqgrid

From Dev

How to get value of checked checkbox (in footer of jqgrid) and send to controller?

From Dev

Increase jqGrid Footer Height

From Dev

Can I add a header row under the column header row in JQGrid

From Dev

How to use previous row's column's value for calculating the next row's column's value

From Dev

How to access other row data from a cell's custom formatter in JqGrid

From Dev

Make jqGrid's cb column wider

From Dev

How to get row ID by row Data in jqgrid (Not by selected row)

From Dev

how to drop jqgrid row between not draggable rows

From Dev

How to Expand/Shrink row in Jqgrid dynamically

From Dev

How do I show row numbers in JqGrid?

From Dev

jqGrid - how to delete row from local data?

From Dev

jqGrid: How to add a row in "cell editing" model?

From Dev

how to call modal window on jqgrid row click?

From Dev

how to drop jqgrid row between not draggable rows

Related Related

  1. 1

    How to merge the footer row's column in jqgrid

  2. 2

    How to add two footer row in jqgrid using userdata?

  3. 3

    Bootstrap Footer Column/Row issue

  4. 4

    How to display calculated field in footer in jqgrid

  5. 5

    How to get Select's text from jqGrid column with inline editing

  6. 6

    How to Merge Some Column from Row into another Column

  7. 7

    How to read the JQgrid row values

  8. 8

    how to merge row in one column (GridView with merged cells)

  9. 9

    How to use dplyr to merge row data based on a column id

  10. 10

    How to use dplyr to merge row data based on a column id

  11. 11

    How to hide a jqgrid column dynamically

  12. 12

    How to hide a jqgrid column dynamically

  13. 13

    how to sort the jqgrid by one column

  14. 14

    Scroll Appear's In JqGrid Column's Header

  15. 15

    How to enable grouping with summary footer for each group in jqgrid

  16. 16

    How to get value of checked checkbox (in footer of jqgrid) and send to controller?

  17. 17

    Increase jqGrid Footer Height

  18. 18

    Can I add a header row under the column header row in JQGrid

  19. 19

    How to use previous row's column's value for calculating the next row's column's value

  20. 20

    How to access other row data from a cell's custom formatter in JqGrid

  21. 21

    Make jqGrid's cb column wider

  22. 22

    How to get row ID by row Data in jqgrid (Not by selected row)

  23. 23

    how to drop jqgrid row between not draggable rows

  24. 24

    How to Expand/Shrink row in Jqgrid dynamically

  25. 25

    How do I show row numbers in JqGrid?

  26. 26

    jqGrid - how to delete row from local data?

  27. 27

    jqGrid: How to add a row in "cell editing" model?

  28. 28

    how to call modal window on jqgrid row click?

  29. 29

    how to drop jqgrid row between not draggable rows

HotTag

Archive