Query 1: |
Yes. We can render the Grid or bind dataSource to grid in the ItemActive clientside event of the Tab control.
from the above code example, we have bound dataSource to Grid in the itemActive event of the Tab control. So, the data will be retrieved from the service if only when the tab item is active. | |
Query 2: |
| |
Query 3: |
The editing functionality can be enabled by enabling the AllowEditing property of the Grid EditSettings. If editing is enabled in the sample, we need to set the isPrimaryKey property for the primary key column of the dataSource. Please refer to the below code example.
http://help.syncfusion.com/aspnetmvc/grid/editing If you want to update the changes made in grid to the database, then we suggest you to use our adaptors. Please refer to the below documentation link. Persisting data in server: http://help.syncfusion.com/aspnetmvc/grid/editing#persisting-data-in-server Data Binding: http://help.syncfusion.com/aspnetmvc/grid/data-binding Data Adaptor: http://help.syncfusion.com/aspnetmvc/grid/data-adaptors | |
Query 4: In the App-Data, you have the SQL file. But. As far as I can see, you don't use it. You use the 'infamous' Northwind database on your servers. Am I right? |
Yes, we used online database in the sample. You can remove the SQL file in App-Data folder if you don’t need of it. |