Skip to content

Commit c31975c

Browse files
author
User Jenkins
committed
Sync with Kendo UI Professional
1 parent b4acc40 commit c31975c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/kendo.binder.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,18 @@ var __meta__ = { // jshint ignore:line
11541154
}
11551155
}),
11561156

1157+
floatingLabel: Binder.extend({
1158+
init: function(widget, bindings, options) {
1159+
Binder.fn.init.call(this, widget.element[0], bindings, options);
1160+
1161+
if (!widget.floatingLabel) {
1162+
return;
1163+
}
1164+
1165+
widget.floatingLabel.refresh();
1166+
}
1167+
}),
1168+
11571169
enabled: Binder.extend({
11581170
init: function(widget, bindings, options) {
11591171
Binder.fn.init.call(this, widget.element[0], bindings, options);
@@ -1748,6 +1760,10 @@ var __meta__ = { // jshint ignore:line
17481760
if (hasCss && !widgetBinding) {
17491761
this.applyBinding(CSS, bindings, specificBinders);
17501762
}
1763+
1764+
if (widgetBinding && this.target && this.target.floatingLabel) {
1765+
this.applyBinding("floatingLabel", bindings, specificBinders);
1766+
}
17511767
},
17521768

17531769
binders: function() {

0 commit comments

Comments
 (0)