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

[Solved] Having Prometheus Grid header Tool tip localization problem?

1 Answer 121 Views
Grid
This is a migrated thread and some comments may be shown as answers.
shaik
Top achievements
Rank 1
shaik asked on 09 Feb 2008, 05:20 AM
Hi,

I'm using prometheus Grid in my project.

I couldn't find any document that explain localization of  grid header tool tip property.

i'm using resourse file for localization.

can any one help me out to solve multilingual problem with grid header Tool Tip "Click here to sort".

So can any help me out which property i need set this text.

 please give me a link or links.

Thanks & regards
Shaik Mujeebuddin
Analyst I

1 Answer, 1 is accepted

Sort by
0
Yavor
Telerik team
answered on 11 Feb 2008, 02:44 PM
Hello shaik,

One possible implementation to handle the requested functionality is shown in the code snippet below:

.cs
 protected void RadGrid1_PreRender(object sender, EventArgs e)  
    {  
        GridHeaderItem headerItem = (GridHeaderItem)RadGrid1.MasterTableView.GetItems(GridItemType.Header)[0];  
        (headerItem["CustomerID"].Controls[0] as LinkButton).ToolTip = "Custom Tooltip Goes Here";  
    } 

I hope this information helps.

Kind regards,
Yavor
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Grid
Asked by
shaik
Top achievements
Rank 1
Answers by
Yavor
Telerik team
Share this question
or