0
votes
0answers
25 views

How to develop a Javascript Spreadsheet

I need a browser based spreadsheet as part of a larger project i am working on and none of the ready-made solutions i have seen appear very interesting. The spreadsheet component needs to have a very ...
0
votes
3answers
47 views

Two-way data binding does not work with directives in Angular.js

I try to implement a directive, which has to update specific code block with angular-notation {{...}}. The problem is that the updated code is not compiled anymore. The directive: ...
0
votes
1answer
32 views

Bind checkbox or multi-select dropdown to array in AngularJS?

I am new to AngularJS, and am thus confused as how to bind checkboxes or multi-select dropdowns to a separate list. <body ng-controller="FooListCtrl"> <span ng-repeat="foolist in foos"> ...
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 ...
0
votes
0answers
39 views

Can we bind a GridView using Javascript only?

I am stuck with an issue and its troubling me a lot. I have a gridview and i am loading replacing the cell data of gridview using javascript, the issue i am facing here is i am just replacing the ...
2
votes
2answers
45 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 ...
1
vote
1answer
54 views

Select row in HTML table to update chart selection?

How do I setup an HTML+JS table with data associated to a chart (Flotr or D3); where I can multiselect rows and that will update what is shown in the chart? - I'll likely be using AngularJS, so their ...
0
votes
1answer
11 views

KnockOut binding breaks after moving DOM element

I have a web app built on KO and for the most part it has been a god-sent. However, I have one very frustrating problem. When I move an element with jQuery from one spot in the DOM to another, the ...
7
votes
2answers
86 views

How to Implement DOM Data Binding in JavaScript

Please treat this question as strictly educational. I've accepted and answer but I'm still interested in hearing new answers and ideas to implement this tl;dr How would I implement bi-directional ...
1
vote
0answers
69 views

Coldfusion AJAX checkboxes - post form data via jQuery or cfajaxproxy?

OK, CF/AJAX newbie here. What I"m building out is a basic database-driven inventory checklist that, for each item, displays: category stock number (ID) item name picture of the item color a ...
0
votes
1answer
35 views

kendo UI binding select elements

I'm building a simple mobile application and I want to bind html select elements to an observable kendo object. With simple input text straightforward but with select elements am receiving a error ...
1
vote
1answer
42 views

How to use one-way binding on emberjs?

I'm starting to play around with ember but one thing I haven't been able to wrap my head around is how to use one-way bindings, consider the following code: HTML <script ...
0
votes
1answer
48 views

How to fill scope variable via Ajax get inside the controller?

