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

gridviewcheckboxcolumn issue in checked and in unchecked

0 Answers 52 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Sharique
Top achievements
Rank 1
Sharique asked on 10 Oct 2012, 01:02 PM
hi all


i m binding radgrid with multiple tables from xaml file .i have  4 gridviewcheckboxcolumn and on onload some are checked using IValueConvertor bcoz its coming from oracle DB and its type is Char . now i need to update these column . i m able to update GridViewDataColumn text on roweditended event but not gridviewcheckboxcolumn 


UserPreviliges uobj = e.NewData as UserPreviliges;
            
            int ID = uobj.ID;
            int Pid = uobj.PREVILEGEID;
            if (uobj != null)
            {
                proxy.updateUserInfoCompleted +=new EventHandler<System.ComponentModel.AsyncCompletedEventArgs>(proxy_updateUserInfoCompleted);
                proxy.updateUserInfoAsync(ID,Pid,uobj.NAME, uobj.READACC, uobj.EDIT, uobj.PRINT, uobj.APPROVE);
            }


in uobj.name i m getting newly edited data but not in other fields readacc,edit,print ...


plz help me

No answers yet. Maybe you can help?

Tags
General Discussions
Asked by
Sharique
Top achievements
Rank 1
Share this question
or