KnockoutJS: Extending KnockOut JS's built-in bindings to allow a lot of flexibility to encapsulate sophisticated behaviors in an easy-to-reuse way.

learn more… | top users | synonyms

1
vote
1answer
42 views

Knockout custom format to attributes to more than one

I took a custom binding from Freeman's Pro Javascript for WebApps which basically adds a prefix and/or suffix to an attribute ko.bindingHandlers.formatAttr = { init: function(element, accessor) { ...
0
votes
0answers
30 views

knockout get the value from custom binding

I've a select list according to the selected Item. i'm hiding or showing the select. if the selected item is a editable then i'm showing the selected text with the input type text. please see the ...
1
vote
0answers
77 views

Knockout JS inline editing doesn't catch Enter Key in Internet Explorer

I am using the basic form of the following jsfiddle http://jsfiddle.net/rniemeyer/8D5aj/ ko.bindingHandlers.hidden = { update: function(element, valueAccessor) { ...
0
votes
2answers
157 views

How to correctly bind and initialize a jQuery Mobile range slider with knockout.js?

I have some trouble to get a JQM range slider to work well with knockout. This is a very basic html code for a JQM slider: <input type="range" name="quantity-slider" id="quantity-slider" min="0" ...
1
vote
2answers
68 views

How to bind the element id to an observable using an extender in knockout?

I have a set of check boxes, each bound to a custom "checked" handler: <input type="checkbox" name="colours-red" data-bind="jqmCheckbox: colourRed" id="check-1" /> <input ...
1
vote
1answer
61 views

How to pass an array of checkboxes to a knockout custom binding?

i'm using knockout 2.2.1. I have a set of 3 check boxes to concatenate to get the corresponding values all together: <fieldset data-role="controlgroup" id="top-colours" ...
0
votes
1answer
54 views

Knockout custom binding create function

