Hi everyone, I would use the event DataBound to replace at code numbers some labels. With asp:GridView I use the following code:
protected void dGrid_RowDataBound(Object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
IDictionary<ushort, string> ModelDescriptionNames = (IDictionary<ushort, string>)Application["ModelDescriptionNames"];
e.Row.Cells[0].Text = ModelDescriptionNames[Convert.ToUInt16(e.Row.Cells[0].Text)];
}
}
It's possible a similar approach with Syncfusion grid?
Thanks in advance