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

whats the equivalent ItemDataBound event for silverlight rad grid ?

0 Answers 49 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Bibhudutta
Top achievements
Rank 1
Bibhudutta asked on 01 Feb 2012, 11:25 AM
I want to set the cell values of a particular column in the silverlight rad grid. i know we can do that in the asp.net ajax rad grid using the ItemDataBound Event, in this manner :

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
    if (e.Item is GridDataItem)
    {
        GridDataItem item = (GridDataItem)e.Item;
        string originalValue = item["MaskedColumnUniqueName"].Text;
        //implement masking logic here and update originalValue to masked value
        item["MaskedColumnUniqueName"].Text = originalValue;
    }
}

But how can i acheive that in the silverlight rad grid, it has no ItemDataBound event.

Please help me out.
Tags
GridView
Asked by
Bibhudutta
Top achievements
Rank 1
Share this question
or