I have grid where I am not able to get theClipMode.ElipsisWithTooltip to work.
the following:
col.Field("CP1").HeaderText("Plan1").Tooltip("#colTip").ClipMode(ClipMode.Clip).Width(100).Add();
Will produce the column (cliped at the specified width) and provide the tooltip as desired.
Using the following:
col.Field("CP1").HeaderText("Plan1").Tooltip("#colTip").ClipMode(ClipMode.EllipsisWithTooltip).Width(100).Add();
will produce the Ellipsis but the tooltip will not function.
Likewise:
col.Field("CP1").HeaderText("Plan1").Tooltip("#colTip").ClipMode(ClipMode.Ellipsis).Width(100).Add();
will produce the Ellipsis but the tooltip will not function.