Data binding using Knockout in Essential JavaScript | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (174).NET Core  (29).NET MAUI  (207)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (217)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (917)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (148)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (629)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (507)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (593)What's new  (332)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)

Data binding using Knockout in Essential JavaScript

Essential Studio for JavaScript controls have seamless support for Knockout. For each control, we have created a Knockout custom binding handler with the same name as the control. For example, the ejGrid control’s Knockout binding handler name is ejGrid. Also, all the control properties can be defined in the attributes of the binding handler.

We have added a new JavaScript file for defining and maintaining all these binding handlers. The CDN location of the file is:

http://cdn.syncfusion.com/js/ej.widget.ko-latest.min.js

 

Offline, the file is available in the Essential Studio for JavaScript installation folder.

The example code for using the JavaScript binding handler and defining its attributes is as follows:

 

 

Data Binding

Essential Studio for JavaScript supports two kinds of data binding: one way and two way.

One-way binding means interaction between Knockout and Essential Studio for JavaScript controls is one way. That is, a JavaScript control can receive value changes from Knockout and update itself based on the new value. All the properties of Essential Studio for JavaScript controls can be used this way.

The second type of data binding is two-way binding. This means the properties of Essential Studio for JavaScript controls and Knockout observables can talk to each other. In this case, the JavaScript controls can both send value changes to the Knockout library and receive value changes from it. Two-way binding is not required for most properties in a control. For example, a read-only or layout control does not need two-way binding because it is not going to change any value in the model. This binding is implemented in the dynamic properties of each control whose value changes due to action in it.

The example code for enabling Knockout support in the ejGrid control is as follows:

        

 

In this example, the view model property currentpage with an observable value is associated with the currentPage property of the ejGrid control’s pageSettings and the value property of the ejNumericTextbox control, which offers two-way binding.

Since we have given an observable value to the view model property currentpage, the binding will update the element values (the numeric text box value and the grid pager) whenever the value changes. When the user updates the value in the ejNumericTextbox control, the view-model property updates the grid’s current page. Likewise, when the user changes the page in the ejGrid control, the view-model property updates the value in the numeric text box.

We have added a Knockout sample in our online JavaScript Sample Browser that showcases Knockout support in Essential Studio for JavaScript.

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed

Table of Contents