Expose more of Skuid functions
Hello,
Skuid provides a lot already, being able to create models dynamically, attaching children to components, utils, etc. And I understand that Skuid wants people to use declarative interface as much as possible.
Though, there are a lot of times we want to create something more dynamic, add additional features, or adjust how the component works. In those cases it’s a lot of hacking, recreating wheels and headbanging.
For example:
Changing the action called by the ‘Save’ button on Skuid Table. The save button just calls blockUi action and saves model, quite simple and it works like any other button.
Currently, I could change it if I really wanted to, but I would have to go through the tree of children components or all button components, compare strings to make sure it matches, and (I think) use component.set(). - I explored it, but haven’t done it, as it would be too messy to find the button.
More documentation on Events