AD
Administrator
Syncfusion Team
February 19, 2003 08:11 PM UTC
You could make the cell type static if you don't need editing.
Other than this if you need to handle mouse clicks for an active textbox, you could listen to mouse events of the textbox renderer. The CellRenderer has a
Example:
GridTextBoxCellRenderer tb = (GridTextBoxCellRenderer) grid.CellRenderers["TextBox"];
tb.TextBox.MouseUp += new MouseEventHandler(MyMouseUpHandler);
Stefan