Detect 0 rows in a Telerik ASP.NET MVC Grid

1.6k Views Asked by At

What is considered the best practice for determining whether there are any rows bound?

Currently, I'm using the client-side OnDataBound event, and code similar to the following:

gridDataBound: function (event)
{
   var rows = $('tbody tr:has(td)', this);
   if (rows.length == 0 || (rows.length == 1 && rows[0].innerText == "No records to display'))
      $('#GridSection').hide("slow");
}

There has got to be a better way!

3

There are 3 best solutions below

0
On BEST ANSWER

I can suggest a shorter version:

 if ($(this).find(".t-no-data").length) {
    $("#GridSection").hide("slow");
 }
0
On

Ah, a few minutes poking around and I think I have a solution that really feels better-

if ($("tbody tr:has(td).t-no-data", this).length != 0) {
   $("#GridSection").hide("slow");
}
1
On

$('#grid-name').data('tGrid').data is an array of all of the records.

So, you can get the number of records using:

$('#grid-name').data('tGrid').data.length;