Can someone tell me how to change the caption text on the 'Add New' button?
UltraGrid.DisplayLayout.AddNewBox.Prompt = "AnyCaption"
or on Band Level:
UltraGrid.DisplayLayout.Bands("Customers").AddButtonCaption = "New Customer"
http://help.infragistics.com/NetAdvantage/WinForms/2009.2/CLR2.0/
Richard,
I am able to change the prompt text, but not the button text.
the prompt text sits to the left of the button. i want to change the text on the button.
right now the button has the name of the table as its text.
Thanks for the tip. I did find it under the Bands. I was not looking under Bands.
Got it.
Thanks,
-duane
KDuaneS said: I am able to change the prompt text, but not the button text.
So something like
UltraGrid.DisplayLayout.Bands(0).AddButtonCaption = "My Custom Button Caption"
has no effect for you?