Hello,
is it possible to change the tooltip text (Click here to clear filter citeria.....) in the grid (Version 9.2.2.0092)? If so, how in VB?Thank you for your helpFrank
Hello Frank,
Please try the following code and take a look at the following links:
Infragistics.Shared.ResourceCustomizer rc rc = Infragistics.Win.UltraWinGrid.Resources.Customizer rc.SetCustomizedString("FilterClearButtonToolTip_FilterCell", "Changed tooltip text")
http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.1/CLR2.0/html/WinGrid_Resource_Strings.html
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=8629
Please do not hesitate to contact me if you need any additional assistance.
thank you for your help. And the entries (see picture)?
GreetingsFrank
For these, please take a look at the first link in my previous post, they go like this:
Please do not hesitate to ask if something comes up.
Hello Boris,
thanks for the help, but why does not theDim rc As Infragistics.Shared.ResourceCustomizerrc = Infragistics.Win.UltraWinGrid.Resources.Customizerrc.SetCustomizedString("RowFilterDropDown_Operator_Equals", "Test Eintrag")
Thank you (sorry for my bad English)Frank
There are many strings for the WinGrid control and might bring some confusion.
For this, you need to use 'RowFilterDropDownEquals' instead of 'RowFilterDropDown_Operator_Equals'.
For the other options you should go with:
RowFilterDropDownGreaterThan
RowFilterDropDownLessThan
RowFilterDropDownLike
etc.
Please feel free to let me know if a question about our toolset comes up on your mind.
thank you so thanks for your help. it works
Frank