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
145
Unable to change row cssclass
posted

Hi,

Since the upgrade to version 15.1.20151.2123 of the webdatagrid, i can't change the cssclass of a gridrecord.

I have a asp.net webform, in the prerender-method i change the cssclass of some rows using the following code:

GridRecord row = WebGrid.Rows[rowIndex];
if (row != null)
    row.CssClass = cssClass;

In the version 14.1.20141.2150 this worked perfect.

Is there a new method to change the cssclass or a workaround?

Thanks in advance

Rob