I don't seem to be able to find the appropriate string resouce name for the RadGrid's paging ComboBox's tool tip.
What is the corresponding string resource name for this item?
Is there a list of available string resource names? Or is there a method to compute the string resouce name from the rendered RadGrid control?
8 Answers, 1 is accepted
Hi A!
Have you tried to change the Culture of your RadGrid ?
Here is the documentation : Change RadGrid Culture.
Maybe you could change the ChangePageSizeComboBoxToolTip row.
Thanks for helping me out on this!
The row you suggested is the right one. - But how can I know which row to change? Where is the mapping documented?
Hi A!
I think I don't understand your question. Have you take a look at this link : Change RadGrid Culture ?
The answer to your question is in this link.I apprehend that all the localized texts are within these large ressource files.
But: All I have is a control on a website with no relation to any of the entries in the ressource files (see attachment).
So, looking at the RadGrid, for example, how can i derive the ressouce key from the widget in the browser window?
Unfortunately, I think you have no choice. As far as I know, there is no way to only change ChangePageSizeComboBoxToolTip without using Global Resources.
However, you can edit only this row. You don't need to edit all the texts.
I believe we're talking cross-purpose here ...
I want to use GlobalResources - but I don't know which key to look-up for in GlobalResources for a particular control's item's text to change.
Hi A!
What is your particular control ? Are you talking about the "Page Size" ComboBox component or about something else ?
Hi Loïc,
last week I opened a support ticket with Telerik and they pointed me to the UI for ASP.NET AJAX source.
In the source I could find that there currently is no resource defined for the Change Page Size control's "title" attribute:
namespace
Telerik.Web.UI
{
internal
class
GridPagerButtonBuilder
{
...
public
void
CreatePageSizeDropDown(Panel container)
{
ControlItemContainer ddControl;
...
if
(
this
.OwnerGrid.EnableAriaSupport)
{
ddControl.ToolTip =
"Change page size control"
;
}
}
...
}
}
Telerik has promised to publish an update in early 2017.
Thanks again for trying to help.
Cheers,
Axel