A JavaScript framework is a library of pre-written JavaScript which allows for easier development of JavaScript-based applications, especially for AJAX and other web-centric technologies.
0
votes
1answer
39 views
meteor: how to disable default mongodb?
in my meteor project, how can i remove or disable the default mongdodb?
.meteor/local/db/...
it's very large about 500MB! and i want exclude this from my project because use another external db
-1
votes
0answers
24 views
Need good javascript framework for the front-end of a game made in rails [closed]
I'm looking for a good javascript framework to handle the front-end work involved in creating a turn based game in the browser, where the back-end is in rails.
I'd like it to be able to
ease the ...
0
votes
1answer
39 views
Why Backbone.View object still remains in memory?
I have simple view that shows dialog box.
Backbone.View.prototype.completeRemove = function(){
this.undelegateEvents();
this.remove();
delete this.$el;
delete this.el;
...
1
vote
1answer
17 views
New web application technology
We're about to start a new project and I've been looking at some of the new web technologies. We want to build a RESTful api which a client can access. To date we've been using python with ...
-2
votes
1answer
51 views
How do I populate a table in Javascript by clicking a button using the onClick() function?
Using JavaScript, I want to populate the numbers in soduku.setstring(); into a table once a user clicks the button "Easy". How can I achieve this using the onClick() function?
function initialize() ...
-3
votes
0answers
30 views
Creating a soduku 3X3 in Javascript [closed]
I am not too familiar with Javascript but I am beginning to see it's importance to web designing. My question is that I want to create a soduku game but I wanted to create the grid using Javascript as ...
0
votes
1answer
46 views
handlebarjs block helper function (simple odd even attribute to add on each row of array) with requirejs
I included handlebarjs on my requirejs backbone app and I wanted to implement a row class helper definition (odd|even) on templates,
I'm trying to 'port' the native handlebar helper to a module ...
0
votes
2answers
14 views
Drawing interactively onto a <div>
I am building a web application in which the user would be able to draw zones (polygons) onto a video. A solution I already implemented was to put a <div> on top of the video player, catching ...
0
votes
0answers
37 views
JavaScript CRUD Framework [closed]
A few Month Later i have Created My Own JavaScript Grid and Validation that works basically on JavaScript
Now I need to work on a CRUD Framework , basically any operation is all about input and ...
0
votes
1answer
60 views
angularJS inline editor for multiple 'fields'
The following code-snippet enables me to edit the elements on a page, however, clicking on the P tags all the others change into inline-editor mode as well. How can I rework this script, such that it ...
1
vote
1answer
78 views
Why does IBM WebSphere Commerce use Dojo instead of some more popular javascript frameworks?
One of the most popular frameworks is jQuery, but there are also others that have a lot of community behind them. All of the Dojo books I've found are 4+ years old and there seems to be a lot less ...
0
votes
1answer
98 views
jqGrid - Multiple grids on same page shows only one pager
I am writing a page with multiple jqGrids. My code follows a JavaScript MVC pattern which is going to provide an API for my HTML elements (including jqGrids). So, in the end of the day, I can create ...
0
votes
0answers
67 views
show/hide conext menu item based on the selected row data attribute value
I have a context menu and on right click the menu shows up, context menu show when the user right clicks on the table row.
on the row i have a column which has the status of the current row to show it ...
1
vote
2answers
44 views
Jquery or Javascript mvc
i build hr, accounts and other management system with laravel at backend. Ajax is used in many pages for pagination, crud operations and for other purposes but website is not completely based on ajax. ...
0
votes
0answers
54 views
Is a RESTful service a requirement to using ember.js or other javascript MV* frameworks?
Does using a javascript MV* framework (ember.js) necessitate the use of RESTful services, or can it work just as well by passing json data from a server side MVC framework (CodeIgniter) controller?
-3
votes
0answers
15 views
Looking for 3rd party mood voting system. [closed]
Plugins that create voting system for news articles similar to those on people.com where user can click on icons of their reaction after reading an article. Voting results are saved on the 3rd party.
0
votes
0answers
84 views
When is using Angular (or a similar JS MV* framework) with Rails a good idea?
I've been developing a Rails app with a fairly straight-forward UI. When a user logs in, it lists a bunch of items created by the user. Each item has a couple actions. There is also a form to create ...
0
votes
1answer
29 views
Node-level graph-style traversal visualisation?
I am looking for a JavaScript library which can do node-level traversal of a graph.
The most similar thing I could find (to help explain what I want) is ThinkMap, which is used by visualthesaurus.
...
0
votes
1answer
49 views
How to print a template in Ember
i've this in my html:
<script type="text/x-handlebars" template-name="index">
<h1>Login Page</h1>
{{#linkTo "index"}}<img class="logo">{{/linkTo}}
<button ...
0
votes
0answers
17 views
JavaScript: “Injecting” several functions into document.getElementById and document.getElementsByName
Hey Guys hw are u doing?
I am relatively new to programming (JavaScript, 5 years in the game) and i've been working on a library of my own that uses "prototypes" to add custom functions in several ...
0
votes
0answers
22 views
Getting object null for iframe.contentDocument iframe created iframe using jsdom with required options
var elementFrame = window.document.createElement('iframe');
elementFrame.style.display = 'none';
elementFrame = window.document.body.insertBefore(elementFrame, null);
...
1
vote
1answer
192 views
Having multiple AngularJS apps for one site?
I am developing a site that can be broken down to a handful of main pages. These pages can be thought as isolated from each other, except they share the session data (ie. session id and logged-in ...
1
vote
2answers
124 views
How can I get the value at the corresponding place while mouseover in d3.js?
I need to show value at corresponding place while mouseover a line/bar chart using d3.js
var toolTip = svg.selectAll("path")
.append("svg:title")
.text(getmouseoverdata(data)
);
function ...
0
votes
1answer
22 views
Caching a web page with Backbone.js
Can backbone cache a web page (similar to appcache) using Local Storage? I know that backbone can cache collections but I'd like to store the entire page. I'd also like to be able to update content ...
0
votes
0answers
50 views
Missing Updates on Observers?
Here's a Fiddle
The template has several instances of the same subView with different bound properties. You can see when those bound properties trigger an event on their observers. Note that subViews ...
0
votes
2answers
49 views
Is there an “Ember way” to mutualize this code?
I'd like to know if there are some good ways in Ember to reorganize this mess !
As you can see, i've got two TextField with almost the same code !
I hate having same code in my page and i hoped you ...
0
votes
3answers
73 views
JavaScript namespacing - looking for a simple and efficient approach
I would like to implement JavaScript Namespacing in a project. My co-workers and I are not specialists in JavaScript and therefore we are looking for a simple and efficient namespacing approach. ...
2
votes
0answers
183 views
Ember.js: setupController not being called when using {{linkTo}} or transtionTo(“path”, model);
Is there any reason why setupController would not get called when using {{linkTo}}? I have two instances in my app where linkTo is being used, and in the second case. It doesn't work. The only ...
0
votes
0answers
18 views
ExtJS 4.x with PureMVC
Is it wise to use ExtJS 4.x with PureMVC?
I have not used PureMVC but I know that since ExtJS 4, ExtJS supports native support for MVC architecture.
What benefit PureMVC can bring on table if used ...
0
votes
1answer
89 views
Passing a dynamic parameter different than xyz_id using linkTo in Ember.js
I've seen a lot of examples of passing dynamic parameters which end with xyz_id being passed where xyz is the "model". However, is there a way to pass an id different than xyz_id?
Basically, given ...
2
votes
1answer
96 views
SafeStrings when using Ember's bindAttr?
This is highly simplified, but I have something like the following:
<img src="www.example.com/image.jpg" {{bindAttr alt="view.altText"}} />
The altText binding comes from a computed property ...
1
vote
1answer
80 views
Why won't my Ember template render?
Here's a fiddle for this question (add/remove single slash on line 5 and re-run)
Basically, two ways of binding (proper term?) my application template. I would expect both ways to work, but one ...
1
vote
5answers
86 views
How to avoid javascript namespace conflict?
I have an enterprise app that imports some java script library (let's say A) with some functions in global namespace.
Our customers can extend our platform and import jquery and that will result in ...
0
votes
1answer
28 views
How to enforce typing of route params?
I have set up the following paths:
this.resource('areaManagement', { path: '/management/areas' }, function() {
this.route('assign', { path: '/assign' });
this.route('new', { path: ...
-1
votes
3answers
58 views
How can I deal with this kind of bug in Javascript?
How can I make sure that two commas are not entered in an Array .. this is for a web application that generates an array from user input and it's a text field .. I cant change it to anything else.
...
0
votes
4answers
66 views
How could I manipulate this array in Javascript for this kind of error checking?
How can I make Javascript check an array and make sure that there's no error commited after the comma separating each element of the array .. For example a user may form an array with two commas in a ...
2
votes
2answers
185 views
JS framework that provides two-way binding with server-side rendered htmls?
Is there any JS framework that provides two-way binding with server-side rendered htmls? Like Angular/Ember but instead of rendering html at client-side only update server-side generated html.
I like ...
-5
votes
1answer
76 views
What you can not do with Angular.js out of the box which you can do with jQuery [closed]
What you can not do with Angular.js out of the box which you can do with jQuery?
What problems I might face if I switch from jQuery to Angular? Basically my code consists of many onclick -> make ajax ...
0
votes
1answer
211 views
How to nest forms with angularjs?
I'm making an app that is not 100% 'single page' driven. I'm only using angular as a 'helper' as I ease into learning this new JS framework. Lots of my app is still controlled with plain old get and ...
0
votes
1answer
176 views
Tutorials and Examples on Ember.js? [closed]
I am a newbie trying to learn ember but i find the examples on their website too complex and hard to understand? does anyone know a book or web page where i can find good tutorials and in depth about ...
1
vote
2answers
59 views
Make a labelview editable on click of a button - Sproutcore
I'm very new to sproutcore. Although I know about the SC.InlineEditable mixin and isEditable field, the problem is when I click on the button to make a labelView editable. The label remains the same ...
0
votes
2answers
108 views
Proper way to observe ChildViews in Ember?
Here's a fiddle for this question (make sure you have your console open):
Basically, I have a handlebars block view as a parent, then loop through an array of items and create child block views for ...
0
votes
1answer
257 views
Why does the Breeze/Knockout template install as a tool instead of a template making it unusable?
I am trying to use the Breeze/Knockout Template written by Ward Bell (AKA, BreezeJS MVC Template). I successfully installed the breezetemplate.VSIX extension (by running the downloaded file) into VS ...
0
votes
0answers
101 views
Client side Javascript logging MVC 4,log4javascript
I am a newbie to Client side scripting. Currently working on client side JavaScript logging in MVC 4.I came across few of the JavaScript logging framework like Log4js,Log4Javascript.Thought of working ...
0
votes
1answer
66 views
Is there a JavaScript framework for context-aware popups? [closed]
I'm looking for something like Add2Home.js:
but much more generic and customizable:
I would like to inform the user e.g. "Did you know you can click this button to do this?"
The popup should ...
0
votes
0answers
112 views
How to Create a JavaScript Selector Engine [closed]
well i don't know where i start but here it goes i started long ago with my JavaScript Framework and it was of course with my limited knowledge after that Jquery appeared and seemed good enough for ...
1
vote
1answer
53 views
attach jQuery Resizable to 2 tables at once, so that the same column gets resized
How can jQuery be applied in a particular instance, where two tables, 1 table being the header/column table and the other table containing the data. For example, if I were to resize a column in the ...
-2
votes
1answer
118 views
Create JavaScript Edit/Details Form [closed]
I have a form displayed to the user as shown below on page load.
Now as you can see, it also has an Edit link. On click of Edit, I'll get prepopulated textboxes (values from details view) so that ...
-1
votes
1answer
78 views
Design application layout (JavaScript) [closed]
I need to design a layout with multiple kind of requirements. Broadly speaking, it needs to have;
Resizable cells (e.g. Main nav area, left area, center area, right area should be resizable)
...
0
votes
2answers
140 views
Ideas to design application layout [closed]
Let's say I want to design an application layout as below;
I am not looking for source code in any way for the below question (just need an approach)...
Now it needs to have;
main navigation
sub ...





