I'm setting the GroupPanel Text property of a Grid, programmatically (in code behind of the page that contains the grid).
The GroupPanel is being displayed, but the Text property is NOT being displayed.
If I step through the code behind with a watch on the Grid.GroupPanel, the Text property DOES show my text. Yet the GroupPanel is blank when the page is displayed.
Also, if I view source on the page, my text has not been sent back to the browser.
I have tried setting the text both in Page_PreRender and on the grid's PreRender, like this:
The GroupPanel is being displayed, but the Text property is NOT being displayed.
If I step through the code behind with a watch on the Grid.GroupPanel, the Text property DOES show my text. Yet the GroupPanel is blank when the page is displayed.
Also, if I view source on the page, my text has not been sent back to the browser.
I have tried setting the text both in Page_PreRender and on the grid's PreRender, like this:
RadGridLookupTable.GroupPanel.Text =
"MY TEST TEXT";
Both methods are called and execute, but the text still does NOT show up in the grid's group panel.
Any ideas where my text might be getting lost?
Thanks In Advance.