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
60
Clicking on a cell makes the row contents invisible in Version 9.1 of UltraWebGrid
posted

Hi

We were using Infragistics UltraWebGrid in Infragistics Version 6.3 and recently moved to Infragistics Version 9.1.  Now whenever a user clicks on a cell the whole row contents becomes invisible in version 9.1.  Previously this used to work fine in Version 6.3.  Is there some default property of the row that is changed in the new version, let me know how to change it?

Below is part of the code for your reference.  On click of a cell it goes to Javascript function alertGRid_CellClickHandler

---------------------------------------------

 

 

 

 

 

 

 

 

 

 

 

<

 

 

ClientSideEvents GridCornerImageClickHandler="alertGrid_GridCornerImageClickHandler"

 

 

CellClickHandler="alertGrid_CellClickHandler"

 

 

BeforeSortColumnHandler="alertGrid_BeforeSortColumnHandler"

 

 

BeforeFilterPopulated ="alertGrid_BeforeFilterPopulated"

 

 

BeforeRowFilterApplied= "alertGrid_BeforeRowFilterApplied"

 

 

MouseOutHandler="alertGrid_MouseOutHandler"

 

 

MouseOverHandler="alertGrid_MouseOutHandler"

 

 

ColumnHeaderClickHandler="alertGrid_ColumnHeaderClickHandler"

 

 

KeyDownHandler="alertGrid_KeyDownHandler"

 

 

MouseDownHandler="alertGrid_MouseDownHandler"

 

 

RowSelectorClickHandler="alertGrid_RowSelectorClickHandler" AfterColumnMoveHandler

="alertGrid_AfterColumnMoveHandler"

 

 

/>

-------------------------------------------------

Javascript function:

------------------------------------------------------

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

function

 

 

alertGrid_CellClickHandler(gridName, cellId, button){

 

 

try

{

 

 

var rowObj, colObj

 

 

var objRow

 

 

var length;

 

 

var metaType;

 

 

var oAlertGrid = igtbl_getGridById(gridName) ;

 

 

var colKey;

 

 

var index;

objRow =igtbl_getRowById(cellId);

colObj =igtbl_getColumnById(cellId);

colKey = colObj.Key;

index = colKey.indexOf(

"priority_") ;

metaType = parent.eventTypeId;

 

 

if (metaType=="0")

metaType = objRow.getCell(1).getValue();

 

metaTypeIdForDefault = metaType;

 

 

if (button ==2)

{

length=igtbl_getLength(oAlertGrid.SelectedRows);

 

 

}

 

 

 

 

}

 

catch( ex)

------------------------------------------------------

Thanks,

Ravi