Tagged Questions
1
vote
1answer
36 views
express & backbone integration
ok, I am new to web dev and here's a stupid question. I have been through a few tutorials for node,express and backbone individually, but I can't seem to wrap my head around how they are integrated. ...
-2
votes
0answers
23 views
calling through magic jack with a web application
I am trying to make a web application that uses magic jack to actually put a call from a users computer. A backbone + node.js app that can be used to call to users in US and CANADA using plugged in ...
0
votes
1answer
33 views
How do I validate a form being filled out in Backbone?
So I have a new form set up it saves temporarily and all but I want it to only be able to update when it is validated otherwise show some errors. This is during the view section for the saveEdits ...
1
vote
1answer
39 views
Backbone model is not rendering default? Need Jade and Backbone gurus
Hey so I am having a problem where my templates change but the backbone model does not seem to provide the info I need. I am trying to solve this so I can move on to making collections. I am not ...
0
votes
0answers
15 views
How to integrate existing Google OAuth in Node.js with a Backbone application?
I have already implemented Google authentication on the server with the help of Passport package. And it work pretty well with my Express app.
So the plan now - is to move all my "views" from Express ...
2
votes
0answers
51 views
What is wrong with the handlebar code?
Hey so I am trying to switch from underscore to handlebar, but nothing is rendering from the model, but the templates are changing correctly. Also, when the editTemplate shows from clicking the edit ...
0
votes
1answer
45 views
Why is my view in backbone not rendering?
I am trying to render this template from my backbone views but it is not working? Anyone know what I am doing wrong here thanks! I will include my jade file for the views and the main.js file for the ...
1
vote
1answer
46 views
In Jade how is this interpreted ? <%= lastName %>
I currently have my code like this but the first name appears the way it is being shown. I am trying to figure out what this is in jade, because this is not right.
Jade File
div.centerContent
...
1
vote
0answers
27 views
How do you create an inline edit in backbone view?
so I am trying to get the fields in my backbone model being called in the view, editable and validated by the model. How do I go about doing that? I know there is an html way of doing ...
1
vote
1answer
16 views
Validation in Backbone is not validating?
Hey so I know backbone changed there validation and I am trying to make it work? Anyone notice what went wrong. Here is the JSfiddle link that validates as well. Do not understand why is not ...
0
votes
1answer
20 views
Call direct route without hash from Backbone
I'm probably tackling this the wrong way but bear with me:
in my server.js I got this
tweetThisThing = require('./lib/kustomtwitter'),
app.get('/tweet/:msg', function(req, res){
var tweet = ...
1
vote
1answer
25 views
Import contacts directly to device from web?
This web application designed for mobile devices is written in javascript/backbone with node.js/postgres on the server side. On the client side, I have a function that takes the data from a contact ...
1
vote
1answer
36 views
Getting a type error on my Backbone file?
so I will include the error along with my main.js file, if anyone can tell me what it is refering to? I think it is the templates but I cannot figure out what I am doing wrong.
Main.js file:
...
1
vote
2answers
55 views
Collection and view not working in backbone script?
Hey guys I am currently following a tutorial and learning backbone, but for some reason I cannot get anything besides the Backbone model to work. Everything underneath it such as the collection or ...
0
votes
1answer
58 views
What is <%= in jade?
I am going through a tutorial that uses html for its view engine, I am working on jade and just wanted to know what this would become in a jade page.
<%=firstName%>
I tried this but it tells ...