I'm working with the JQM collapsibleset widget.
I need one collapsible to just be a button (that allows to add more elements to the set/accordeon), so when it's clicked, it should NOT expand (or collapse).
I'm using the following code to no avail:
$("div.ui-dynamic-tabs div.tab_add").on("collapsiblebeforeexpand", function (e) {
e.stopPropagation();
e.stopImmediatePropagation();
e.preventDefault();
return false;
console.log("foo");
});
with both the collapsibleexpand
and the collapsiblebeforeexpand
custom event I added to JQM to test whether this would help.
I can register all events and returning false also does prevent the console from being triggered. However... the collapsible still expands... :-(
I thought adding a beforeexpand
event would prevent the subsequent code inside JQM to run when calling preventDefault
on the event, but it still executes.
Question:
How do I stop the collapsible from expanding correctly by prevent execution of an event triggered before the expanding javascript is run?
PS: I'm also tagging with jQueryUI because both JQM and UI use the same widget factory and event mechanisms.
In jQuery Mobile 1.3.2, that event is called collapsibleexpand, and its default behavior can indeed be prevented.
You only have to write: