I would like to set a tooltip for and individual cell of type 'GridCheckBoxCellElement'. I tried the following code but, unfortunately I did not have a way to determine the what cell (column/Row) index the sender came from. Any advice is appreciated.
void radGridViewAssignProject_ToolTipTextNeeded(object sender, ToolTipTextNeededEventArgs e){ ////GridDataCellElement cell = sender as GridDataCellElement; if (sender is RadCheckmark)
{ e.ToolTipText = "E-Form/Attachment files will be added to this project"; }
else if (sender is GridHyperlinkCellContentElement) {
e.ToolTipText = "Mapp project indexes to e-form controls."; }
else if (sender is RadButtonElement) {
e.ToolTipText = "Remove project from this e-form"; }
else if (sender is GridDataCellElement) {
}
else
{
e.ToolTipText = ""; }
}
void radGridViewAssignProject_ToolTipTextNeeded(object sender, ToolTipTextNeededEventArgs e){ ////GridDataCellElement cell = sender as GridDataCellElement; if (sender is RadCheckmark)
{ e.ToolTipText = "E-Form/Attachment files will be added to this project"; }
else if (sender is GridHyperlinkCellContentElement) {
e.ToolTipText = "Mapp project indexes to e-form controls."; }
else if (sender is RadButtonElement) {
e.ToolTipText = "Remove project from this e-form"; }
else if (sender is GridDataCellElement) {
}
else
{
e.ToolTipText = ""; }
}