BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
ej.Grid.locale["en-US"] = { GroupCaptionFormat: "{{:key}}", |
$("#Grid1").ejGrid({ . . . . . load: function (args) { ej.Grid.locale["en-US"]["GroupCaptionFormat"] = "{{:key}}"; } $("#Grid2").ejGrid({ . . . . . load: function (args) { ej.Grid.locale["en-US"]["GroupCaptionFormat"] = "{{:headerText}}"; } |
Madhu Sudhanan, thank you so much for your fast answer.
{{:field}} |
Defines the field name of the current group column(in your case Perfil) |
{{:key}} |
Defines the current group value(in your case Profile A) |
{{:count}} |
Defines the number of records under the current group |
{{:headerText}} |
Defines the headerText value of the current group column(header text of the column with field Perfil) |
ej.Grid.locale["en-US"] = { //Will display `Profile A` alone in the group caption GroupCaptionFormat: "{{:key}}" |