Hi All, I am using the Demo code for using the automatic editing features of the grid, but regardless of if I "edit" a record or "Insert" a record, only the "Update" ever shows, "Insert" Button never does. Using the following code:
Q1 2011
Thanks,
Matt
Q1 2011
RadGrid settings
AllowAutomaticInserts="true"
AllowAutomaticUpdates="true"
AllowAutomaticDeletes="true"
Command buttons: "Insert" Button never shows.
<
td
colspan
=
"99"
>
<
asp:Button
ID
=
"btnUpdate"
Text
=
"Update"
runat
=
"server"
CommandName
=
"Update"
Visible='<%# !(Container is Telerik.Web.UI.GridInsertionObject) %>'>
</
asp:Button
>
<
asp:Button
ID
=
"btnInsert"
Text
=
"Insert"
runat
=
"server"
CommandName
=
"PerformInsert"
Visible='<%# Container is Telerik.Web.UI.GridInsertionObject %>'>
</
asp:Button
>
Matt