How do I set a clientside onclick event for an individual cell? UltraWebGrid.DisplayLayout.ClientSideEvents.CellClickHandler allows me to set a single client side onclick event that is applied to all cells, I need to be able to apply one of many onclick events to individual cells.
I don't think there's such a config for that. What you could try to do is to use the CellClickHandler and try to difference the cells once the event is fired, say by the cell's Column.Key property or it's value or whatever comparison you'd have to do.