Total Number of records in MVC Grids

    Hi,

I am evaluating MVC Grid. Is it possible to show the total number of records at the bottom of the grid? Right now it is shown as caption at the top o f the grid.

thanks
Priyesh


1 Reply

MS Mohanraj S Syncfusion Team August 24, 2012 06:02 AM UTC

Hi Priyesh,

Thanks for using Syncfusion products.

Your requirement to show the caption at the bottom of the grid can be achieved through client side jquery script . Please refer the following code snippet.

[Jquery]

<script type="text/javascript">

$(document).ready(function () {

var caprow = $("#Grid1 .CaptionRow");

$("#Grid1 .CaptionRow").remove();

$("#Grid1").append(caprow);

});

</script>

Please refer to the below link to download the sample application.

CaptionRowBottom.zip

Please let me know if you have any concern.

Regards,

Mohanraj


Loader.
Up arrow icon