Hi,
I am using Keyboard navigation jqxGrid. I am using “showaggregates:true” and “aggregates:[‘sum’]” to show the sum of the values for a column in the grid. Here I am also customizing the aggregates by removing the default keyword “Sum:0” using the following code:
aggregatesrenderer: function (aggregates, column, element, summaryData) { var renderstring = “<div class=’jqx-widget-content jqx-widget-content-” + theme + “‘ style=’float: left; width: 100%; height: 100%;background-color:#E5E5E5’>”; $.each(aggregates, function (key, value) { renderstring += ‘<div style=”position: relative; margin: 6px; text-align: center; overflow: hidden;”> ‘ + value + ‘</div>’; }); renderstring += “</div>”; return renderstring; },
I have a first column in the grid, which dosent show any sum value in the aggregates row, here for this first column I need to display a text called ‘Total’ in the aggregates row. Is is feasible to do this?