vote up 0 vote down star

Having the GridView client control ID, I would like to get some ideas on how to count the GridView rows or at least be able to tell if there is at least one row on the Gridview the restriction is that I can only use client side code (JavaScript in this case)

flag

1 Answer

vote up 1 vote down check
var rowscount = document.getElementByID(<%=Gridview1.ClientID%>).rows.length;

alert(rowscount);
link|flag
Oh nifty, I didn't know about ClientID, going to use that. – stimms Nov 19 at 14:36

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.