Welcome Guest Search | Active Topics | Sign In | Register

Localize EO.Web controls Options
Peter B
Posted: Tuesday, December 21, 2010 5:57:35 AM
Rank: Advanced Member
Groups: Member

Joined: 8/2/2009
Posts: 39
Hi,

I have to localize an app with some of your controls on it. Now im working on eo:Grid
The only way I found is through code behind because the controls seems not to be serializable.

So grid headers are easy with
Code: C#
protected void Page_Init(object sender, EventArgs e)
{
  gvStatus.Columns[1].HeaderText = ml.ml_string(602, "Sprache");
  gvStatus.Columns[2].HeaderText = ml.ml_string(603, "Statuscode");
  gvStatus.Columns[3].HeaderText = ml.ml_string(604, "Bezeichnung");
  ...

but i cannot see how to access a button text
Code: HTML/ASPX
<ColumnTemplates>
</ColumnTemplates>
<Columns>
   <eo:DeleteCommandColumn Width="70" ClientSideBeginEdit="" DeleteText="Löschen" ReadOnly="True">
       <ButtonStyle CssText="" />
   </eo:DeleteCommandColumn>


Thank you for any advise

Peter Bollinger
eo_support
Posted: Tuesday, December 21, 2010 8:59:35 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

You will need to check ASP.NET localization. It's done on ASP.NET level and doesn't really have much to do with the controls.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.