DataBindingDirective
Directive
Represents the data-binding directive for the Kendo UI ListBox for Angular. Manages the functionality of the ListBox tools out of the box and modifies the provided data accordingly.
Definition
Package:@progress/kendo-angular-listbox
Selector:[kendoListBoxDataBinding]
Syntax:
TS
@Component({
selector: 'my-app',
template: `
<kendo-listbox
kendoListBoxDataBinding
[connectedWith]="targetListBox"
[data]="sourceData">
</kendo-listbox>
`
})
export class AppComponent { }
Inputs
Specifies the ListBoxComponent instance with which the current ListBox connects.
When you link two listboxes through this input, you can transfer items between them.