HI,
We make a multilanguage support application with the telerik component.
To change the text of the header or other things in the grid we use OnItemDataBound and it's works Fine.
The only things is i can't found a way to change the text of a GridButtonColumn for ConfirmText and ConfirmTitle.
Can i access to this if e.item is GridDataItem ?
like:
if(e.Item is GridDataItem)
{
var _item = e.Item as GridDataItem;
_item["UniqueName"].ConfirmText = GetText.Get("VariableString");
_item["UniqueName"].ConfirmTitle = GetText.Get("VariableString");
}
For GridHeaderItem and GridNoRecordsItem is no problem.
Thanks for your help.
Edwin.
We make a multilanguage support application with the telerik component.
To change the text of the header or other things in the grid we use OnItemDataBound and it's works Fine.
The only things is i can't found a way to change the text of a GridButtonColumn for ConfirmText and ConfirmTitle.
Can i access to this if e.item is GridDataItem ?
like:
if(e.Item is GridDataItem)
{
var _item = e.Item as GridDataItem;
_item["UniqueName"].ConfirmText = GetText.Get("VariableString");
_item["UniqueName"].ConfirmTitle = GetText.Get("VariableString");
}
For GridHeaderItem and GridNoRecordsItem is no problem.
Thanks for your help.
Edwin.