Link to home
Start Free TrialLog in
Avatar of tesmc
tesmcFlag for United States of America

asked on

C#: add a non-editable field telerik

i want to add a non-editable field box in a telerik form. I have the following.

 <telerik:GridBoundColumn DataField="code" EditFormColumnIndex="0" HeaderText="Code" />
 
 however, this displays an editable box. if i do readOnly. it disappears all together
 
  <telerik:GridBoundColumn DataField="code" EditFormColumnIndex="0" HeaderText="Code" ReadOnly="true" />
Avatar of Easwaran Paramasivam
Easwaran Paramasivam
Flag of India image

Remove  EditFormColumnIndex="0"
ASKER CERTIFIED SOLUTION
Avatar of tesmc
tesmc
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tesmc

ASKER

it resolved issue for me.