0
votes
1answer
11 views

mustache using .get(key) function for each object

I have some JSON models that look like: {entries: [Entry{get: function}, Entry{get: function}]} I then want to iterate over each entry and use the get function to get attributes. The part I am ...
0
votes
2answers
24 views

How to check element does exist after mustache templating

I have this mustache setup: $.getJSON('data/data.json', function(data) { var template = "<ul>{{#"+elements+"}}<li class=\"selector {{.}}\"></li>{{/"+elements+"}}</ul>"; ...
1
vote
1answer
37 views

Use single variable to define mustache tag

Is there any option to set mustache tag with some define variables? Something like this: Json { "color_set_01": [ "white", "black" ], "color_set_02": [ "green", "red" ...
0
votes
2answers
29 views

How does one use lambdas on the mustache.js demo page?

I have been trying for about an hour to get a lambda to work with the mustache.js demo. Nearly all of the examples online which demonstrate lambdas, do so by declaring the json inline with their js. ...
0
votes
1answer
25 views

Mustache template string inside render as HTML

I am using Mustache to render templates. I have this json object: { title: "Foo bar", content: "<p> Html here </p>", footer: "footer content here" } I have a ...
0
votes
2answers
36 views

Highlight matched text with case sensitive for auto suggestion

I am working for auto suggestion, where i need to match the key term and if the key term matched make it highlighted. I am done with this but the problem is while matching I am looking with ignore ...
-1
votes
0answers
21 views

Create a list of Handlebar template variables and iterate through to create a list of inputs [closed]

Is the following possible? I want to have a system where I can create a Mustache template that is stored into a database as a template. Then if someone wants to use the template some clever ...
0
votes
0answers
22 views

$.Mustache.load and $.Mustache.render

i have next question. I have this code for loading my templates: $.Mustache.load( "./templates/news/home.tpl" ); Which is: function load(url, onComplete) { return $.ajax({ url: ...
0
votes
0answers
14 views

Good way to do editable messages for plugin?

I am working on a plugin, and have a page setup for the theme developer to be able to edit how my plugin is displayed, and the plugin just injects itself where the theme developer sets certain divs ...
0
votes
2answers
68 views

Why is `Mustache` undefined? (Using RequireJS)

I can see that the mustache.js file has been loaded, (code 200 in Firebug Net tab) so why do I get an error saying "ReferenceError: Mustache is not defined"? I've looked at several related SO posts ...
0
votes
0answers
76 views

Conditional class in side mustache template

I have a json like this. From this json I am populating li's values using mustache template. { data: { buckets: [{ key_value: "HO.H.", ...
1
vote
0answers
74 views

RequireJS not loading Mustache window object

I'm implementing the search functionality described here for my Jekyll site but it needs six separate JavaScript files to work, so I'd like to use RequireJS to load all of these files as dependencies. ...
0
votes
0answers
33 views

Create a “for” loop with Mustache.js templating system

I'd like to create a "for" loop in my Mustache.js template. I'd like to do something like that: <ol> {{for $i = 0; $i < $steps; $i++}} <li {{$i == ...
0
votes
1answer
46 views

How do I loop through a json collection of strings with Mustache?

The MVC that creates the array of strings is public JsonResult GetInvalidFilesAJAX(JQueryDataTableParamModel param) { string[] invalidFiles = new string[] { "one.xls", "two.xls", ...
0
votes
2answers
48 views

Accessing outer array values from inner array in Mustache.js / ICanHaz

I have the following JSON, essentially an outer array of objects (Outer), each of which may contain an inner array of objects (Inner): { "Outer": [{"OuterName": "OuterName1", "Inner": ...
1
vote
1answer
31 views

Modify html before it gets templated

I am using Mustache template script to render my JSON values. I was wondering : Since I need to bind data to the html I'm rendering , there is a way to apply .data() to the object I'm going to ...
3
votes
1answer
109 views

Replacing util.pump() in Node.js

I recently updated to the latest version of Node.js (1.10~) from 0.8~, and I've been getting a message when running that says: util.pump() is deprecated. Use readableStream.pipe() instead. I've ...
1
vote
0answers
42 views

Why I get template filename instead of template content in Mustache

I went through Mustache tutorial This question is slightly related to Embed mustache template into another template I got all other things working except partials I tried to do base.mustache: ...
2
votes
1answer
209 views

How can I correctly pre-enhance Mustache templates with jQuery Mobile?

I'm trying to speed up my jQuery Mobile and backbone.js based application, especially the part when it is enhancing form elements (and there are many of them). I was thinking I could let jQM ...
0
votes
0answers
26 views

Render a webpage using Mustache templating library

Here is the gist of my requirements: I have webpage in a domain, say www.domain-one.com I want to display this webpage, within another page in another domain, say www.domain-two.com A simple ...
0
votes
2answers
153 views

Mustache style function evaluation with underscore.js template

Is it possible to use underscore.js with Mustache style function calls? The underscore.js manual has an example how to support Mustache syntax: _.templateSettings = { interpolate : /\{\{(.+?)\}\}/g ...
0
votes
1answer
34 views

Calling a mustache argument inside one mustache argument

Im trying to do something like this but I can't find out how to do it : I got a mustache arg called : {{dropdown_}} and another one which is called {{number}} What I'm trying to do is something like ...
0
votes
1answer
146 views

How to get Handlebars templates to return DOM elements instead of string of HTML?

I am using Handlebars in my Backbone.js application. I am wondering how to get Handlebars template to return DOM elements instead of a string? This is what I mean: define([ 'underscore', ...
0
votes
2answers
183 views

icanhaz/mustache loop (iterate through elements) js error

I'm trying to get icanhaz/mustache loop working, as defined in this answer and I'm getting following error in browser console: Uncaught Error: Syntax error, unrecognized expression: <option ...
0
votes
1answer
614 views

How to build collapsible/expandable table rows like news.google.com

I am building a webpage to show some articles and related article. I want to build something similar to what you see on news.google.com I strongly feel there is a better way to do it than what I am ...
0
votes
4answers
118 views

php javascript json parse escape characters

I currently have a webpage that need to use javascript to parse variables from php. I do things like this: data.notices = JSON.parse('<?php echo json_encode($notices) ?>'); However, when ...
0
votes
1answer
60 views

template inside html mustache js

I'm using mustache to render portion of html. To do this , I'm using this javascript : var template = $("#div_name").html(); .. .. ...
0
votes
1answer
55 views

Having trouble understanding handlebars.js context

I'm having trouble understanding how context works in handlebars.js, specifically the "../" notation. This is best exemplified by the jsfiddle I put together: http://jsfiddle.net/accelerate/AwChe/ ...
0
votes
1answer
28 views

how to isolate a template in a separate file?

I'm using Mustache and I have a template which is used by different HTML files. <script id="template" type="text/template"> {{#repo}} <b>{{name}}</b> {{/repo}} </script> I ...
0
votes
0answers
80 views

Hogan doesn't support lambda in precompiled mode

I have a mustache template with a lambda looking like this: {{#myfunc}}myvalue{{/myfunc}} It is precompiled by hogan.js to look like this: define(['hogan'], function (Hogan) { var template = ...
4
votes
2answers
68 views

How to force Mustache to render Number as String?

var template = Mustache.compile("{{#list}}<option value=\"{{&0}}\">{{&0}}</option>{{/list}}"); var view = { list: ["1.0", "2.0"] }; var output = template(view); In the above ...
6
votes
3answers
580 views

Backbone.js Memory Management, Rising DOM Node Count

Situation: I'm working on a pretty decently complex single page Backbone app that could potentially be running for 8-12+ hours straight. Because of this, there's a need to ensure that the application ...
2
votes
1answer
71 views

Mustache.js: why it breaks string into Object of separate characters

javaScript object being passed to Mustache: data = {}; data.list = ['title', 'editor']; data.test = function(){ console.log(this); }; Mustache Template {{#list}} {{test}} {{/list}} ...
1
vote
2answers
133 views

Mustache Conditions and Loops

Here are the resources: JSON { "badges":{ "unlocked": [ {"name": "Win 1"}, {"name": "Win 2"}, {"name": "Win 3"} ], "locked":[ {"name": "Lose 1"}, {"name": ...
1
vote
2answers
218 views

mustache js - Can't access array value using tables

I am having a problem with Mustache.js accessing to the values of a json array and I need some help. The problem is when I want to access to the values using a table. It always shows [object Object], ...
0
votes
1answer
105 views

Iterating over Roots in ICanHaz.js / Mustache

I'm running into an issue with iteration using ICanHaz.js / Mustache. I want to loop over the roots of a JSON structure and pull out a specific parameter. Here is my JSON: { "1": { "param1": ...
0
votes
0answers
76 views

javascript mv* framework using mustache templates? [closed]

I really like mustache templates, but when I using jquery with mustache, I end up with spaghetti code. What's a really simple MV* framework that incorporates mustache templates? All I really need is ...
1
vote
2answers
304 views

Mustache Template with Nested Array of Objects

Could use a little help figuring out why my Mustache template isn't rendering properly. I'm very confused why the following isn't working. I'm sure it's a minor stupid mistake of mine or something... ...
0
votes
2answers
98 views

How to use mustache.js inside of a site generated with Jekyll and Liquid Layouts all together

I have a site built in Jekyll for rapid prototyping of a JavaScript project I'm working on: Choropleth Now I've decided to introduce mustache.js into the project and obviously I ran into the issue of ...
1
vote
1answer
863 views

How to load templates with Hogan.JS from an external file?

I use Hogan.JS as JavaScript templating library. It is supposed to load JavaScript templates from external files. One can probably outsource several templates in an external JavaScript file. Does ...
1
vote
1answer
425 views

Best Practices for Loading Mustache.js/ Handlebars.js Templates Cross Domain or CDN

This is not really a Mustache.js or Handlebars.js specific question but both frameworks would have this problem if you are trying to optimize the performance loading templates for your web app. Right ...
-1
votes
1answer
155 views

Embed mustache template into another template

I am using Mustache for HTML templates and HoganJS as renderer. My problem is following: I have table template (table, header, body), but also I have template for each TR element of TBODY. All I want ...
16
votes
3answers
3k views

jQuery 1.9 + client-side template = “Syntax error, unrecognized expression”

I just updated jQuery from 1.8.3 to 1.9, and it started crashing all of a sudden. This is my template: <script type="text/template" id="modal_template"> <div>hello</div> ...
2
votes
1answer
113 views

What is the correct mustache template config for _.templateSettings of underscore.template?

I've searched around and I couldn't find one that really works. In Mustache, when you throw 2 curly, the string inside will be escaped, and if you throw 3, it will NOT. // when you pass {foo: ...
0
votes
1answer
50 views

Optimizing Script Template

I am using script templates for creating resuable html markup in javascript. The templates are using mustache to replace tags with the correct values. The html is then rendered and rendered again by ...
1
vote
1answer
138 views

Presentation logic inside mustache.js template engine

What is the simplest way to achieve the following presentation with client-side mustache.js template engine? var view = { search_term: 'something', number_of_hits: 3, hits: [...] }; If ...
0
votes
0answers
82 views

Getting values collected in a form to populate a mustache template

I have a html/css form on one page and another page in the form of an html/mustache template. I'd like to take the values I am getting from the form and plug them into the relevant parts of the ...
15
votes
2answers
417 views

How can I force jade to wear a mustache?

This is my jade figurine: section#entry-review-template.template(data-class='entry-review') table thead tr th='Date' th='Title' th tbody When I start adding ...
1
vote
1answer
222 views

Client side vs server side vs Hybrid templating for django backend

I am wondering whether it is worth converting to a more generic templating engine such as mustache or handlebars instead of Django templates. The options I see for myself are: Stay with Django ...
2
votes
1answer
571 views

Mustache.js Object #<Document> has no method 'search'

I am using mustache.js as my client-side templating solution, but I was caught in a problem that I do not have any idea why is this happening: first of, here is my template : <ul> ...

1 2 3 4 5