Inserting, modifying, deleting data from database table using Umbraco
Hi, I am new to umbraco. In my project i have one table in umbraco database. I want to insert, modify, delete data from Umbraco database through umbraco UI. its like maintaining data into database through Umbraco CMS. Is there any way to do this. Earlier help will be really appreciated. Its urgent.
Are you looking to use the Umbraco UI to manage your own custom data tables? You can create custom applications/trees for this, it's fairly easy. Here's the tree/application API:
If you're looking to modify the data in the Umbraco CMS (not your own custom data), you can just use the Umbraco APIs. Have a look at the umbraco.cms.businesslogic.web.Document object to start with, this is how you can custom update properties of content nodes, create them, etc....
Or if you want something really easy and quick to manage your own data, you can just make your own UserControl and register it in the /config/dashboard.config file and your custom control will render in the dashboard of Umbraco backoffice.
Inserting, modifying, deleting data from database table using Umbraco
Hi, I am new to umbraco. In my project i have one table in umbraco database. I want to insert, modify, delete data from Umbraco database through umbraco UI. its like maintaining data into database through Umbraco CMS. Is there any way to do this. Earlier help will be really appreciated. Its urgent.
Thanks,
Suvarna
Hi Suvarna, you could consider looking into this extension here: http://our.umbraco.org/projects/sql-for-xslt-%28jespercom%29
>Tommy
Are you looking to use the Umbraco UI to manage your own custom data tables? You can create custom applications/trees for this, it's fairly easy. Here's the tree/application API:
http://our.umbraco.org/wiki/reference/backoffice-apis/tree-api---to-create-custom-treesapplications
If you're looking to modify the data in the Umbraco CMS (not your own custom data), you can just use the Umbraco APIs. Have a look at the umbraco.cms.businesslogic.web.Document object to start with, this is how you can custom update properties of content nodes, create them, etc....
Or if you want something really easy and quick to manage your own data, you can just make your own UserControl and register it in the /config/dashboard.config file and your custom control will render in the dashboard of Umbraco backoffice.
is working on a reply...