Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
535
web datagrid hide rows
posted

Hi,

our requirement was to get all the accounts and details for a client. We get this data using Stored procedure and fill custom oject and bind grid to custom object. After binding we hide the rows based on certain logic in Javascript. If the user wants to see the rest of the data, we provided them with checkbox. If checkbox is checked, then we show all rows. On server side, when we are looping thru rows, we check whether row is hidden or not and then do rest of the logic like this:

foreach (Ultragridrow row in UltraWebGrid1.Rows){

if (!row.Hidden)

 this worked fine with ultrawebgrid. With WebDatagrid GridRecord, there is no 'hidden' property to check. So, how can I hide the rows and check whether each row is hidden or not.

Thanks,

Spunny