I would like to create a knockout custom binding (so I can add a computed observable) as with this example: var mapping = { 'children': { create: function(options) { return ...
0
votes
2answers
271 views

Durandal/Hot Towel SPA, Bing Maps and knockout custom bindings

I'm using Durandal/Hot Towel SPA with Bing Maps library described here http://soulsolutions.com.au/Blog/tabid/73/EntryId/818/Knockout-JS-and-Bing-Maps.aspx. This library creates custom ko binding to ...
1
vote
1answer
28 views

knockout autogrow binding removes change event binding

I have a custom binding for a jquery autogrow plugin that can be seen here Autosize knockout custom binding autosize on load The code for reference: ko.bindingHandlers.autogrow = { ...
0
votes
1answer
245 views

Jquery UI Range Slider Not Updating the Knockout binding

I have a knockout observable array containing data of a person's past medical problems. I created a Jquery Range Slider whose minimum range is his Birth year while max range is Current Year. When ...
0
votes
2answers
198 views

Create custom knockout binding with foreach rendering (for jquery mobile listview)

Using jquerymobile and knockout, I am trying to create a custom binding that looks as follows <ul data-bind="listview: observablearray"> <li data-bind="text: text"></li> ...
1
vote
2answers
257 views

Knockout custom binding for indeterminate checkbox won't work

Let's put it short: This is my knockout custom binding for putting a checkbox in indeterminate state. ko.bindingHandlers.nullableChecked = { update: function (element, valueAccessor) { ...
0
votes
0answers
203 views

JQuery element custom knockout customBinding

I'm trying to make a knockout binding to a jQuery object that is capable of knowing about any changes to the dom (attributes, text, html, appending, deleting. etc). ko.bindingHandlers.jqHtml = ...
0
votes
3answers
358 views

kendo mvvm: how to define a custom css binding

Is it true that: (or am I missing something?) Kendo UI MVVM doesn't support css binding; If it is, how to define a custom css binding? I found an implementation here, but I only have the ...
1
vote
1answer
98 views

mvvmcross custom binding to eventhandler

I am trying to implement LongClick functionality on a view and read the following which provided some info mvvmcross touch command binding in android Searched unsuccessfully for IMvxCommand ...
0
votes
2answers
619 views

Knockout custom binding to update observable from other observable

I have two select inputs with same options and changing value in first select should disable all previous options in second (including) selected one, and set the value of second select to first next ...
1
vote
1answer
497 views

Knockout custom binding for Google Chart API - Access is Denied

I've been trying how to do this for a couple days, as well as googling for a built solution but sadly no success. I'm building an Admin section for a custom made e-commerce product. This Admin area, ...
1
vote
1answer
98 views

Enable HTTP and HTTPS on a custom binding

Is it possible to add HTTPS and HTTP support to a custom binding like this? <customBinding> <binding name="RS2010Soap12"> <textMessageEncoding maxReadPoolSize="64" ...
0
votes
1answer
148 views

Binding to observable created inside custom binding

I am trying to encapsulate the creation of an observable inside a custom binding, much like isValid of knockoutjs-validation, but without extending the binding because this property in the future will ...
0
votes
2answers
148 views

Exception when wrapping knockout 'template' binding with my own custom binding

I'm trying to write custom binding based on template binding. Idea is to have template with it's own view model class, but i don't want to add instances of that class to parent view model (at least ...
0
votes
1answer
226 views

Calling the method provided in HTML in Knockout custom bindinghandler

I'm using both knockout.js and hammer.js in my current project. I created a custom binding handler for the 'tap' event in hammer.js (this should also work for other events such as hold or swipe). My ...
0
votes
1answer
115 views

KnockoutJS custom bindings element has no children?

I'm working on a custom binding that will fetch existing values and insert it into the viewmodel. However, I hit a snag where the element provided in ko.bindingHandlers doesn't seem to have any child ...
1
vote
1answer
1k views

knockout.js and bootstrap modal dialog

I'm using some code I've found on SO (the second answer here: knockout.js - deferred databinding for modal?). The details aren't displaying in the form though. rowClick: function(data){ ...
0
votes
1answer
336 views

knockout js bootstrap combobox custom binding

I have a question regarding using bootstrap combobox plugin in conjunction with knockout (and mvc). I have a situation where I am using out of box MVC html helpers like Dropdownlisfor, textboxfor, ...
1
vote
3answers
112 views

Conditional update in custom binding

I have a custom binding that is used to re-initialise a dom element whenever a field ("Type") is changed on the viewmodel. This is defined in an update callback. <input type="text" ...
1
vote
1answer
230 views

Knockoutjs custom binding to display loading gif

I'm trying to create a custom binding that will show a loading gif while content is loading. ko.bindingHandlers.loader = { init: function (element) { ...
0
votes
0answers
175 views

WCF customBinding over HTTPS

I have a situation where i need to sign a soap request w/ a X509 certificate for consumption by a java web service. Thru the magic of WCF we were able to get the envelope formed properly and all ...
2
votes
2answers
2k views

Knockout renderTemplate() rendering modes

I'm trying to call ko.renderTemplate() in a custom binding. However I can't find any documentation for it's usage, particularly the rendering mode parameter. Knockout.js pro tips – working with ...
3
votes
1answer
292 views

Knockout custom resizable binding to 2 observables getting updated twice

Im trying to create a knockout binding to a jquery ui resizable widget. My custom binding is binding to 2 different observables on the view model, namely "left" and "width". <div class="layer" ...
0
votes
1answer
127 views

How to compress before encrypting message in a custom binding?

I have followed the example at microsoft http://msdn.microsoft.com/en-us/library/ms751458.aspx regarding creation of a custom binding to compress messages. However, I want to have my traffic encrypted ...
1
vote
5answers
565 views

Add to list on enter knockoutjs

I am unable to get the names to add to the list after hitting enter, yet it still adds when clicking "Add Name". Any ideas? http://jsfiddle.net/someyoungideas/WWpcC/
0
votes
1answer
691 views

WCF CustomBing exception - AddressingNone does not support adding WS-Addressing headers

I keep getting the following exception when I use my pragmatically created CustomBinding. Addressing Version 'AddressingNone (http://schemas.microsoft.com/ws/2005/05/addressing/none)' does not ...
1
vote
1answer
639 views

Self-Hosted WCF Custom binding, Binary message, HTTPS transport WITHOUT certificate

I have some self-hosted WCF services using CustomBinding for HTTP protocol on a specific port. I use BinaryMessageEncodingBindingElement and HttpTransportBindingElement so far without problem. Now I ...
0
votes
2answers
871 views

jquery multiselect - binding to knockout issue

I am having issues with using Eric Hynds excellent multiselect widget with Knockout. My code is here. I'm using a custom binding from this article. If you change the option in the first box, the ...
1
vote
1answer
773 views

Implement groupby expression on the Kendo UI Grid using MVC helper extension

I am using Kendo UI Grid to display my results. I am using the asp.net mvc helper extension method to create the Grid with the Custom Binding to implement the paging as explained in the documentation ...
0
votes
1answer
155 views

Setting Custom Bindings in a Template, as part of a Custom Binding

The subject is a little confusing, but here is what I'm trying to do: I have created a KnockoutJS custom binding to display a grid on my page. This works well, I followed the SimpleGrid model on the ...
1
vote
1answer
694 views

Bootstrap chechbox and Knockout: custom binding does not work in templates

In Twitter Bootstrap for a checkbox with labels is used markup like: <label class="checkbox"> <input type="checkbox" value="option1"> Option 1 </label> Knockout standard ...
0
votes
0answers
185 views

Unable to get HTTPS MEX endpoint to work

I have been trying to configure WCF to work with Azure ACS. This WCF configuration has 2 bugs: It does not publish MEX end point. It does not invoke custom behaviour extension. (It just stopped ...
2
votes
1answer
400 views

Knockout custom binding extending the “IF” binding

I have the following custom binding based on Ryan Niemeyer's blog but I was it doesn't work. Instead of fading him the div just doesn't show at all. I tried adding the "init" function but that did not ...
1
vote
2answers
413 views

How to remove a drag element, when was dropped with Knockout

I have two custom bindings to drag and drop, and have a list of elements that i need to drop into a droppable area, but when this happend I need to remove the dragged element from my source list, I'm ...
1
vote
1answer
175 views

Removing custom binding elements in web.config for child application

I have a WCF service (.NET 3.5) application running at http://example.com; its web.config is configured for JSONP encoding: <extensions> <bindingElementExtensions> <add ...
0
votes
1answer
925 views

Custom Message Encoder in WCF with support for ReaderQuotas

Found the answer here (last post): http://social.msdn.microsoft.com/Forums/eu/wcf/thread/f5c0ea22-1d45-484e-b2c0-e3bc9de20915 I'm having one last issue with the implementation of my custom ...
0
votes
0answers
194 views

How do I write custom binding for WCF Service using code?

How do I write custom binding for WCF Service and include it with the service. I need to do it with code not in config file. If I write a custom binding then how do I include the new binding in my ...
0
votes
1answer
615 views

Configuring WCF client and service for use with protobuf-net

I decided to open a new question about this matter, maybe expanding this question, not having found a precise answer about the issue anywhere on the Internet. I want to use protobuf-net to ...
4
votes
0answers
266 views

Using WCF to wrap an existing connected stream

I have both ends of a bi-directional connected Stream, which I want to do some communication over. The underlying implementation behind the stream isn't important, I want to work at the Stream ...
0
votes
2answers
2k views

WCF Service Reference generates an empty reference.cs due to DuplexBinding

I have WCF service. Here is configuration <basicHttpBinding> <binding name="EmergencyRegistratorBinding"> <security mode="TransportCredentialOnly"> <transport ...
3
votes
1answer
702 views

How to create a custom string JNDI binding in JBoss AS7?

I'm looking to create a custom string JNDI binding in JBoss AS7, but can't quite figure out how to configure it. I looked in the standalone-preview.xml file, but do not see any examples that would ...
4
votes
1answer
3k views

Custom model binder for inner model

I got a model like this: public class MainModel { public string Id {get;set;} public string Title {get;set;} public TimePicker TimePickerField {get;set;} } TimePicker is an inner model ...
1
vote
1answer
417 views

Manual addressing with secure customBinding on WCF service

I'm developing a web service for a WSDL defined externally. Access is done with HTTP/S (server and client certificates) and both the request and response are signed with the respective certificate. I ...
0
votes
1answer
686 views

Knockout custom binding does not show initial viewModel data properly

I use a third-party plugin to make a table editable. So I need to create a custom binding for <td> so that any changes to the text caused by the plugin would trigger a view model update. But the ...

1 2