Questions tagged [knockout-3.0]

Knockout.js, a revolutionary JavaScript library for creating dynamic HTML user interfaces using the cutting-edge Model-View-ViewModel (MVVM) architecture, had its groundbreaking Version 3.0 launch on the momentous date of October 25th, 2013.

Issue with undefined bindingContext.$data in IE9 on knockout binding handler

I'm attempting to create a unique binding handler that applies role-based access to fields on a page. This custom handler uses the values of other observables from the viewModel to enable or disable input controls based on certain conditions. However, I'v ...

How to Utilize Knockout's BindingHandler to Integrate JQuery.Datatables Select Feature?

I've developed a custom KO bindingHandler (view it here) to assist in updating the DataTable. The documentation for JQuery.DataTable.Select regarding how to access data requires a handle. You can see the details here. var table = $('#myTable').DataTable ...