Hi
In my Ultragrid row selection is working fine in IE6 but the issues is Firefox.
IE6 Code.
{
var band = igtbl_getBandById(rowid);
var strSampleId =igtbl_getRowById(rowid).cells[2].Element.outerText // Geting SampleID
}
Output is:
sample_detail_ext_avail.aspx?SampleId=undefined
Please help to me
how to use below code in Fire fox.
Regards
Sudhakar Rao.MCSD.Net,MCTS
Hello,
I am trying to reproduce the problem, unfortunately to no avail... This piece of code work properly on IE6 IE7 and FireFox2.0.
What am I missing?
Thanks.
If you want to get value of cell you have to use expression below. Independently of strSampleId value in my solution browser open sample_detail_ext_avail.aspx
var strSampleId =igtbl_getRowById(rowid).cells[2].getValue();
Yes, It`s working in Fire fox.
Thank you Mr. Bulgaria
Sudhakar Rao
Hi,
Iam head code row.getCell(0).getValue(); its working fine. I need to looping this Getcell dynamic. Any one can help to me.
var strSampleId = row.getCell(0).getValue();
// var strSampleId1=igtbl_getRowById(rowid).cells[0].getValue();
I In my Grid display have Three Columns.
ID Street Name City Name
ID is Iam Hiden the displaying. But if i check the 2rd and 3th columns. I required previous row values. this row is hidden in display grid.
Please help to me.
Sudhakar Rao MCSD.Net,MCTS