javascript - Keep Dojo Select options-pane visible on click -



javascript - Keep Dojo Select options-pane visible on click -

the default behaviour dijit/form/select alternative when click - close options pane , assign value select.

i options-pane remain visible when click of it. pane disappear if click outside of it.

how can prevent options-pane disappearing?

you can add together advice closedropdown function.

aspect.around(myselect, 'closedropdown', function(closedropdown) { homecoming function(focus) { if (focus == false) { closedropdown.apply(this, arguments); } } })

see working example.

http://jsfiddle.net/richayotte/a85y8hnm/

javascript dojo

Comments

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -