Revision 65e51d8e
Von Bernd Bleßmann vor fast 4 Jahren hinzugefügt
js/kivi.Part.js | ||
---|---|---|
323 | 323 |
this.last_dummy = this.$dummy.val(); |
324 | 324 |
this.timer = undefined; |
325 | 325 |
this.dialog = undefined; |
326 |
this.multiple_default = this.o.multiple; |
|
326 | 327 |
|
327 | 328 |
this.init(); |
328 | 329 |
}; |
... | ... | |
487 | 488 |
}, |
488 | 489 |
open_dialog: function() { |
489 | 490 |
if (this.o.multiple) { |
491 |
this.o.multiple = this.multiple_default; |
|
490 | 492 |
this.dialog = new ns.PickerMultiPopup(this); |
491 | 493 |
} else { |
492 | 494 |
this.dialog = new ns.PickerPopup(this); |
Auch abrufbar als: Unified diff
PartPicker: Option für Mehrfachauswahl als default merken
Damit lässt sich die Option via js ändern, um z.B. einen Dialog
mit Mehrfachauswahl über einen Knopf zu öffnen, während die
Funktion der Lupe bei der Einfachauswahl bleibt (oder andersherum).