Knockout is a JavaScript library for dynamic HTML UIs using the Model-View-View Model (MVVM) pattern.

learn more… | top users | synonyms (2)

0
votes
1answer
22 views

Binding in Master View Model

I have two view models in Knockout.js and I am aware that i can bind them separately, however is it possible for me to add them both in a Master View Model and bind it once. Something like ...
0
votes
0answers
24 views

knockout js bootstrap datepicker

i know this question is asked lot of times before... but i have tried all the solutions and none of them are working.... hence asking again... how do i bind the json date to knockout element... below ...
1
vote
1answer
8 views

Knockback.js backbone collection only adds first element to UI

I'm trying to set something new up with Knockback.js, and right now I'm running into an issue with the knockout/knockback integration. The problem is, I've successfully written an event handler which ...
0
votes
1answer
25 views

How do I convert the following Kendo UI code work with knockout.js? I cannot figure out the syntax

I am trying to convert the toolbar section to use knockout and I can't figure out the syntax. for example: <div id="Grid" data-bind="kendoGrid:{ data: details, widget: $root.grid, ...
1
vote
1answer
17 views

Get edited rows using dirtyflag in knockout

How can i create a dirtyflag in this situation? Been looking for samples but nothing works for me (I've just started learning knockout just a few days ago) View: `<h2>Knockout Table</h2> ...
2
votes
0answers
21 views

Knockout: Scrolling to one of newly inserted elements

So I have an asynchronous call to a controller in c# to obtain say 100 objects. After this is done I load it into my html page and through a parameter in the link I intend to scroll to it. So for ...
0
votes
1answer
26 views

How to add an object to an observableArray in knockout js?

I have the following javascript object which I use as an enum. Object {Group1: 0, Group2: 1, Group3: 2, Group4: 3, Group5: 4} Id like to be able to use it to create check boxes or drop downs using ...
1
vote
1answer
19 views

Difference between unwrapObservable and ()

Is there an actual difference between: y = ko.observable("value"); x = ko.utils.unwrapObservable(y); and: y = ko.observable("value"); x = y(); Should I prefer one of the above and why?
0
votes
0answers
18 views

how to make durandal (breeze) wait? using promise

hello all (it's a long post, sorry for that) i have 3 drop-down list that should populate dynamically based on each other. Continent - Country - Leagues (soccer) I'm using Hot Towel (Durandal + ...
0
votes
0answers
48 views

IE 9 & 10 events not firing (consistently)

I am developing a web application. This application due to requirement contains a table with 500+ rows (unpaged). The application is very interactive and so we're using KO behind the scenes. That ...
0
votes
1answer
34 views

How does one restore a form's previous value in Knockout.js?

I have a page which has pre-populated inputs on it, and I would like to be able to use that initial value as the initial value for Knockout. Example: <input name="Address1" ...
1
vote
0answers
22 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) { ...
1
vote
1answer
19 views

Is there a way to debug which dependency causes a custom Knockout binding's update function to be called?

Is there a (relatively) easy way to debug which dependency causes the update callback of a custom Knockout binding to be called? My problem is that a binding is receiving updates repeatedly, and I ...
1
vote
1answer
15 views

jQuery Mobile Accordion not expanding (KnockoutJS)

I'm using jQuery Mobile and KnockoutJS and can't get the Accordion widget to work. You can find an example of what I'm trying to do here: http://jsfiddle.net/NYTQC/1/. The accordion panels does not ...
1
vote
0answers
28 views

MVC 4 View Knockout Bindings not updating on ajax call

I have gone through as many questions on here as I could find and tried all the different suggestions and cannot get this to work. I have a view that is bound with Knockout using the mapping plugin ...
0
votes
1answer
28 views

how to show a digit by clicking on button in knockout.js

I need a functionality that will do following: after clicking on a button (or div, li, etc.), in the page it should show me the value of the button (in cases of div and li it can show some data that ...
2
votes
1answer
26 views

knockout mapping to be done only first time

I am generating the knockout mapping from server side view model using below var bindData2ViewModel = function (data) { var rdata = ko.toJSON(data); ko.mapping.fromJSON(rdata, {}, ...
0
votes
0answers
17 views

Knockout.js - Dynamic apply template

I have a form that contains a Yes/No drop-down. If "yes" is chosen, I want to use a template to generate n number of new sibling containers of html. I don't want to clutter up the html, with empty ...
0
votes
1answer
8 views

Should an observable that is properly bound to a view have at least 1 subscriber when calling getSubscriptionsCount

I'm trying to diagnose an issue, and this is the only thing that looks off. The initial template is populating with data, and the observable is in place, but there are no subscribers.
0
votes
1answer
22 views

Unwrapping breeze Entity properties

I'm very new to breeze/knockout, but I'm 99% of the way to doing what I need to do. I'm using the Hot Towel template, and I'm successfully retrieving a list of items via breeze. The entity (ITBAL) is ...
2
votes
0answers
34 views

Observable objects inside observableArray do not automaticly update

Hi I have been looking into an Knockout for dynamic data-bind and I have a situation where I need an observable array to contain multiple observable objects. This is my code: <ul ...
0
votes
1answer
38 views

Hot Towel - Knockout binding not updating observablearray

I am creating a SPA project using Hot Towel template. I have list view which shows a list of items, and when an item is clicked on, it will go to the detail view. ...
1
vote
0answers
28 views

Mapping multiple different JSON sources into one viewmodel with Knockout JS

I am trying to map multiple (different) JSON sources into one viewModel, but I can't seem to get it working. I create viewModel: var viewModel; I create different mapping options like below: ...
0
votes
1answer
35 views

Mutiple Content Editable binding inside string using knockout

I'm having a string that contains many editable region, please consider this string var str = "Regular ... are patterns used to match character .... in strings. In ..., regular expressions are also ...
2
votes
2answers
74 views

When radio button is clicked, element content changes to image

I can get it working for text, but can't enable it so it reads HTML for image - http://jsfiddle.net/BgQPF/ <p> Current Radiobutton Value = <span data-bind='text: selected' ...
0
votes
0answers
35 views

how to implement Alphabetical pagination using knockout.js

I am binding dynamic data fetched from the database to html table using knockout.js. I would like to implement alphabetical paging using knockout.js so that whenever there is any change in the data ...
3
votes
1answer
33 views

Declaring a knockout computed observable in typescript

I am new to typescript and would like to combine it with the goodness of knockout. I have a computed observable, which currently works, but want to know is this the right way about it or is there a ...
0
votes
0answers
25 views

knockout integration of select2 remote (input based!)

I have the requirement to integrate a select2 mulitple select that is populated by a remote service with knockout. Of course, only the selected options should be binded, not the available options as ...
2
votes
2answers
53 views

Why is my knockout.js value not being saved?

Update: I added a jsFiddle of my problem. I also completely rewrote the question as ideas have changed. I have a page where I am using knockout.js for the layout. I have this working successfully on ...
1
vote
1answer
25 views

How to change table row background color from KO's binding method?

I'm using KO.js to bind a table body with many rows. The first column has some buttons, if user clicks on a button of a row, I want that row be highlighted. But I don't know how to reference to the ...
0
votes
0answers
17 views

Knockout Validation required validation IE8

I have a simple form which uses knockoutjs and knockoutvalidation. When running IE in comptability mode I have the following behaviour. A field is required.: self.oldPassword = ...
0
votes
1answer
24 views

Refreshing a navigation property in Breeze

Sorry if this is a repeat but I was going through the documentation on Breezejs.com and I wanted to see if I could get a bit of an elaboration on 'best practice' I am using .extend to load up some ...
0
votes
1answer
34 views

Knockout JS cross-view model referencing

I have an aggregate view that combines multiple views in knockout (Sort of like a partial view, the master view allows me to access view models regardless of the view page). Is there some way to refer ...
2
votes
2answers
26 views

knockout foreach in the middle of a table

I have a table like so: <table> <thead> <tr> <td>Column 1</td><td>Column 2</td> </tr> </thead> <tr> <td>static ...
0
votes
1answer
30 views

specifying data bind attributes in twitterbootstrap.mvc

I am using knockout js and twitter-bootstrap.mvc4.... I am not able to combine those two to specify the customer data binding attributes @Html.TextBoxFor(m => m.Id, new Dictionary<string, ...
2
votes
3answers
28 views

Knockout won't update string array in model made with ko.mapping

Here is jsfiddle with a problem: http://jsfiddle.net/a28aP/5/ Viewmodel: { "pitalice": [{ "pitanje": "Kako se zove rezultat koji se dobija deljenjem dva broja", "ponudjeno": ["Kolicnik", ...
0
votes
1answer
24 views

Breezejs update - Latest version of Breeze.WebApi fails on Metadata

I am building on Hottowel spa template and my solution was working fine for Read, Save and Update. Delete was failing though with "Object reference not set to instance of object". At this point the ...
2
votes
3answers
27 views

Knockout.js - When using templates, how do I know to which dom element a given model is bound?

I have a page where I'm repeating large sections using a foreach: <div class="module-wrapper" data-bind="template: { name: 'dependent-template', foreach: dependentInformation }"> ...
2
votes
1answer
23 views

Special characters in bound knockout data model

I have a data model with special characters in it (degree signs).. so the property contains the following: "48 &deg; f". However, when the UI updates to this data, I see the "&deg;", not the ...
0
votes
2answers
29 views

knockout.js observable is not updating

Team, I have a very simple html page with a viewmodel as follows. @{ Layout = null; } <!DOCTYPE html> <html> <head> <script ...
3
votes
3answers
35 views

jQuery and knockout playing bad together

Consider this <ul data-bind="foreach: items"> <li class="popupClick" data-bind="text: name"></li> </ul> $(document).ready(function() { ...
2
votes
2answers
25 views

knockout binding how to remove an attribute

Let's say I have an Html element <element testattribute='a'></element> I know I can pass the value of testattribute using a binding like this: <element data-bind="attr: { ...
2
votes
1answer
31 views

Applying multiple extenders in knockout

I have the following javascript code function AppViewModel(){ this.myValue = ko.observable().extend({ minNumber: "5"}).extend({ maxNumber: "20" }); } ko.extenders.minNumber = function(target, ...
0
votes
1answer
25 views

Set a parents parent css using javascript/ knockout

I've got some checkboxes within a table and I want to the css of their parent to be dependent upon whether it's checkbox is checked or not. I can't seem to get this to work and was hoping you could ...
2
votes
1answer
33 views

setting tab index for children in knockout binding

I have a table data bound using knockout. Here, I have parent-child like rows. e.g. <tr> <td> <select ...
0
votes
2answers
59 views

Comparing knockout observable array and removing any object with match id from the array

1st observable array: data = [{id:1 , name:'abc'},{id:2 ,name:'xyz'},{id:3 , name:'rst'}] another array: dataProvider = [{id:3 , name:'pqr'} , {id:4 , name:'hjk'}] Now can we compare the data ...
0
votes
1answer
34 views

populate observable array from json

I have a working test example of what I want to do here: http://jsfiddle.net/2BxVk/6/ Instead of the test months I populate my observable array called allMonths now with (like this) self.tak = ...
0
votes
0answers
30 views

Bulk Update/Edit using knockout

Is it possible to create a bulk edit with knockout in mvc? I have a table that shows a list of choices and disables some controls if the choices are used in a data, My problem is that i need to create ...
0
votes
1answer
28 views

Uncaught Error: Unable to parse bindings

Uncaught Error: Unable to parse bindings. Message: ReferenceError: value is not defined; Bindings value: text: value. Here's my code ko.applyBindings(new ...
0
votes
1answer
24 views

KnockoutJS Validation|Mapping Custom message does not work

I create a simple model from mapping with knowkoutjs and I want to validate it. Even if I specify the validation message, the default message is still displayed. ko.validation.configure({ ...

1 2 3 4 5 114