Plugin for knockout.js that helps create and update a view model.

learn more… | top users | synonyms (1)

1
vote
0answers
24 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
0answers
20 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, {}, ...
1
vote
0answers
26 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: ...
2
votes
2answers
71 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' ...
2
votes
3answers
27 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
20 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
vote
1answer
15 views

Iterating a knockout observable array in javascript

How Do I iterate an knockout observable array bound to data with knockout js mapping plugin ?. I have created this fiddle to demonstrate my issue. When I try to get the value of the knockout js array ...
0
votes
1answer
28 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 ...
-1
votes
1answer
46 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
39 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 ...
0
votes
2answers
25 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
52 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 ...
1
vote
1answer
30 views

Knockout.js - Configuring Bindings after loading model via Ajax

I'm building a large page with 10 different forms on it- each form will be its own model, with a master model pulling them all in. First: var masterPageModel = new PageViewModel(); ...
1
vote
2answers
50 views

Update KnockoutJS bound textbox with jQuery val()

So I'm using KnockoutJS with the KO Mapping Plugin in a single page app and everything works great... except... There is an option for the referring site to send some values in the query string to ...
0
votes
0answers
52 views

Knockout JS listing, binding historical details with custom binding

i have a list of data user will click on any row and display it details the previous user selection will be saved, proceeding with triggering a custom bind to call ajax to retrieve data var ...
2
votes
1answer
66 views

knockout.js save form to json

I have my form mapped using knockout.js and mapping plugin. I am ready to save the form to json and send it back to the server. This is my first time doing this so what is the simplest way to do it? ...
1
vote
0answers
62 views

Disable removal of items

I'm using the mapping plugin to update a array from event sourcing events this.itemMapping = { key: function (item) { return ko.utils.unwrapObservable(item.id); }, create: ...
0
votes
1answer
36 views

How do you bind a bool value to a radio button using the Checked binding with Knockout?

Given the following JSON object, mapped using ko.mapping: { AllowNotifications: ko.observable(true) } I want to bind a bool value to a radio button so that if True one radio is Checked, if False ...
0
votes
1answer
37 views

Linking to jQuery Mobile page generated with Knockout foreach doesn't work

I created a main page with jQuery Mobile in which there is a list generated with a Knockout foreach template, based on a model created with the mapping plugin. From each item in the template there is ...
0
votes
0answers
38 views

Map entities to viewmodels and add specific observables to it with knockout mapping plugin

This is code that works but it could be better by using the knockoutjs mapping plugin: I have 5 domain properties on my entity (e) which I want to wrap with a viewmodel turning the entity properties ...
0
votes
1answer
88 views

Using ASP.NET MVC ViewModels with Durandal without boilerplate

I'm writing a small app based on John Papa's "Hot Towel" template, meaning MVC 4 and Durandal. As someone with mostly MVC experience it seems most "correct" to use MVC's "Models" with their Data ...
0
votes
1answer
30 views

A computed observable as a member of observableArray

Sorry I am new to Knockout. I'm trying to put a compute observable as a member on an observableArray. Something like this: var viewModel = { data: ko.observableArray([ [a, b, ...
0
votes
1answer
45 views

knockout dynamic key as reference mapping , between JSON and Observable

i have tabular data retrieve from db. being that the table is design in a non friendly label, i have to add a new object (HeaderName) to store a friendly name retrieve from another reference. I am ...
0
votes
1answer
53 views

knockout dynamic master details

In the quest of Dynamic Create, Read,Update, Delete through KnockoutJS part of the continuation of a question with fellow expert (dynamic column and rows with knockoutjs) <script ...
0
votes
1answer
47 views

KnockoutJS mapping array of complex type object

