Tagged Questions
2
votes
1answer
161 views
Sammy mustache - not working (variables in double braces not replaced with values)
I'm trying to write my first webapp using sammy and mustache templating. The template doesn't seem to render correctly (variables in double braces are not replaced with values). Here's the relevent ...
1
vote
2answers
175 views
Event listeners for dynamic content in evently
I am generating a dynamic html table. One of the columns in the table has a clickable image (a href). For testing, I have also created a static table, with similar structure as the dynamic table, in ...
0
votes
1answer
657 views
Mustache with JSON do not execute the function
I'm trying to create couchapp with jquery, mustache and sammy. There will be several pages and I will generate them like this:
$(function () {
var $db = $.couch.db('test');
var app = $.sammy(function ...
1
vote
1answer
915 views
How to integrate CouchApp, Node.JS, Sammy and Mustache
I set up a node.couchapp.js CouchApp and pushed it to my CouchDB. There is Sammy and jQuery included by default. Now, I'd like to add Mustache for templates, but don't exactly know where? I could use ...
8
votes
2answers
639 views
Learning resources for Couchapp, Mustache.js, Evently, CouchDB
What are some of the good learning resources that you have come across aiding your application development in CouchApp stack including Evently and Mustache.js?
1
vote
1answer
265 views
How do I attach an event handler to mustache rendering in CouchApp using evently?
Writing a CouchApp app using evently / mustache. I have a couple of 'widgets', one has a link which triggers an event, and another is set up to listen to it. So far so good. The listening widget has a ...
1
vote
1answer
184 views
Couchapp && Evently && Mustache: How would I output subarrays?
I am working on a demo couchapp to output some contact data to a html-container. Right now, I am doing this by generating the html and appending it via javascript.
In CouchDB I could (I would really ...
0
votes
1answer
274 views
iteration on couchapp
i had write this on mustache.html on couchapp
**{{%IMPLICIT-ITERATOR iterator=i}}
{{#example}}
hallo {{i}}
{{/example}}**
with this array
{
"example": ["alpha","beta","gamma","delta"]
}
but ...
1
vote
1answer
456 views
Timeout in a Couchapp list when using mustache
I have a simple list view in which I (try to) use mutache to render the output of a list containing 5 results.
function(head, req) {
var row,
mustache = ...