-1
votes
0answers
10 views

creating javascript drop down with text search box and other links using a button?

I have a site with several .PNG buttons in the header that point to various areas when clicked (using simple anchor links). One of them is a "Search Site" button that points to search.php (and it's ...
0
votes
0answers
5 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
23 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
36 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" ...
-2
votes
1answer
37 views

Creating a Modern HTML5 template for a website [closed]

(I know to create html website with php,css,jquery) My Question is about html5 template. How to create an HTML5 website that can automatically adjust for Mobiles,tablets,PC or anyother. Hint: ...
0
votes
1answer
42 views

Meteor.js Template does not update after variable assignment

I'm building a free TV-tracking app with Meteor, and along the way I seem to have hit a wall. A part of my template contains this: <template name="results"> <div class="row"> ...
0
votes
0answers
12 views

How to override the default output interpolation of Mustache.js, Hogan.js or Handlebars.js?

Is there a way change the default output of libraries like Mustache, Hogan and Handlebars? Here is my context for example: var context = { primitive: 1, array: [1, 2, 3], object: new Object() ...
0
votes
1answer
33 views

Underscore.js template throwing error in ie8 in _.each() function

I'm using underscore.js to render JSON data http://pastebin.com/WrUfT1Z4 into a template. It works fine in Firefox, Chrome, Safari, IE9 + 10, but throws an error in ie8. "SCRIPT5007: Unable to get ...
0
votes
1answer
35 views

Rendering go html/templates with javascript? [closed]

Is there a javascript template engine that can render go's html/templates templates? If not, which template language is the closest one?
0
votes
0answers
22 views

meteor insert causes infinite loop

When i click to insert, it gives me a Uncaught RangeError: Maximum call stack size exceeded error. I have no idea what is going wrong. I have inserted on click some where else too, but this only this ...
0
votes
1answer
29 views

Underscore template throwing error when loading via ajax

I am using underscore to convert JSON data into a template: $(document).ready(function(){ var template = $("#furniture-template").html(); $furnitureList = _.template(template, {things: ...
0
votes
1answer
18 views

How to set passed values into template's fields?

In tornado's template in I passed from code dictionary data with keys username and code data = {'username' : 'pal', 'code' : 16281} in ready function I am trying to set passed values to two inputs ...
-7
votes
0answers
35 views

Cpp Template Class to Javascript [closed]

I need some help to port this C++ Template Class to JavaScript - hopefully somebody can help. template<typename T> struct vector3 { typedef T value_type; T x; T y; T z; ...
0
votes
2answers
31 views

Knockout template not loading?

I have the following template: <script type="text/html" id="testTemplate"> <div class="itemName">Hello World</div> <div class="itemDescription">This is a template that ...
0
votes
1answer
24 views

Javascript Binding Templates to Data

I really like handlebars.js templates, but I want to hook up data binding to update the template when the data changes. I already know how to do something like this: var users = ...
1
vote
2answers
26 views

Templating HTML with hidden state instead of comment or custom script tag

Javascript best practices & conventions, such as those emphasized by John Resig and by Nicholas Zachas, author of book Maintainable JavaScript, suggest using HTML comments or script tags with a ...
0
votes
1answer
25 views

IE does not append Underscore generated HTML

I am using jQuery and underscore to add HTML fragments dynamically to my page. The code works with Firefox and Chrome, but it does not work with IE. Thanks ! <html> <meta ...
0
votes
1answer
32 views

Accessing a nested DocumentFragment

I can navigate the elements perfectly fine in Chrome's console, but I cannot seem to get a reference to the nested DocumentFragment with childNodes or firstChild. Here's the code in jsFiddle: ...
0
votes
2answers
28 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. ...
1
vote
1answer
19 views

Handlebars partials name in a json

I have that handlebars template : {{#each slides}} <div class="slide"> {{> }} </div> {{/each}} Where there is {{> }} , I want to render a partial whos name comes ...
0
votes
1answer
54 views

parse.com Reference Error: user is not defined

I found this really cool site called http://parse.com. It is an online database (amongst many other things). Definitely check it out. Anyway, I believe I am one step away from figuring out how to use ...
0
votes
1answer
37 views

dojo - How to get node by Id if it has not been added to the dom yet?

I am working on a custom dojo widget that includes a Dialog. The Dialog content is loaded as text from a template html file. The issue I am having is that I need to add dom nodes to the Dialog ...
0
votes
1answer
27 views

Angular.JS apply template with tags

I have AngularJS web application and <p> in it. I want to apply template to the <p>, to the innerHTML. My template in file which in the server. Template is simple text with some tags like ...
-2
votes
0answers
15 views

Cannot place var in url from infoTemplate - esri [closed]

This is what i want to do: i need to place a var at the end of the url, but it isnt working, does somebody know what i am doing wrong, var pdf = infos[0].url; var template = ...
0
votes
0answers
14 views

jTemplates For-Loop With Step - Object [object Array] has no method 'getParent'

I'm trying to loop through an array in a jTemplates template to output a table row containing two cells, corresponding to the next two elements in the array. I'm attempting to count manually, stepping ...
-1
votes
2answers
59 views

handlebars.js doesnt render document

I ve got a problem with handlebars.js. perhaps it is totally trivial but i am also totally new in handlebars. So...here is sample code in my index.html which goes like this: <!DOCTYPE html> ...
1
vote
2answers
65 views

on/off switch with javascript in html

I have a code which has an on/off switch for disable/enable form inputs, but it doesn't works. My inputs are always off. What is the problem? <script> function DisEn(X){ ...
0
votes
1answer
26 views

Rendering Dust Template to nth child node

I am receiving a json object from the server that has tree menu data in it with nested elements and n amount of layers. I need this to be able to drill down to however many child elements their might ...
1
vote
1answer
27 views

Where to include Underscore templates?

What is the best place in the document to include Underscore Javascript templates? So far I have seen templates being included within <head> or <body> tag. What is more appropriate? Are ...
0
votes
0answers
45 views

How to include absolute URL for JavaScript, CSS and Menu Items

I'm working on ASP.NET MVC 3 web application. As a part of integration with third party application, we need to provide a master page (template) for our web application which they will use to inject ...
0
votes
1answer
33 views

What are some of the HTML templating languages that work best together with AngularJS?

It is a common scene in AngularJS to have HTML codes that look like these: /* Object Literal */ <div ng-class="{ 'active': leaving || (active && !entering), 'prev': (next || ...
0
votes
1answer
35 views

Passing Python Objects to JavaScript through Django Template Variable

I have been able to pass primitive types such as integers like this, but I would like to pass more complicated objects, such as some the Django models that I have created. What is the correct way of ...
0
votes
0answers
32 views

Jquery Template Conditional operator

I use bootstrap, and I use a JQuery template for loading my data. The structure that I want the JQuery template to build for me is: <div class="row-fluid"> <div class="span4"> ...
-2
votes
0answers
31 views

Are there any tools that warn of embedded styles and scripts in HTML snippets?

I'm looking for a tool that I can use in our build process (or as a pre-commit hook) that will detected embedded JavaScript & Style attributes & tags, and generate a report of which line in ...
0
votes
1answer
18 views

How to print some property of a model from collection in Handlebars Template?

I am using a Collection of Models in Backbone application. The requirement is to print only first models attribute in the render function using handlebars template. Is there a way to get first element ...
0
votes
1answer
21 views

How to deal with js templates duplication of server code?

I've noticed that I often duplicate razor code by making javascript templates for ajax loading. And then if I want to change serverside template I have to change js template too, what can I do to ...
0
votes
0answers
74 views

Kendo command template show/hide on condition

I know I can set values of regular data columns within a kendo grid like this: columns: [ { field: "Test", template: "#= Test? 'test successful' : 'test failed' #" } ] However, I need to set a ...
0
votes
1answer
32 views

Synergy template won't run <script> code

While working on a project that uses the Synergy template from Themeforest (see http://themeforest.net/item/synergy-responsive-interactive-html-portfolio/3054099) I stumbled upon a problem. In the ...
1
vote
2answers
30 views

How do I store JSON data in an Underscore template?

I would like to store a JSON object or string in an Underscore template. <script id="report_field_template" type="text/template"> <div data-options="<%= options %>" role="<%- ...
0
votes
0answers
58 views

Ng-include doesn't work

I have simple angular.js application. Also i have index.html as a front page of my web application, now i want to create footer.html and include it with ng-include directive to my index.html. I have ...
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
1answer
74 views

Issue with nesting helpers in meteor.js?

In my meteor.js app I have the following template: <ul class="nav nav-tabs" id="userTabs"> {{#if tabIs "editedTab"}} <li class="active"> <a ...
0
votes
5answers
66 views

Javascript function not returning a value

I have a javascript function that check for a value from a text box and the if the text box is not blank it outputs a statement. The text box take a numeric value, i want to include that numeric value ...
1
vote
2answers
67 views

how to find where template variable is coming from in meteor.js

In someone elses meteor app code they have some thing like the following: <template name="null"> {{>main}} </template> <template name="main"> {{#if some_user}} ...
0
votes
1answer
63 views

[SOLVED]document.getElementById is NULL error

I have a function that listens for onkeyup event, that onkeyup checks to see if a box has a value and if not blank is supposed pull the value of an elementID which is a phone number called from ...
0
votes
0answers
32 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 == ...
1
vote
1answer
147 views

Angular Template Default Value if Binding Null / Undefined (With Filter)

I have a template binding that displays a model attribute called 'date' which is a date, using Angular's date filter. <span class="gallery-date">{{gallery.date | ...
-2
votes
1answer
37 views

Unknown Javascript turns letters grey [closed]

I'm working on a template to make a nice website, but encountered a problem. I've set the colour of the menu text to white, but when I hover over the menu it turns the colour to grey. The template ...
0
votes
0answers
29 views

scroll bar issue on template

anyone able to help on this? so i'm trying to edit one of the pages on this template i purchased which is done in JS/HTML/CSS... i'm trying to add a disqus comment widget to one page, but the page ...
0
votes
1answer
89 views

Windows Store App (Winjs) - Template Selector (Dual Template)

i need a Grouped Listview that has two types of templates, i've reached to this: Employee.html: <div id="dualTemplate" data-win-control="WinJS.Binding.Template" style="display: ...

1 2 3 4 5 14