Hi,
I try to make the add.hello command works.
But as I'm not familiar to this new tech, it is not easy
Is there a step-by-step documentation on how to implement this ?
Thanks in advance
Best regards,
Michaël.
I am afraid, that we have no walkthroughs in the current SDK documentation. Understanding the framework basics is an important pre-requisite. Although the extension may be rather small, the knowledge, how Smart UI works, and how should the particular extension be written, is rather broad.
Do you have a custom subtype, which you want to create? It is the most usual scenario.
I would recommend starting with "./samples/commands/add.hello/add.hello.tabletoolbar.extension.js", which is supposed to return a function registering a callback for toolbar updates. Then have a look at populateHelloTypes only (check if the user is permmited to create a specific subtype). Ignore the other populate* functions.
Continue with "./samples/commands/add.hello/add.hello.command.js", where creating of a new node is implemented.