Hi,
I would like to know if it's possible to add buttons on the Agile Board?
Basically, I want to add buttons on the backlog screen as you can see on the attachment.
I need to have a new button for each Sprint and for the backlog.
I'm using Mutation Observers, however, the performance decreases with the current solution. There's anyone knows if exists Extension points? Or, if exists, a solution more elegant?
Thank you, in advance, for all your attention for my specific case.
Best regards,
André Fernandes Rodrigues
Hi André,
An alternative approach could be to use DOMNodeInserted event like
AJS.$(document).on("DOMNodeInserted", function (e) {
if (there is no your buttons yet) {
add your buttons
}
});
Hi Aleksandr,
Thank you very much for your response.
However, the DOMNodeInserted has been deprecated and all Mutation Events have been replaced with mutation observers.
As you can see here.
Once again, thank you very much for your interest and attention to my specific case.
Best regards,
André Fernandes Rodrigues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.