BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi
Morel,
Thank
you for contacting syncfusion support,
We
have analyzed your query. We are able to achieve your requirement by setting Tooltip
for FilterBarCell in QueryCellInfo event also ensure that ShowTooltip to True .
Please refer the below code snippet.
Code Snippet[C#]:
void Model_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
if (e.Style.CellType=="FilterBarCell")
{
e.Style.ShowTooltip = true;
e.Style.TooltipTemplate = App.Current.FindResource("FilterBarTooltip") as DataTemplate;
} } |
We
have prepare a sample based on this and you can download it from the below attachment
.
Please
let us know if you have any queries,
Regards,
Saravanan.M
Hi Morel,
We have checked with our side. We can get the style from DataTemplate and it applied to the TooltipTemplate while using Metro style. We have modified the sample and you can download it from below location.
Sample: GridDataControl_TooltipModified.zip
If this is not your requirement , could you please modify the sample based on your requirement and share the more details with your query?
Please let us know if you have any other queries,
Regards,
Saravanan.M
Hi Morel,
We are sorry for the inconvenienced,
We have analyzed your query. We could not set the VisualStyle for FilterBar Tooltip .Custom Tooltip does not inherits the style from VisualStyle. We have to modify the styles based on the Visual Style . You can set the Custom Tooltip in TooltipTemplate property not in default Tooltip property.
Please let us know if you have any other queries,
Regards,
Saravanan.M