This is a migrated thread and some comments may be shown as answers.

Looking for RadGrid pager element string resource name

8 Answers 46 Views
Grid
This is a migrated thread and some comments may be shown as answers.
A
Top achievements
Rank 1
A asked on 06 Oct 2016, 07:55 PM

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

Sort by
0
Loïc
Top achievements
Rank 1
answered on 11 Oct 2016, 08:34 AM

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.

 

0
A
Top achievements
Rank 1
answered on 11 Oct 2016, 06:53 PM

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?

0
Loïc
Top achievements
Rank 1
answered on 12 Oct 2016, 07:08 AM

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.
0
A
Top achievements
Rank 1
answered on 12 Oct 2016, 08:27 AM

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?

0
Loïc
Top achievements
Rank 1
answered on 12 Oct 2016, 09:57 AM

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.

0
A
Top achievements
Rank 1
answered on 12 Oct 2016, 10:19 AM

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.

0
Loïc
Top achievements
Rank 1
answered on 17 Oct 2016, 10:04 AM

Hi A!

What is your particular control ? Are you talking about the "Page Size" ComboBox component or about something else ?

0
A
Top achievements
Rank 1
answered on 25 Oct 2016, 12:13 AM

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

Tags
Grid
Asked by
A
Top achievements
Rank 1
Answers by
Loïc
Top achievements
Rank 1
A
Top achievements
Rank 1
Share this question
or