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 -

ubuntu - Bash Script to Check That Files Are Being Created -

Php operator `break` doesn't stop while -