With RadGridView, Is there a way to set the ToolTipText value for a certain cell immediately after adding a row? For example:
Is there any way to set the ToolTipText property for a certain cell of that row?
Thanks,
--Jason
int
rowIndex = RadGridView1.Rows.Add(
"column1Text"
,
"column2Text"
,
"Column3Text"
);
RadGridView1.Rows[rowIndex].Cells[
"FirstColumn"
].?? (ToolTipText property) =
"ToolTipValue"
;
Is there any way to set the ToolTipText property for a certain cell of that row?
Thanks,
--Jason