private void gridControl1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
if(e.ColIndex > 0 && e.RowIndex > 0)
{
e.Style.CellTipText = e.Style.Text;
}
}
Hi,
Above method i am using for my custom control to get tooltip text.
Tool tip text always showing valuemember.How do i show diaplay member..?