add class attribute to excell link

Hi,

Is there a way to add class attr to a link excell during loadXml time?

Thanks in advance.

Best regards.-

You may iterate through all your links after the data is loaded and add a needed attribute to your cells.

mygrid.load(url,function(){ mygrid.forEachRow(function(id){ mygrid.cells(id,col_ind).setAttribute("some","new value"); }); })