private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
if(e.ColIndex > 0 && e.RowIndex > 0)
{
e.Style .CellTipText = string.Format("Tip for row {0}. Cell value={1}", e.RowIndex, this.gridDataBoundGrid1[e.RowIndex, e.ColIndex].CellValue);
}
}
http://www.syncfusion.com/Support/user/uploads/GDBG_ToolTip_c30e09f6.zip
private void gridGroupingControl1_QueryCellStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableCellStyleInfoEventArgs e)
{
if(e.TableCellIdentity.TableCellType == GridTableCellType.AlternateRecordFieldCell
|| e.TableCellIdentity.TableCellType == GridTableCellType.RecordFieldCell)
{
GridRecordRow rec = e.TableCellIdentity.DisplayElement as GridRecordRow;
if(rec.ParentRecord != null)
{
e.Style.CellTipText = rec.ParentRecord.GetValue("Col1") + " " + rec.ParentRecord.GetValue("Col2");
}
}
}