Is there a way to do it more "automatically" ? JavaScript code var _json = { Parents : [ { ID: 1, Option: { ID: 0, Name: "Zero" } }, { ID: 2, Option: { ID: 0, Name: "Zero" } } ], ...
0
votes
1answer
61 views

KnockoutJS - Mapping and Extenders

I'm trying to implement some kind of undo feature in my project using KnockoutJS. For this purpose, I'm using this extender: ko.extenders.trackChange = function (target, track) { if (track) { ...
3
votes
1answer
33 views

Set knockout css binding based on item in observable array

Whenever I save my item I remap the model doing the following: ko.mapping.fromJS(data, {}, deal); My model looks like: { "DealId": 0, "BrokenRules": [ { "Property": "EndDate", ...
0
votes
1answer
133 views

Knockout Mapping Observable Array MVC

Hi I have looked around online for hours trying to solve this but I couldn't find a solution. I am building the solution using ASP.NET MVC and Knockout. The controller returns the options for the ...
1
vote
1answer
75 views

Radio buttons Knockoutjs

I have the following example: http://jsfiddle.net/hamsaya/cyBQH/2/ I have 2 values that I get from server A and B. I can only have one true at a time. Again what I need is one of the radios to be ...
1
vote
1answer
44 views

Knockout inheritance plus mapping

Edit: Turns out my problem was an ID10T error. I had copied one of the concrete class definitions but forgot to change the name. JavaScript happily let me redefine the entity without any Knockout ...
1
vote
2answers
32 views

ko.mapping: Updating model with subscriptions

I get error when ko.mapping updates my model, which have some subscriptions. As soon as subscriptions are removed, everything works like a charm. Any idea how to make it work? Consider this example ...
0
votes
0answers
21 views

using total of one column as calculation of another column using .map binding [closed]

Here is code example of what I am trying to do. I am using mapping binding and want to use the total of one array in the calumniation of another array column. function custdata(data) { var self = ...
0
votes
2answers
28 views

How do I add a computed property to a collection?

I'm using Knockout and binding an observable collection to markup. It would be great if I could add a computed function to each item in the collection, but I'm not sure of how to properly do this in ...
0
votes
1answer
68 views

Knockout.JS mapping to observable vs. observableArray

I can't figure out why my ko.mapping is working fine when I'm bringing back an array (using the 'foreach' binding), but when it's a single object (using the 'with' binding) it doesn't work at all. I ...
0
votes
2answers
58 views

knockoutjs mapping custom objects with nesting array

i want to map this json to custom objects. The problem is that items are not typeof Item object but normal Objects. What I'm missing here? You can test here: http://jsfiddle.net/5jhpE/ var json = [ ...
0
votes
2answers
58 views

Using ko.mapping to populate my observableArray into existing methods

I have a viewModel which has this observableArray (function () { function myItems() { var self = this; self.itemArray = ko.observableArray(); somefunction() {... } var ...
1
vote
1answer
107 views

long ajax call breaking knockout binding

I am creating a personal website using durandal and knockout with the below code to bind a edit blog page. Everything worked great and I was able to bind the text area with the returned text of the ...
2
votes
2answers
77 views

knockoutjs mapping, add new item to child array without the extra mapping object

Using this test code, based on my real project: var test = ko.mapping.fromJS({ id: 1, kids: [{ name: "sue"}] }); test.kids.push({ name: "tim" }); test.kids.push(ko.mapping.fromJS({ name: "joe" })); ...
0
votes
1answer
53 views

Knockout.js encrypt and decrypt front-end model data

When utilizing knockout.js and knockout.mapping I pass the model data through to the view and store it as a Javascript variable using "@Html.Raw(Json.Encode(Model));". My question is this, what would ...
0
votes
1answer
176 views

How do I use knockout.js mapping to dynamically load modal box content?

I have a modal box that I want to load data based on a selection on the main page. I figured that would be a good intro into using knockout.js which will be used in other aspects of the application ...
1
vote
1answer
95 views

mobile css for radio button not applying in knock template binding

I have tried to use knockoutjs template binding to bind fieldsets dynamically which contain group of radio buttons. Here my problem is mobile radio button css not applying for radio buttons. I have ...
0
votes
1answer
62 views

Knockout not updating page with current data

I am having trouble with knockout not updating my view properly... what happens is I make an ajax call to get my view data then use knockout to render it. On subsequent requests I make an ajax call to ...
0
votes
1answer
64 views

KnockoutJS mapping from JS not create an observable array

I thought the mapping plugin should return an observable array but the obbservable array is empty even though 'resp' response from server has 1000s of elements. Am I missing something here? Please ...
0
votes
0answers
71 views

fromJSON not Updating ViewModel Knockout.js from differnt viewModel

I am making a call from one view model (viewModel1) to refresh my data inside a different view model (viewModel2). **viewModel1**.fire = function () { $.getJSON("Post", function (result) { ...
1
vote
1answer
338 views

Breeze.js + Knockout.js Tutorials

I m new to breeze. I have created a spread sheet kind of app using knockout, now I'm trying to add breeze.js functionality into it. Can anyone suggest any good samples for breezejs I have gone ...
2
votes
1answer
91 views

knockout mapping - multiple data sources into one view model

I'm currently trying to break down a large section of data, which is provided by a $ajax call to a .NET webservice, that is causing a script timeout on the page when the data is being mapped to a ...
2
votes
2answers
253 views

Knockout mapping and foreach data-bind on table with buttons, missing reference to viewmodel?

I use mvc4 and entityframework in combination with knockout. I also use knockout mapping. But I run into a problem wich I cannot get solved. What I want to achieve: User clicks on delete button to ...
1
vote
1answer
100 views

Knockout.js loop over children of parent in table

My MVVM looks like this: <script type="text/javascript"> function Company(data) { this.name = ko.observable(data.name); this.legal_form = ko.observable(data.legal_form); ...
0
votes
1answer
77 views

Knockout.js JSON data has optional attributes

The JSON returned from my server has optional attributes (e.g.) CompanyNumber is sometimes NULL and therefore it's removed from the JSON response for that specific company. (JMSSerializeBundle). If I ...
0
votes
1answer
53 views

Filtering array attributes with knockout. Should I working with nested objects or another way exist?

Using this http://jsfiddle.net/rniemeyer/NFbxc/ I make almost same stuff(http://jsfiddle.net/uhtshka/HE94X/), which realize almost all my needs, but one trouble still exist. As you can see by the ...

1 2 3 4 5 10