Questions tagged [javascriptmvc]

JavaScriptMVC is an open source jQuery-based JavaScript framework for developing JavaScript application using traditional MVC architecture.

JavaScriptMVC is an open-source Rich Internet Application framework based on and OpenAjax. It extends those libraries with a model–view–controller architecture and tools for testing and deployment. As it does not depend on server components, it can be combined with any web service interface and server-side language.

It consists of the following standalone components:

JavaScriptMVC is MIT licensed with the following exceptions:

  • Rhino - JS command line (MPL 1.1) Selenium
  • Browser Automation (Apache 2)

More Information

191 questions
0
votes
1 answer

JavascriptMVC: findAll with static json

I've got a interesting situation. I've got a controler with the call Todo.Models.PersonAddress.findAll({ personId:personId }, this.callback('list')); In the model we've got: findAll: function( params,…
medina
  • 8,051
  • 4
  • 25
  • 24
0
votes
1 answer

How to handle versioning of the app in JMVC/Can.js?

After you build the app, JMVC generates production.js and production.css. In case you want to set version numbers to avoid the user using the cached files, how do you do that? Eg., producing production.1.1.js and production.1.1.css or something…
Sherzod
  • 5,041
  • 10
  • 47
  • 66
0
votes
1 answer

Questions about Controller and Class in JavaScriptMVC framework

$.Controller("Whiteboard", {}, { init: function(){ var pen = new Pen(); }, sendRequest: function() { // This function should listen draw/erasing events from Pen } }); $.Class("Pen",{},{ init: function() { …
user469652
  • 48,855
  • 59
  • 128
  • 165
0
votes
1 answer

Mobile web framework for existing javascriptMVC web site

I have a quite complex web site developed with javascriptMVC and jQuery as main libraries, making use of a JSON API. Now i'm in the process of facing mobile web development, and have to make a decision on the framework to be used. The more mobile…
ggomeze
  • 5,711
  • 6
  • 29
  • 32
0
votes
2 answers

Lab js + Javascriptmvc steal

Anybody used LabJs in conjunction with javascriptmvc steal? meaning looking for dependency loading in child level as well as taking advantage of LabJs async performance gains. a.js ..... steal(../b.js) .then(../c.js) //c.js requires b.js and d.js to…
Chandu
  • 376
  • 5
  • 9
0
votes
1 answer

Where is the appropriate place to put JavaScriptMVC files in Django project

Django 1.4 has updates its default project layout, so my new project layout becomes root manage.py /project /settings.py /app1 /static /app2 /static Now I'd like to use JavascriptMVC framework for my project,…
user469652
  • 48,855
  • 59
  • 128
  • 165
0
votes
1 answer

Cannot find production.css during the build process in JavaScript MVC

I generated a sample app just to test the build process and it errors out during the build process. $ ./js steal/buildjs apps/hello/hello.html -to apps/helloprod Building to apps/helloprod/ BUILDING STYLES --------------- …
Sherzod
  • 5,041
  • 10
  • 47
  • 66
0
votes
1 answer

JavascriptMVC - validation error when saving a model

I want to use JavascriptMVC for my new project, but I have a problem. client = new Client($('#create-client-form').formParams()); client.save(successhandler, errorhandler); documentation: You just need to call success back with an object that…
Tamás Pap
  • 17,777
  • 15
  • 70
  • 102
-1
votes
1 answer

Stop a event from being executed while other is happening

I have a div and when I mouse over that particular div I have a SlideUP animation and on MouseOut i have a slideDown. When I mouseover and mouseout I want the SlideUp to happen completely and then mouseout event should be called. I am using…
Raviteja Avvari
  • 31
  • 1
  • 1
  • 4
-1
votes
3 answers

javascript library interprets strings as JSON objects. Any ideas?

Here's the query result: ["Language1","anotherLanguage","yetanotherlangugae"] Javascriptmvc's model classes findAll method returns (via success callback) an array of javascript objects. The framework takes care of converting the text returned by the…
yalis
  • 1,508
  • 1
  • 16
  • 24
-3
votes
3 answers

Need a framework suggession

I am using Java Script MVC framework for building a Web Application.. Now i want the same application for mobile aswell.. Can some of you suggest me the best Framework(light) to convert my application for mobile and touch devices? Raviteja Avvari
Raviteja Avvari
  • 31
  • 1
  • 1
  • 4
1 2 3
12
13