In my current code I am using a dummy way to get the data. Its like var controlMeetings = $.ajax({ type: "GET", url: "./Info.xml", contentType: "text/xml", dataType: ...
1
vote
4answers
41 views

JQuery: Don't search within children

Let's say I wan't to find all the elements that have a data-view attribute but I there can be elements that have data-view which are parents to other data-view elements. I don't want the children to ...
1
vote
0answers
33 views

WinJS.Binding multiple sources

I'm new to data binding, but it looked like an easy way to achieve what I need to do. My problem (as you can see) is that I have two (or more) of these boxes with different data on each page. The ...
0
votes
1answer
33 views

Achieve fixed column number of a table with data-binding

I have a table with binded data (KnockoutJS) like this: ... <tr> <th class="rotated">Row 1</th> <!-- ko foreach: Dog--> <td> <p ...
0
votes
1answer
66 views

How to prevent selected index from changing when bound data changes?

Using knockout, I have a select (a list of names) whose options are bound to another set of knockout-bound data (people). When the name of any person changes, the value of the select option that is ...
0
votes
2answers
59 views

WinJS changing a template's element for a specedicitem in ListView

Here we go , this is my question and i can't find anything to resolve it. The problem that i have this template(for data-Binding) for my Gridview: <div id="mytemplate" ...
0
votes
1answer
54 views

data binding email into mailto link json

In my view page I am trying to place an email address of a user that I get from data binding using knockout.js but I am having trouble getting it to work properly. Code for email <a ...
0
votes
1answer
105 views

Bind select options to global variable/array?

Suppose I have the following Javascript: var Option = (function () { function Option(value, text) { this.value = value; this.text = text; } ...
1
vote
1answer
24 views

Backbone: How To Bind A Model To A View

So I have some objects extended from Backbone.js: var MyModel = Backbone.Model.extend({}); var modelInstance = new MyModel(); var MyModelView = Backbone.View.extend({}); And I'm trying to figure ...
1
vote
0answers
85 views

angular : ng-bind from view to position outside view

if this is solvable with $rootScope, how can i achieve this? my code is below, inside the view it works fine, as soon as i place the element outside of the view it breaks. controller ...
0
votes
2answers
82 views

Binding two values to an input field using knockout.js

Description I have 3 checkboxes and one input field. When a user selects the checkboxes, the values appear on the input field. However, when a user does not select any of the checkboxes, I want an ...
1
vote
2answers
96 views

Knockout - Checking checkboxes according to observabelArray

So I have a list of schedules that I need to display for a user and show which schedules he or she is currently on and give them the possibility to jump on and off said schedules. My viewmodel looks ...
0
votes
0answers
45 views

javascript: Looking for the name of a data binding library

Some time ago I've used a library which (if I remember correctly) did just one thing, it created data binding for variables shown in the browser. So if the variable changed, the view/DOM would be ...
1
vote
1answer
70 views

Send javascript variable along with form data and bind it to model

I have a simple html page. It contains a form. For eg: student information Model: public Class Student() {      public int Roll_no {get;set} ...
1
vote
0answers
166 views

Preserve disabled inputs in meteor

I am currently designing an user-interface in meteor with several text inputs whose contents are saved to session variables upon change (keyup event). Due to the preserve-inputs package, those input ...
2
votes
4answers
90 views

Bind Javascript Objects to HTML elements

I just want to share an experience with you all. So my problem was, that I came across the problem of binding javascript back-end objects to HTML front-end elements. Now, i have searched through ...
0
votes
1answer
632 views

jQuery TwoWay Data Binding

How to implements simple two-way data binding in jQuery. Something like knockoutJS but in the simplest possible form. Scenario - bind JSON object to table row (every field is td>input/>/td>). Any ...
0
votes
1answer
133 views

d3.js: binding data to existring svg. what selector.each does?

I have some svg on html page. I wanto to bind some data on them, and add decoration element based on that data. What i think i have to do is: // pseudo-code selection = select all existing svg piece ...
0
votes
1answer
77 views

knockout.js data-bind style with border-radius

I am trying to apply border-radius css attribute using knockout.js data-bind attribute: data-bind="style: { width: totalLength() < workDay ? totalLength() + 'px' : workDay + 'px', border-radius: ...
0
votes
1answer
27 views

Data Binding for eCommerce-like site

I am curious the method developers use to take items in a database which each have different properties, inserting them into HTML as a DOM element and then allow the user to select these items while ...
0
votes
1answer
85 views

Knockout custom click binding, return true to prevent click hijack?

So we all know return true manually will allow default click action on element with a click binding, but what if I have custom binding as following: ko.bindingHandlers.action = { init: ...
2
votes
1answer
257 views

Knockout.JS Bindinghandlers moment.js

I want to format my knockoutjs binded dates with moment.js. What is wrong with my code? var modelNots; function NotsViewModel() { var self = this; self.msgs = ...
3
votes
1answer
121 views

Why am I getting a “Cannot read property 'nodeType' of null” error with Knockout JS?

Today is the first day for me in Knockout . Got struck with it . Below is my first sample code using knockout.js and it shows an error . Cannot read property 'nodeType' of null Here is my ...
0
votes
1answer
67 views

ko foreach with ko.computed is coping the input value to next input

I have an observable string witch contains a list of options. Every single option is separated by this symbol "-*!*-" There is also a computed function called optionsSplitted which is responsible to ...
0
votes
1answer
117 views

Knockout removeAll() not recognised

I have a page I bind a viewmodel to a HTML table inside a jQuery UI Dialog. When the user close the Dialog, I want to remove all the element inside the viewmodel observableArray bind to the HTML ...
0
votes
0answers
21 views

Geting resource location that is accessed through JavaScript

So, here's my problem. I have a page that shows outbund flights. The data presented through JavaScript. When I press Ctrl+U, I can't find URL from which the script pulls out the data. My question is, ...
1
vote
2answers
89 views

Knockout js visible binding does not seem to be working

I am new to Knockout and am creating a prototype. I am attempting to use the visible binding on a div to only display when I click a "menu option". However, when I create the condition it does not ...
0
votes
3answers
287 views

Is it possible in AngularJS to use data bindings inside a classic javascript function?

I've a question about Angularjs data binding feature. If i write: <div>Hello {{name}}!</div> and i've in the controller.js something like: $scope.name = 'Bruno'; The result will be ...
0
votes
1answer
343 views

JavaScript databinding framework

I'm looking for an advice on which one of the top-level JavaScript framework (ember, backbone, angular, etc) should I use to quickly create a data/model-driven application. The features I need: ...
0
votes
2answers
84 views

KnockoutJS: How to run script after inserting data in observable array

I have a gallery list: <div class="gallery"> <a href="#" class="next">next</a> <a href="#" class="prev">prev</a> <div ...
4
votes
1answer
528 views

Knockout observable field not updating on input value change

I have noticed that I cannot get some of the Knockout live tutorials working or basic examples that should demonstrate the observable data binding. Here is my code: <!DOCTYPE html> <html ...
0
votes
0answers
70 views

bind iframe src data-win-bind

I am attempting to bind a value to the src attribute of an iFrame in a windows 8 metro app, javascript. the error is Value is not supported within a declarative processing context, if you want it to ...
3
votes
1answer
858 views

knockout.js - nested array data and cascading pre-populated dropdown lists binding

I'm fairly new to knockout.js, however, I've been happily using it in my ASP.NET MVC 4 project, until I ran into this obstacle which has been bothering me for a while, can't seem to put my finger on ...
1
vote
1answer
27 views

Transeferring data from NCBI database to another site using Javascript and php

NCBI is a Bioinformatic and biological sequences database. It user interface is english. I am planing a site which show data from this site with non english descriptions. I need to connect NCBI blast ...
1
vote
1answer
127 views

How to get the binding expression inside a BindingHandler in Knockout JS

Lets say I have a bound span <span data-bind="MyBinding: Name"></span> And I have a custom binding ko.bindingHandlers.MyBinding = { init: function (element, valueAccessor, ...
0
votes
1answer
430 views

Sorting a knockout grid in the client

I am having trouble with what i think comes basically for free with knockout. I have a foreach loop, done in knock out, which creates table rows. Outside of this loop i have the table header, and i ...
1
vote
1answer
68 views

Knockout.js - How bind a data-var in a foreach

I would like to bind data-id to my looped items in knockout <ul data-bind="foreach: items"> <li data-bind="attr: {data-id: $data.id}"> <p data-bind="text: ...
0
votes
1answer
37 views

knockoutjs data saving UI issue

In my web app while I am updating some data I need to show some loading spinning gif in the web page. This is my code. This is my html code <img src="../../../../Content/images/submit-gif.gif" ...

1 2 3 4