Buttons
Buttons

Hi,
I have a dataTable that depend from an attribute, so when I change it I need to rebuild a collection buttons
How can I delete all buttons inside a collection, and add button that I need?
Thanks in advance
Maurizio
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You can use
button().add()
to add a button to a collection, andbutton().remove()
to remove - plurals exist for multiple buttons.It would be something like this for the remove:
Colin
Thanks