Hello,
I am seeing what I think is a new bug since I hadn't noticed before and have recently upgraded to 19.4.0.48
If you configure a grid as follows:
<SfGrid DataSource="@Orders"
AllowResizing="true"
AllowTextWrap="true"
ClipMode="ClipMode.EllipsisWithTooltip"
>
<GridTextWrapSettings WrapMode="WrapMode.Header"></GridTextWrapSettings>
<GridColumns>
<GridColumn Field=@nameof(Order.OrderID) HeaderText="Order ID" IsPrimaryKey="true" TextAlign="TextAlign.Right" Width="120"></GridColumn>
<GridColumn Field=@nameof(Order.CustomerID) HeaderText="Customer Name" Width="120"></GridColumn>
<GridColumn Field=@nameof(Order.OrderDate) HeaderText=" Order Date" EditType="EditType.DatePickerEdit" Format="d" TextAlign="TextAlign.Right" Width="130" Type="ColumnType.Date"></GridColumn>
</GridColumns>
</SfGrid>
And then resize the column so that the column heading wraps, you get a confusing and unnecessary tooltip when hovering over it:
The tooltip should only appear on the rows where ellipsis are shown. I am fairly sure that is how it was working previously.
Thanks,
Chuck