Hi Everyone,
I'm currently looking into Telerik UI for ASP.net by using a friend of mind computer. I have a question and was wondering if someone can help me. I created a RadGrid and bind it to an SqlDataSource and enable Insert, Update, Delete. However, I notice that I can't "Update" or "Delete" any of the records in the grid like Microsoft GridView(I didn't try insert or too concern with that yet). I also try using EntityDataSource without any luck. Do I have to create code-behind to perform these functions such as "Insert,Update,Delete"? Below is an example of the EntityDataSource.
I'm currently looking into Telerik UI for ASP.net by using a friend of mind computer. I have a question and was wondering if someone can help me. I created a RadGrid and bind it to an SqlDataSource and enable Insert, Update, Delete. However, I notice that I can't "Update" or "Delete" any of the records in the grid like Microsoft GridView(I didn't try insert or too concern with that yet). I also try using EntityDataSource without any luck. Do I have to create code-behind to perform these functions such as "Insert,Update,Delete"? Below is an example of the EntityDataSource.
<asp:EntityDataSource ID="EntityDataSource2" runat="server" ConnectionString="name=TBSDBContext" DefaultContainerName="TBSDBContext" EnableDelete="True" EnableFlattening="False" EnableInsert="True" EnableUpdate="True" EntitySetName="Offices" EntityTypeFilter="Office"> </asp:EntityDataSource>