Hi,
how to change column chooser tool tip text?
If not possible, how to hide that tool tip from displaying with default text?
Thanks in advance.
Regards
Sarma
Hi Sarma,
Which tooltip are you referring to exactly?
I tried with the following code to change the Columnchooser's tooltip in the grid's mousehover event and even in the form's constructor.
Infragistics.Shared.ResourceCustomizer rc = new Infragistics.Shared.ResourceCustomizer(); rc.SetCustomizedString("ColumnChooserButtonToolTip", "The string I gonna change");
But it has no effect. Can you tell me how could I change the default tooltip for the fieldchooser which is "Click here to choose Field chooser"
Resources are customized per assembly. You are using the wrong ResourceCustomizer class. You are using the one from the Win assembly instead of the WinGrid assembly. The correct code should look like this:
[dode]
Infragistics.Shared.ResourceCustomizer rc = Infragistics.Win.UltraWinGrid.Resources.Customizer; rc.SetCustomizedString("ColumnChooserButtonToolTip", "The string I gonna change");
[/code]