We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccddd80 commit e7ebb1eCopy full SHA for e7ebb1e
dist/vue-typed-ui.js
@@ -1561,6 +1561,8 @@ var Dropdown = function (_DropdownBase2) {
1561
Util.setDataValidateAttr(this, $(this.$el).find('input'));
1562
// assign selected values
1563
this.valueChanged(this.value);
1564
+ // set disabled state
1565
+ this.disabledChanged(this.disabled);
1566
}
1567
}, {
1568
key: 'disabledChanged',
src/components/form-inputs/dropdown/index.ts
@@ -109,6 +109,9 @@ export class Dropdown extends _DropdownBase implements IDropdown {
109
110
this.valueChanged(this.value)
111
112
113
+ this.disabledChanged(this.disabled)
114
+
115
116
117
@Watch('disabled')
0 commit comments