0
votes
2answers
96 views

Parse json using Mustache

I've got this JSON: { status: "ok", posts: [ { id: 1362, type: "ser", slug: "av-ss-xiii-3", fields: { price: [ "550" ], ...
0
votes
0answers
50 views

Mustache jquery does not return any values

Its one off those days when I just cannot get anything to work, I have the following ajax code which I want to return json data and display using mustache, problem is no data is been displayed. I am ...
1
vote
1answer
343 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 ...
2
votes
3answers
225 views

Mustache and Jquery Plugin Issue

I am using mustache js with a accordion plugin. My idea is to use an external template file, along with an external json file and pull the templated file into an accordion widget (using a plugin). It ...
1
vote
0answers
238 views

Mustache.js data from JSON

I am currently working on jQuery Mobile site which will use data from JSON source. To generate HTML I am using Mustache.js - javascript template engine. I have a problem with AJAX -> JSON -> ...
0
votes
1answer
380 views

jQuery mobile, AJAX, Mustache is not rendering correctly

I am using jQuery Mobile to post through AJAX to a server. The response is received as JSON which I am trying to display using a Mustache template. Everything works but jQuery is not rendering ...
0
votes
0answers
252 views

Best way to dynamically create new pages in jQuery Mobile from Ajax+JSON data

jQuery Mobile seems to assume that content is either stored locally in existing HTML, or rendered server-side via Ajax. Instead, I'd like to render client-side using a templating engine ...
1
vote
1answer
209 views

jQuery .empty() on AJAX constructed list not working

I have an unordered list (each list element contains some further markup but this should not matter) that is constructed (instantiated and appended) from an AJAX call to the DB. I want to clear the ...
0
votes
1answer
419 views

creating a moustache.js html template using JSON

I just learned about moustache.js and i am attempting to create an HTML template. However, the documentation is a bit hard to decipher. I found a good site that explains partials (which I believe I ...
4
votes
3answers
870 views

Sharing mustache/nustache templates between server and client. ASP.NET MVC

I`m using mustache.js on client and Nustache in ASP.NET MVC3 project. I have Person.mustache template in a View folder on server, which I use like this: @Html.Partial("Person") from Razor main ...
2
votes
1answer
1k views

Filling and selecting a selectbox in mustache JS

currently i have the "new item form" for my application. i used mustacheJS for it's template. there are some fields which need data from a database, sent via ajax. like for example, a certain select ...
0
votes
1answer
396 views

render mustache template with remote ajax data in jquery ui tabs

the jquery ui tabs remote data fetch features is great, however I am having difficulty bending it to my will. I followed the documentation to get it to fetch remote data through ajax calls with the ...
2
votes
2answers
2k views

How to apply jquery mustache to external file/template

At the moment i am using this to 'get' my external html file, and then use mustache to append to that template's ID : $.get('block.html', function(data) { $('#mydiv').append(data); ...