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