Hello,
I have a problem with the DoubleClick on a RadGrid. When I double click on my grid, my javascript function doesn't want to give me my first column data unless it is visible. Is it possible to do it with my column invisible ?
I use the following javascript function
Thanks
Keven
I have a problem with the DoubleClick on a RadGrid. When I double click on my grid, my javascript function doesn't want to give me my first column data unless it is visible. Is it possible to do it with my column invisible ?
I use the following javascript function
function
OnRowDblClick(sender, eventArgs)
{
var
dataItem = $get(eventArgs.get_id());
var
grid = sender;
var
MasterTable = grid.get_masterTableView();
var
row = MasterTable.get_dataItems()[eventArgs.get_itemIndexHierarchical()];
var
cell = MasterTable.getCellByColumnUniqueName(row,
"NO_SERVEUR"
);
var
value = cell.innerHTML
window.location.href=
'FEN_INFO_SERVEUR.aspx?No_Serveur='
+value;
// Redirect the page
return
;
Thanks
Keven