I have a dialog accept cancel in my page and the javascript:
function OnDialogCancel(e)
{if (window.confirm("Weet u zeker dat u dit record wilt verwijderen?"))
eo_Callback('CallbackPanel1', e);
// grid.deleteItem(e);
}
in the gridview I have a hyperlinkfield
<asp:HyperLinkField
Text="<img Title = 'Verwijder deze regel' src='../Images/icon_delete.GIF' border='0' />" NavigateUrl ="javascript:OnDialogCancel(<% Eval("Id") %>)"/>
when I set the Id of the record instead of <% Eval("Id") %> it works.
how can I pass the value of the cell "Id" of the selected row to my callbackpanel1_execute