Hello everyone, need help if possible...
I'm currently trying to hide the "Cancel" on my edit form and leave the Update visible
Here's how my editforms looks like
<
EditFormSettings>
<EditColumn UniqueName="EditCommandColumn" ButtonType="ImageButton" UpdateImageUrl="Images/update2.png" CancelImageUrl="Images/cancel.png" Visible="True">
</EditColumn>
</
EditFormSettings>
If I change the Visible to = false it hides both.
Any help is greatly appreciated, I'm currently new to Telerik
Thanks!
this.rtv_LeftMenu.DataSource = contentList;this.rtv_LeftMenu.DataTextField = "Title";this.rtv_LeftMenu.DataFieldID = "ID";this.rtv_LeftMenu.DataValueField = "ID";this.rtv_LeftMenu.DataFieldParentID = "ParentContent.ID";this.rtv_LeftMenu.Style.Add("margin", "5");this.rtv_LeftMenu.Style.Add("padding", "5");this.rtv_LeftMenu.DataBind();EnableViewState="true" ViewStateMode="Disabled".
But the issue is I want to use inline edit mode for insert and some other events are also not fired with disabled viewstate.
I would like to know what might go wrong with the radGrid and i am getting the above error?
This behavior is not observed on other ASP.Net pages on the site.
During testing, i just binded data to simple code like
<rad:RadGrid ID="grAccruals" runat="server" /> and got view state error
and I am able to display data with
<rad:RadGrid ID="grAccruals" runat="server" EnableViewState="true" ViewStateMode="Disabled"/>
Can anybody help me on debugging this issue? Which area I should look for to enable view state?
Thanks in advanced.