Hello,
I need to show some specific information when a user click on a contextmenu item like :
ContextMenuItem showOnEventClick = new ContextMenuItem("[#SIEBEL_ACCOUNT_ID#]");
showOnEventClick.Click += new EventHandler<contextmenuitemclickeventargs>(ContactList_Click);
menuOnMarker.MenuItems.Add(showOnEventClick);</contextmenuitemclickeventargs>
I was expecting to get the data based on [#SIEBEL_ACCOUNT_ID#] when the event:
private void ContactList_Click(object sender, ContextMenuItemClickEventArgs e)
has been fired... but it seems than the innerhtml that is available inside the event is : [#SIEBEL_ACCOUNT_ID#] and not the data linked with the column.......
How can I get the data and not the column name from within the event handler?
thanks a lot.
jm.