Here is what I gave. Can you please direct me to a article that will help me.
Scenario:
Have 3 different layers. (DAL, BLL and UI)
Using objectdatesource at UI layer.
RadGrid's datasource is assigned at design time.
Able to edit data using WebuserControl.
added "add new record" at commanditem to insert.
But it's not doing anything.
No form or user control is showing up. Can you tell me what am I missing. How to tie this event to show the usercontrol in insert mode or something.
I read the topic where in usercontrol has been used. But got an error in :
Help will be greatly appreciated.
-Sayak
Scenario:
Have 3 different layers. (DAL, BLL and UI)
Using objectdatesource at UI layer.
RadGrid's datasource is assigned at design time.
Able to edit data using WebuserControl.
added "add new record" at commanditem to insert.
But it's not doing anything.
No form or user control is showing up. Can you tell me what am I missing. How to tie this event to show the usercontrol in insert mode or something.
I read the topic where in usercontrol has been used. But got an error in :
<asp:button id="btnUpdate" text="Update" runat="server" CommandName="Update" Visible='<%# !(DataItem is Telerik.Web.UI.GridInsertionObject) %>'></asp:button>
<asp:button id="btnInsert" text="Insert" runat="server" CommandName="PerformInsert" Visible='<%# DataItem is Telerik.Web.UI.GridInsertionObject %>'></asp:button>
Help will be greatly appreciated.
-Sayak