Hi All
I have radgrid with employee informations
There some fields like (first name, middle name, last name, dob, address, doj, designation,username password and status(active/inactive))
The active/inactive is a check box.
I have radgrid with employee informations
There some fields like (first name, middle name, last name, dob, address, doj, designation,username password and status(active/inactive))
The active/inactive is a check box.
<
telerik:RadGrid ID="RadGrid1" runat="server" Skin="WebBlue" GridLines="None" AllowPaging="True" AllowSorting="True" Width="97%" AutoGenerateColumns="False" ShowStatusBar="true" OnPreRender="RadGrid1_PreRender" OnNeedDataSource="RadGrid1_NeedDataSource" OnUpdateCommand="RadGrid1_UpdateCommand" OnInsertCommand="RadGrid1_InsertCommand" OnDeleteCommand="RadGrid1_DeleteCommand">
My problem is.
When a employee logins, he should not be able to change his status(active/inactive) .
So is there any way to change the enable option to false for the check box(active/inactive) in edit mode only for the logged in user.
Thank u in advance
-Anto