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
2answers
23 views

How do I hide the outline in popup window

I created popup/modal window in JS, and I need to hide the outline map container. For init map I used this js code self.mapDialogOptions = { autoOpen: false, modal: true, ...
0
votes
0answers
22 views

how to populate an observable array from two different arrays in knockout.js

Within my app I have a section that allows users to add a filter for search criteria the filter is an observable array that contains 3 drop down menus and input fields for manually adding values. Two ...
3
votes
0answers
33 views

Rendering knockout templates with JQM

I have this piece of code: <!--ko with: passengerDocs--> <div data-bind="foreach: flights()"> <div> <span data-bind="text: Carrier + ...
0
votes
1answer
22 views

KnockoutJS - Convention based auto-mapping using mapping plugin not working as expected

I am trying to get to grips with KnockoutJS. I have had a bit of success replicating Steven Sanderson's seminar example from mix11 (Person with Friends on Twitter) . I am trying to extend it so that ...
-4
votes
1answer
36 views

Update multiple views and multiple clients in ASP.NET MVC (Razor)

I am using ASP.NET MVC 4 with a Razor viewmodel. I want to implement SignalR with Knockout. Here is my code which is currently working perfectly. I have a requirement that when a task is created it ...
0
votes
1answer
24 views

Knockout bindings not updating in IE 8

I have a page that displays a list of items in the DB and a text box to add a new a new item. When the page is first rendered the list is displayed properly in IE, but when I add a new item the list ...
0
votes
0answers
20 views

knockout validation with typeahead combobox plugin

I am trying to use Knockout Validation in combination with Bootstrap Combobox Plugin. I have a select control that is bound to my observable property which has the required attribute (for KO ...
0
votes
0answers
28 views

Validating an autocomplete selection on a ko observable value

I have an autocomplete list of values. The selected value of this selection is a ko observed variable. I need to validate the value they selected from the list or the value they typed in, incase they ...
0
votes
2answers
23 views

knockoutjs - javascript array to observableArray to template - how to?

I have a page that contains information for a subscriber, their spouse, and N number of dependents. For each one, we're asking for their name, dob, address, etc. Basically, it's the same fields over ...
0
votes
1answer
30 views

Knockout clearing field in view model after submission

How can I clear the value of department name in my view model after I submit the department to the server to be saved? Here is my code: self.AddDepartmentModel.AddDepartment = function () { ...
0
votes
0answers
31 views

Trouble accessing JSON data through URL with CakePHP

I'm passing data from a knockout.js form to a controller in CakePHP, but I'm a bit confused as how to access the data. The url is being passed ...
0
votes
1answer
29 views

knockout.js with checkbox checked bind when checked ,will trigger the update method in custom binging why

var viewModel={ isChecked:ko.observable(false); showMessage:ko.observable(); }; ko.bindingHandlers.doSomeing=function(){ update:function(element, valueAccessor, allBindingsAccessor, ...
0
votes
1answer
21 views

Knockout change the click event

I'm trying to find a way to change the click event on all my elements. I want to do something like this but I think how KO binds the click event its actually attached to the element and so changing ...
-1
votes
1answer
34 views

How to Bind a JSON Array to view using knockout js mapping plugin [closed]

How can I bind a json array response received from server side to the view using the knockout js mapping plugin ?. The data is received exactly as I have shown here and I don't have any control to ...
3
votes
2answers
41 views

ApplyBindings to an array using Knockout JS

I have an AJAX request that returns an array of objects (Results). In the success callback function, the binding is applied using: success: function(data) { ko.applyBindings(new ...
0
votes
1answer
29 views

Visible binding not working in combination with radio buttons

I want the "EnterTemplate" div to be conditionally available based on the radio buttons. I added the text data-bind at the very bottom for testing purposes, and it returns the "true" or "false" value ...
3
votes
2answers
31 views

Knockout required field using JSON

I am using the knockoutjs mapping plugin to build a view model from JSON. I then bind that model's properties to fields on my form. The question is how can I make the fields in the model generated ...
-1
votes
0answers
23 views

How to get data as per the selection criteria without redundancy?

I have an observableArray in my view model. I want to develop search functionality but when I click the search button I get the result but every value repeats itself similar to the length of original ...
1
vote
2answers
22 views

How to create a cascading select dropdown in a dynamic list using Knockout MVC

I followed the Knockout tutorials some time ago of which one of them http://learn.knockoutjs.com/#/?tutorial=collections details how to creating lists and collections. However I want to create a ...
1
vote
1answer
30 views

Highlight rows with click in knockout js, and pass data to new array

I have a web service that passes a list of customers with other data. I would like to be able to click on multiple customers, adding them to an array that I'll use elsewhere. Clicking on them again ...
0
votes
1answer
25 views

Nested binding to observable collection not working in knockout.js

With a page I have the following table <table> <tbody data-bind="foreach: myfilters"> <tr> <td data-bind="with: ...
0
votes
1answer
42 views

How To Read JsonData inside WebApi result using knockout js

I have returned Result.items using WebApi in those items one item is JsonData how to read jsonData using Knockout.js of my MVC Application I have tried as follows in a view <ul id="modelView" ...
1
vote
1answer
42 views

Knockout.js - only update observable after ajax save?

I have looked all over and can't really find an elegant solution to my problem... <div class="viewPerson"> <strong>Name:</strong> <span data-bind="text: ...
0
votes
1answer
23 views

Can i give to an attribute a complex name?

In general if someone wants to set an attribute of an html element he has to write something like <img data-bind="attr: { src: url }"> However in my case I want the value of the src to be a ...
0
votes
1answer
42 views

Is it possible to instantiate html/js template in a new tab inside a html document

I have a html table which is doing some calculations with some jQuery/knockout.js behind it. the raw outline in my head is to pack this "content" into a template and load one instance of it on the ...
3
votes
1answer
44 views

KnockoutJS - Binding a select option to an object

Similar to this post... This is my property view model: function propertyViewModel() { var self = this; self.propertyTypeList = ko.observableArray([]); ...
0
votes
1answer
35 views

Populate Textarea with Html/Javascript while keeping it decoupled with knockout.js

I am trying to populate a textarea with dynamic code that changes with an event id change on the client. My below implementation is below and Im not sure if there's a better way. I ran into two ...
0
votes
1answer
47 views

ko.bindingHandler issue with Durandal

I'm having an issue getting Knockout binding handlers working with Durandal. I currently have a file named bindings.js that I'm loading into a viewmodel named todo.js via RequireJS. And for some ...
0
votes
1answer
16 views

Using Knockout AfterRender, but on the child (iterating) element not the parent

Hi guys I have a scenario, where I'm running a foreach, and that's using a template. The after Render always calls the Object that contains the collection. I'd rather it called the iterating element, ...
1
vote
1answer
33 views

POST data from knockout.js to CakePHP controller

I'm posting data from a knockout.js page to a controller in cakephp and it says the data was successfully posted, however, my controller doesn't seem to be responding and I don't get an alert ...
1
vote
3answers
52 views

Knockoutjs binding JSON

I am have a problem binding a JSON result with knockout js. Below is my code var AddDeparmentViewModel = function() { var self = this; self.AddDepartmentModel = {}; ...
1
vote
1answer
19 views

Computed Observable not updating

I have two primary problems. First, the parentheses I have on line 16 is causing an error. Second, and more importantly, even when I delete out that line, the data binding is not updating for the ...
0
votes
2answers
23 views

Add computed for each object in mapping

I have the following view model in my application: var DashboardVM = function (serverData) { var self = this; self.tiles = ko.mapping.fromJS(serverData); self.someotherproperties ... ...
1
vote
2answers
48 views

Custom binding for when foreach has finished rendering

I have an observable array with items bound to an ul. I need to calculate the width of the entire set of li items once the items have been added so I can set the width of the ul element to the total ...
2
votes
1answer
40 views

Build table with checkboxes and bind to data using Knockout.js

I've quite (very!) new to Knockout and am hoping you can point me in the right direction with regards to the the following problem. I've got an example of the end result I'm looking for on jsFiddle ...
1
vote
2answers
19 views

Passing objects to a knockout view

Can I perform a binding like this with knockout <div data-bind="attr:{id: id,'data-plugin-options': options}"> My model looks something like var model = { id: id, options: { ...
0
votes
0answers
22 views

Google Maps polygon location with Knockout JS, “Invalid value for property <map>”

Not sure this is related to knockout at all, but here is my code: $(document).ready(function () { ko.applyBindings(viewModel); }); function MyViewModel() { var self = this; self.mapOne = ...
2
votes
0answers
39 views

Knockout - Unable to parse bindings only within Android WebView

I have the following setup on my site. It is working fantastically on any standard browser and any normal mobile browser: Model: function History(data) { this.Term = ko.observable(data.Term); ...
0
votes
1answer
34 views

Knockout-2.2.0.Debug.js throwing error in IE9 “SCRIPT3: Member not found.” while sorting

I have my application with MVC4/Knockout.js. I am not able to get why i am getting error in IE9. Error details are as below:- SCRIPT3: Member not found. knockout-2.2.0.debug.js, line 1068 ...
2
votes
1answer
26 views

How to detect the observable property that was called in manual subscriptions

Is there any way I can find out the name of the observable property that called a manual subscription? The callback signature in knockout is .subscribe(function(newValue) { ... }) but since I am ...
1
vote
3answers
59 views

use ko.computed with if statement to set object observable property

Just got started with knockout and javascript. I'm stuck at setting the object monthData's mPrice value. function monthData(mYear, mMonth, mSS, mMs, mLimit, mPerItem, mStartingPrice) { var self = ...
1
vote
1answer
27 views

How to Stop the binding when the controls are initializing in the DOM

I'm having a question about knockout binding to a select list. the problem is if we attached a click binding to a control, the event will be executed whenever the control is clicked. but why this ...
1
vote
2answers
34 views

Knock out $parent hits click event fine, but resulting object's properties are undefined

In the code below, both buttons, trigger the correct click handler. However when the second button is clicked, all properties of that object are undefined! Is $parent the right reference to use here? ...
2
votes
2answers
37 views

Retreiving JSON data in controller from URL with cakephp

I'm trying to pass JSON encoded data from Knockout.js to an action in my controller but it's not working and showing as null. I used the same script in a non-cake php file and it worked perfectly. Is ...
0
votes
3answers
68 views

knockout.js ajax results in ASP.Net MVC

I have the following controller: public JsonResult EquipmentSelect(string term) { var equipmentSearchViewModel = new EquipmentSearchViewModel { EquipmentList = ...
1
vote
2answers
48 views

Performing jquery on knockout.js json data

I am trying to pull in a number from json using knockout.js and then using jquery to adjust my progress bar. It works when manually entering the number into the html. It does not work when bringing ...
0
votes
2answers
32 views

Is it possible to set valueUpdate:'afterkeydown' as the default valueUpdate in Knockout.js?

Instead of repeating this setting in every text input? To be clear, I'm talking about this: <input type="text" name="email"data-bind="value: email, valueUpdate:'afterkeydown'" /> For 90% of ...
2
votes
2answers
44 views

Revert an invalid value in knockout without subscriptions firing

Is it possible to revert a value change to a view model with something other than a custom binding handler (maybe an extender) without the subscriptions firing? For example, say you have a numeric ...
0
votes
2answers
33 views

KnockoutJS/Bootstrap - Clearing modal form when closing modal using javascript

I have a Bootstrap Modal that contains a form for updating or creating an entity (Company in my example). Right now my issue is that if I view an entity using the modal, it doesn't clear out the ...
0
votes
1answer
32 views

Data binding gives undefined value unexpectedly

My binding does not work anymore when I added the computed property to my viewModel. Without the computed property I have no problem. My code: var orgData = @Html.Raw(Json.Encode(Model)); ...

1 2 3 4 5 113