Open Source jQuery-based JavaScript framework for developing JavaScript application using traditional MVC architecture
0
votes
0answers
7 views
JavasctiptMVC keypress event
My work in JavascriptMVC is capturing the enter press event and i have steal ('jquery/event/key') plugin and my code is
'input keypress': function(ev){
alert("inside");
alert(ev.key());
if(ev.key() ...
-1
votes
0answers
28 views
Which Javascript MVC Framework suitable for rapid prototyping? [closed]
I have to prepare a prototype consisting of multiple pages and many jQuery plugin.
After the prototype stage, that contents are also converte to some CMS systems like wordpress, drupal, joomla etc. so ...
0
votes
1answer
46 views
CanJS and Mustache
I'm having problem using mustache in my application.
I've stolen 'can.....mustache' and I've a Model object with this structure:
// widgets
Models.LayoutWidget = can.Model({
findAll: 'GET ...
0
votes
1answer
54 views
JavascriptMVC: CanJS loading without jQuery
I cannot find in the documentation any "official" way to steal (stealjs) canJS without loading jquery.
The problem is that I'm working with Yii Framework (PHP) and some components need jquery before ...
0
votes
2answers
49 views
StealJS and CanJS
I'm having problems using canJS together with stealjs, i've cloned the repo of javascriptmvc (3.3 use canJS). Now i've this folder structure
/js
/can
/documentjs
/funcunit
/plugins
.
...
0
votes
1answer
24 views
CanJS url changed back to #! when can.route.ready(true) executed
Code is here: http://jsfiddle.net/cTpPx/, but view the live example here http://fiddle.jshell.net/cTpPx/show/, because I want you to observe the url changes.
Please disable Chrome cache when visit ...
0
votes
0answers
24 views
JavaScriptMVC: How to use model findAll to encapsulate these URLs?
I have following URLs:
/tasks/ // Return a list of JSON
/task/next-week/ // Return a list of JSON
I have Task model in JSMVC:
$.Model('Task', {
findAll: 'GET /tasks/',
...
0
votes
1answer
44 views
Javascript MVC Controller and Click Events
I'm having a problem with the click events not working using a Javascript MVC Controller.
TEST.Assignments.AssignmentsController = function (element) {
var elements = {
activeAssignmentsPanel: ...
8
votes
2answers
363 views
How to combine JMVC (javascript-mvc) and server side MVC together
I have asked this quesion few days before here and no one answered it.
I had asked it in forum.javascriptMVC.com too and now I have a answer, but more idea is what I need. Please.
Question:
I read ...
2
votes
1answer
74 views
Large shared code base, extend functionality [closed]
Our application is a large scale Javascript application, using the Javascript MVC framework. We are using the MVC app folder across all of our sites via an SVN:external, and each site also has their ...
0
votes
1answer
51 views
Javascript MVC Url routing Component, routing in both side
i am making my own small jsmvc lib, and now i want a simple routing lib for my small framwork, i am just wiring up open source libs together to make it work according to my needs,
and now i want a ...
1
vote
2answers
46 views
$scope does not call inside function
Right now we are facing an issue in a controller that calls a DataService (Parse), the problem is that this code does not work:
function MainCtrl($scope, DataService, $location)
{
...
1
vote
2answers
37 views
Inheritance with Stapes.js
I'm trying to make a parent/child link with the JS framework Stapes.js.
Here is my code:
var Parent = Stapes.subclass({
constructor: function () {
this.name = 'syl';
}
});
var Child ...
0
votes
1answer
51 views
EmberJs ,could one action to many view?how to get list view from list item?
1.what's the relation between controller and action and view?
i guess i mix something of them.
2.if i define a 'userController' .does it control user list view?
should i define a ...
0
votes
1answer
79 views
How to get Marionette.Application instance inside controllers
i new to Marionette and backbone, i building project with Marionette, require js,
i created Marionette.Application instance controllers, routes, now i am facing the problem that how to get instance ...
0
votes
1answer
87 views
JavascriptMVC and Bootstrap
I am trying to setup a project to use javascriptmvc and twitter bootstrap. I used the app generator built into javascript mvc to create the file structure, and then added a resources directory.
...
1
vote
0answers
31 views
Passing custom build options to closure when building with stealjs
I am using JavascriptMVC to build an app with StealJS build functionality. This is my build.js:
load("steal/rhino/rhino.js");
...
0
votes
1answer
90 views
Backbone.js Collection's fetch call is erroring out
Still wrapping my head around Backbone, and running into an issue where my Collection won't populate when I'm passing it JSON from a file. The fetch() call is erroring out, but I'm not sure how to ...
1
vote
1answer
72 views
SpineJS handle server-side rails model validations
I have a model, let's call it Book. In rails, when the Book is saved, I validate the uniqueness of it's ISBN number. For my front end, I have a simple SpineJS app which let's me add a new book.
In ...
7
votes
1answer
598 views
Are we going backwards using a JavaScript MVC (MVVM) framework like Backbone.js, Angular, etc.? [closed]
JavaScript MVC frameworks like Backbone.js, Angular, Ember.js, etc. are all the rage these days. I understand that they are great for preventing spaghetti code and all, but I really don't understand ...
0
votes
1answer
73 views
Backbone: trying to figure out the basic control flow, could someone tell me if this is sane?
I'm building a simple Backbone application with a search form and some results. I'd like to:
allow the user to change the value of an 'order by' select field, and update the URL and results ...
0
votes
0answers
36 views
JavaScriptMVC and Ruby on Rails integration in one application
I have searched here, and only found one similar topic with no answers. I have worked on several JavaScript MVC projects, and I have an understanding of how it works. I am not as proficient in Ruby on ...
1
vote
1answer
382 views
Optional route parameters in Backbone.js? (again)
I'm trying to set up routing in Backbone 0.9.10. I'd like to match routes of the following kind:
/england/
/england/birmingham
/france
/france/paris
...
etc. This is what I have in my router at ...
0
votes
0answers
23 views
How to access model-data from conroller in JavascriptMVC
Are there any requirements (e.g. dependencies, initializations, Model-functions, etc.) to do this in the latest build of JavaScriptMVC:
//In EJS View
//...
<tr <% = data[i] %>>
...
1
vote
1answer
500 views
Difference between JavaScriptMVC and CanJs
Call me stupid, but I'm quite confused. Are they the same and can.js is simply its successor? They seem to share quite a lot of functionality. As JavaScriptMVC is not updated as regulary as CanJs I ...
0
votes
1answer
72 views
Javascript MVC view issue
using JMVC i have this issue: this line NOT work : this.element.append('hello');
here my controller:
steal('jquery/controller',
'jquery/dom/form_params',
'jquery/view/ejs',
...
2
votes
1answer
94 views
Backbone structure for search form and results?
I'm working with Backbone.js for the first time, and trying to get my head around how it works. I have a search form that pulls in results via Ajax and writes them out to the page dynamically.
I'm ...
0
votes
2answers
311 views
How to handle a simple click event in Backbone.js?
I am having difficulty with something very simple in Backbone. I want to wire up the <h1> in my page so that when the user clicks on it, it returns seamlessly to the homepage, without a ...
0
votes
1answer
105 views
JavaScript MVC for video centric application [closed]
I'm looking for advice on JavaScript MVC for a video centric app. I'm developing an HTML(5) app which is basically a video element with some canvas and video controls.
The app is sort of a ...
0
votes
0answers
26 views
Backbone + Rails app with persistence logic with and without server
I am looking for a Backbone+Rails app or some helpful links where the app can be used even without server, storing data on localStorage and when server is started, the app syncs the data back to ...
1
vote
2answers
274 views
Why do we need javascript mvc?
When would one go for using Javascript MVC ? I mean why there was a
need for JS-MVC ?
Is it only because this design pattern was famous in other languages, for code maintenance,readability and many ...
2
votes
4answers
327 views
Choosing a javascript MVC framework for a drag and drop interface
USECASE: I am starting with a project which involves a lot of client side scripting.It is similar to a mini CMS where user can drag and drop html components.Somewhat similar to this. Now I am in a ...
0
votes
0answers
108 views
Multiple views and Routing with JavaScriptMVC/jQuery
i am looking into MVC frameworks at the moment. I've already looked at AngularJS and Ember.js. Now i want to see what JavaScriptMVC and jQuery can do or can't do.
My specific question is, if i can ...
0
votes
0answers
68 views
Debugging a custom Javascript MVC project
I have this huge project in my lap, that has been done in a custom Javascript MVC framework style. Each view is triggered via events through Javascript. It's the first time I am dealing with an ...
0
votes
1answer
199 views
Canjs model returns undefined after resolved
I cannot find a way to retrieve data from the server and convert them to model instance. I folloed the instructions here but it's still doesn't work.
Here is my setup:
url for the service: ...
0
votes
1answer
79 views
jsmvc stealjs process issue
When using the buildjs to generate production javascript for jsmvc module, the command process exits without any information, this behavior is sporadic, some times (without any changes) it generates ...
0
votes
1answer
2k views
Angularjs TypeError: undefined is not a function
I'm just starting to mess with angular js and I'm trying to load the data through a post action.
I'm using anfularjs v.1.0.2
Here is my code:
HTML:
<!DOCTYPE html>
<html ng-app>
...
9
votes
2answers
617 views
Creating a loosely-coupled & multi-page JS application using Core(Mediator) / Sandbox(Facade) / Module pattern — advice?
I'm building a multi-page javascript application. I've read a lot into design patterns, and creating applications using a Core/Facade/Module approach w/ loose coupling (pub/sub scribing to events).
...
1
vote
1answer
76 views
Custom selections in JavascriptMVC Controller event handler?
In JavascriptMVC's Controller they use the following format for event handling
Instead of classic jquery
$(function(){
$('#tabs').click(someCallbackFunction1)
$('#tabs ...
0
votes
0answers
109 views
SlickGrid + JMVC not fire click event
i'm using Slickgrid into JMVC . all work well.
I have added a cell formatter like this:
hyperlinkCellFormatter : function(row, cell, value, columnDef, dataContext) {
return ...
0
votes
1answer
162 views
attaching a jquery validation engine on a keyup event
I am using jquery validation engine in my project on the input fields.
The code structure is like this
<form>
<input/>
<input/>
</form>
and i validate the fields in ...
0
votes
1answer
80 views
Finding the name of the Control attached to a element in CanJs
I am using Canjs to build my Web application . Now i have a issue while i am working on it.
The controllers get changed on a Single HTML element and the controllers that got attached to that ...
0
votes
1answer
69 views
javascript frame work suitable for movie editor
I am working on javascript and jquery for an online movie editor project, My script is getting complex with event binding's and jquery ui components. I decided to separate ui and event binding's but ...
2
votes
2answers
226 views
JavascriptMVC: Listen to event of instantiated Controller in wrapper Controller
I have 2 controllers:
$.Controller('App.Browse',
/** @Static */
{
defaults : {}
},
/** @Prototype */
{
init : function(){
$('#map').app_map();
},
// how can I listen here for ...
0
votes
1answer
50 views
Calling undelegate inside a delegate
I listen to $.route.delegate('someparam', ...) on the main of jsmvc, when it gets fired i decide which controller to load, and delete the old controller (if available), the problem i also use ...
0
votes
1answer
150 views
JSP page with JavascriptMVC tomcat 7 error
I am working on a webapp..i am using SpringMVC for Server side and JavascriptMVC for Client side...now the problem is in javascriptmvc i worked with html pages but now i want to incorporate ...
0
votes
2answers
662 views
Cannot access web application resources in Tomcat 7
I am working on making a sample web application using SpringMVC and JavascriptMVC, deployed Tomcat 7. I have incorporated Spring security and Spring MVC in my application i got help from this article ...
0
votes
1answer
199 views
Backbone Boilerplate + Handlebars view not working
I am trying to learn Backbone, but I have a problem with how Handlebars.
I want to build a modular app, where there are separate files for views and templates.
Here is my app.js:
define([
// ...
13
votes
2answers
2k views
Authentication for users on a Single Page App?
I have developed a single page app prototype that is using Backbone on the front end and going to consume from a thin RESTful API on the server for it's data.
Coming from heavy server side ...
1
vote
1answer
809 views
Ember.js nested ArrayController and Models
I have an nested data structure as follows:
Job:{
JobId: 1,
NumberTrackr: 2,
Trackrs: [
1 : { TaskTrackrID: a,
NumberSlots:1,
...




