Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I'm on v7.5.14 and I'm building a backoffice app for adding data to a custom table.
Do I need to have a create.html and create.controller.js for adding new records to the table?
Hi MuirisOG,
Have a look at Fluidity, might be easier than creating your own "application" to perform CRUD operations on your custom data
Fluidity: https://our.umbraco.org/projects/backoffice-extensions/fluidity/
Cheers,
Dirk
Or http://uiomatic.readthedocs.io/en/stable/
Many thanks for these suggestions, but as I was near complete on this backoffice app, I soldiered on.
It looks like my code was incomplete, so instead of
menu.Items.Add<ActionNew>("Create");
I should have used
menu.Items.Add<RefreshNode, ActionRefresh>(ui.Text("actions", ActionRefresh.Instance.Alias), true);
in the GetMenuForNode() function.
GetMenuForNode()
As expected, now, when I select the Create menu option in the backoffice, edit.html is loaded and I no longer get the error where it was trying to load create.html.
Create
edit.html
create.html
(However, I am now seeing that umbraco.ui is deprecated).
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Backoffice app for custom table
I'm on v7.5.14 and I'm building a backoffice app for adding data to a custom table.
Do I need to have a create.html and create.controller.js for adding new records to the table?
Hi MuirisOG,
Have a look at Fluidity, might be easier than creating your own "application" to perform CRUD operations on your custom data
Fluidity: https://our.umbraco.org/projects/backoffice-extensions/fluidity/
Cheers,
Dirk
Or http://uiomatic.readthedocs.io/en/stable/
Many thanks for these suggestions, but as I was near complete on this backoffice app, I soldiered on.
It looks like my code was incomplete, so instead of
I should have used
in the
GetMenuForNode()
function.As expected, now, when I select the
Create
menu option in the backoffice,edit.html
is loaded and I no longer get the error where it was trying to loadcreate.html
.(However, I am now seeing that umbraco.ui is deprecated).
is working on a reply...