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
345
Ultragrid Row Select not working in forfox.
posted

Hi

In my Ultragrid row selection is working fine in IE6 but the issues is Firefox.

IE6 Code.

function fnrowselect(grdname,rowid)

{

var grid = igtbl_getGridById(grdname);

var band = igtbl_getBandById(rowid);

if(band.Columns[2].Key = "Sample_ID")

{

var strSampleId =igtbl_getRowById(rowid).cells[2].Element.outerText // Geting SampleID

window.open('sample_detail_ext_avail.aspx?SampleId=' + strSampleId + '', 'Sample_Detail', 'width=800px,height=940px,top=10px,screenY=100px,left=100px,screenX=100px,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');

}

}

Output is:

sample_detail_ext_avail.aspx?SampleId=undefined

Please help to me

how to use below code in Fire fox.

var strSampleId =igtbl_getRowById(rowid).cells[2].Element.outerText // Geting SampleID

Regards

Sudhakar Rao.MCSD.Net,MCTS

Parents Reply Children