knockout.observableDictionary
knockout.observableDictionary copied to clipboard
a comprehensive implementation of an observable dictionary in KnockoutJS
I recently became a user and a big fan of knockout.observableDictionary library, I'm sorry it wasn't accepted as a part of knockout. I noticed that observableDictionary has a toJSON customized...
My project uses requirejs to manage dependencies, and when I set up the config for knockout and then observableDictionary, I get a "ko is not defined" error, I think because...
Hi. I need put to frontend observable dictionary with few nested observable dictionary. So my code looks like ``` var DevicesViewModel = function(node) { var self = this; self.node =...
There was a mistake in the `get` command.
I really like your library but it would be nice if it would be available as a Bower package (see http://bower.io/) as it is the de facto standard for JavaScript...
Hello, as promised here are the changes to have your "observableDictionary" as a Bower dependency. This commit includes a Bower package description (bower.json) and a Grunt configuration (package.json & Gruntfile.js)....
Simple code ``` function getPageContent(localeKey, pageKey, varToPopulate) { var contentRequest = { LocaleKey: localeKey, PageKey: pageKey }; $.getJSON('api/pagecontent', contentRequest, function (data) { varToPopulate.pushAll(data.ContentElements); ``` When I change the locale key...