JsRender: Next-generation jQuery Templates

learn more… | top users | synonyms

1
vote
1answer
25 views

Render multiple JSON objects using jsRender

I want to return data that consists of a JSON object with two sub objects. On the client I want to be able to use a jsRender {{for}} construct to loop through only one particular object at a time. I ...
1
vote
1answer
23 views

Why can't TR be a direct child of TABLE in JsViews?

I've created a complex template using JsRender with a bunch of nested tables. Now I'm transitioning to using JsViews so that I can take advantage of data-binding+incremental DOM updates (so that I ...
0
votes
2answers
32 views

Bootstrap modal dialog not displaying inside jsRender script template

I'm trying to use Bootstrap with jsRender. For the most part my data is being displayed correctly. I'm just having trouble displaying the data inside a Bootstrap modal dialog. I have the following ...
1
vote
1answer
34 views

Render data doesn't work in just one device

At some point of my application I'm using jsrender to render some data into a listview like this: alert("getData1"); var generatedHtml = $("#itemTemplate").render(data); alert("getData2"); I'm ...
-1
votes
1answer
40 views

Bind events inside jsrender template

All my links .delete and .editRight within addedTemplate isent working. All the same links outside works just fine. $(document).ready(function () { AjaxGetAll(); $(".delete").on("click", ...
1
vote
1answer
46 views

Style a div using jsrender based on data

I'm using jsrender template engine to render a listview, but I don't know how could I set de background color of a '' based on a field of my data... The data have the following format: ...
0
votes
1answer
54 views

In jsRender, how can you access element you're updating?

I'm using jsRender for the first time and I can't find much in the way of full documentation. I'm populating a grid using this template - <script id="my-grid" type="text/x-jsrender"> ...
0
votes
1answer
26 views

jsViews - display custom properties in object list

I have some data that I want to output using jsViews. The case is that objects in data array can have different set of attributes/columns based on some conditions. I store those attributes names in ...
0
votes
0answers
28 views

inline conditional statement in jsrender

Just a quick one, cant seem to figure out why this doesn't work: list : '<div id="{{>id}}" class="gridRow cf">' + ' <div class="threeCol"><img src="{{>image}}" ...
0
votes
2answers
22 views

jsonp data to rder html tag as html

hello I have json object as follows .. [Object { Address="Space Hall <br/> GSBS Ground", EventStartDate="4/12/2013 12:00:00 AM", EventEndDate="4/12/2013 12:00:00 AM", more...}, Object { ...
0
votes
3answers
49 views

JsRender Access parent index in nested template

I have a problem with accessing parent index in nested template. Trying to send #index as parameter in a template, but it doesn't work (http://jsfiddle.net/Xsrdb/). <script id="firstTemplate" ...
0
votes
1answer
56 views

Possible jsviews bug with {^{if}}

In the example below, if I add several guests and then remove the 1st guest the entire guest table disappears and never reappears even though the Guest[] in not empty. Is there something wrong with ...
0
votes
1answer
15 views

parsejson rendering through template in javascript

I have parseJson object as follows... parseJSON([ ...
0
votes
2answers
63 views

JSRender is not showing the value of JSON object

I'm having issues rendering an AJAX response into a JSRender template. I'm making a $.getJSON call and on success I call the render(data) function I'm using the console.log to make sure that the data ...
0
votes
1answer
67 views

JSRender: How do you compare a variable in an if statement?

My question is probably pretty basic, but how do you compare a variable you set to a value? {{setvar "currentDate" 0 /}} {{for Data}} {{if :~getvar("currentDate") > 5}} <div ...
0
votes
1answer
49 views

jsRender optional model properties

I'd like to have my jsRender templates optionally include an "options" property to provide optional fall-backs if a property is not included; specifically rendering one element if the "options" ...
0
votes
1answer
95 views

How to create a select list using jsRender?

I'm using jsRender and want to create a <select> tag which lists numbers for 1 to 10. I'm getting the index I want to select from model. i.e to create a dropdown like this: <select ...
2
votes
2answers
84 views

How to set comment in jsrender

When I use jsrender template engine, I want to put some comment in code, but I couldn't find tag for comments. I know that I can use html comments, but I don't want those comments to be rendered on ...
0
votes
0answers
87 views

Custom HTML form templating

I have a requirement where I need to convert a html form to a PDF document using a service. The purpose of this service would be to just convert a given set of data in XML and apply to a custom HTML ...
0
votes
2answers
47 views

Including a template in JsRender

I am using JsRender to construct my HTML page and I would like to be able to achieve the following. <script id="qtype" type="text/x-jsrender"> <li class="question-container" ...
0
votes
0answers
44 views

JSRender version v1.0pre rendering null and “” values

How do I render null and "" values in JSRender?
0
votes
1answer
28 views

jsRender - Is it possible to pass a template markup to another template?

I want to use, for example, a {{for}} tag as follows and pass it an inline template: {{for persons tmpl="{{>firstName}} {{>lastName}}" /}} where var person = [{firstName:"John", ...
0
votes
1answer
78 views

Using jsviews with array lengths

I have this model: var taskGroups = [ {name:"Notepad", tasks:[]} ]; My goal is to display each taskGroup in a list in the following format: {Name} {numOfTasks} If the taskGroup has an empty ...
0
votes
1answer
110 views

Correct syntax for binding to a form in jsviews (commit 26)

I am experimenting with Boris Moore's jsrender/jsviews libraries and am using the current version at the moment (commit 26). (I realize the API is in flux but would like to practice using it) I've ...
0
votes
2answers
75 views

Embedding a jsRender template without {{for}} or combining inline + block templates

I'm using the current latest jsRender (as of 12/02/2013) and I'm trying to componentise templates so I can render a nested object model. I want to be able to either; 1. pass a parameter to my ...
4
votes
1answer
121 views

is it possible to have a for loop in JSRender with incremental variable i?

i have template (an html file) with is getting renders with JSON data using JSRender. My Sample Template is as follows <ul id="membersList"> {{for UserConnection}} <li> ...
0
votes
1answer
31 views

What jsRender tags accept tmpl?

I know that for and if accept the template via tmpl. Does else? Any other statements accept tmpl?
0
votes
1answer
74 views

How use logic operators in jsrender

I have {{if name && secondName}} {{=name}}/{{=secondName}} {{/if}} but this not worked. I catch error Uncaught SyntaxError: Unexpected token && That I do wrong?
0
votes
3answers
112 views

How check variable for empty

I have template this a part: <td>{{=name}}</td>] I need check name of null/empty and not display it. How do this? example: {{#if ($name!= "" && $secondName!= "") }} I get ...
0
votes
1answer
131 views

jsrender - How to pass javascript literal object to a custom tag?

Is it possible to pass a javascript literal object to a custom tag in jsrender? for example something like this: {{tag parameter={width: 200, click: function(){ ...
0
votes
2answers
131 views

Multiple Templates in one file JSRender

I want to keep multiple templates in one external template file. But i dont know how to get one template from the whole file
1
vote
1answer
94 views

jQuery - Ajax to jsRender failed [closed]

I have a function called UpdateBoatTable, which is supposted to update a HTML Template via jsRender. The function looks like following: $.fn.UpdateBoatTable = function() { $.ajax({ url: ...
0
votes
1answer
181 views

jsRender template for table containing variable-length elements

I have a simple View Model that has the traditional one-to-many relationship: Customers have Orders. I'm creating a table such that each line has a Customer name with a line of Orders following it. ...
0
votes
1answer
23 views

How to make a template private to a custom tag

I see that there is a syntax to have a helper that is private to a template but is there a syntax for the opposite? I have a tag that uses a specific template and that template (logically speaking) ...
0
votes
1answer
283 views

Access parent item inside a loop in jsrender

<select id="Test" TestAttr="{{:LocationId}}"> {{for #parent.parent.data.Location}} <option value="{{:LocationId}}" {{if ...
0
votes
1answer
47 views

what is the logical OR syntax in JSRender?

i have two boolean variables "IsOwner" and "IsModerator" (ofcourse which can be either true or false) and i tried it as follows {{if IsOwner || IsModerator}} some code here {{/if}}. But this seems to ...
0
votes
0answers
72 views

Access jsrender data within javascript within an external template

If I have an external jsRender template similar to: <--! External template starts here --> {{:MiscDataPoint}} <script type="text/javascript" language="javascript"> // Is ...
0
votes
3answers
720 views

JSRender: Any good documentation for JSRender

we are using JSRender in our app which is a socail networking app. i have discovered that JSRender is very new in market and doesnot have a good documentation yet..... If anyone has any infor where to ...
0
votes
1answer
161 views

How to iterate through nested arrays with jsredner

I have the following json: [ { "Name":"Billy in the Lowground", "Key":"A", "chords":[ [ "G", "", "D", "" ], ...
0
votes
0answers
168 views

jsrender - Rendering hash data

I am fairly new to jsrender, and I've run into a problem that I haven't been able to find a good example to help me get through it. I need to render a simple HTML table from a JSON data feed, but I ...
1
vote
1answer
212 views

Visual Studio 2010 syntax highlighting for JsRender

Is there any way to get HTML syntax highlighting working for JsRender templates (as part of an aspx file) in Visual Studio 2010? My aspx files typically look like this: <%@ Page Title="Home Page" ...
1
vote
1answer
139 views

JsRender: A template in a template

I have an issue with templates inside of templates in jsrender. Or rather, it actually does work, as long as I have it in script blocks on the page, like so: <script id="template_1" ...
1
vote
1answer
119 views

jsRender and node.js

I am a complete beginner with node.js. What I try to do is to parse a jsrender template on server side I donwloaded jsrender.js from git this is my attempt ... saved as render.js: var data = [ ...
2
votes
1answer
163 views

How to keep helper function generated HTML tags for JsViews

In JsRender[1] I have the custom tags {{tag data /}} to generate part of my page. According to http://borismoore.github.com/jsrender/demos/step-by-step/03_converters-and-encoding.html it is possible ...
0
votes
2answers
421 views

jsrender check if a string is empty “”

I want to find out whether a string is empty or not i am trying to do {{if closedOn != "" }} but it is not giving me proper output
1
vote
1answer
164 views

JSRender with typescript

Is there any JSRender typescript implementation out there? I want to call .render() method from a typescript file but don't have a typescript implementation of JSRender.js Any ideas guys? Thanks
1
vote
1answer
646 views

jQuery.append, type input, and Windows Store App (HTML/CSS/JS)

I have this Window Store App where I'd like to add some markup dynamically, and my problem can be boiled down to this: Working $('.some-element').append('<input ...
1
vote
2answers
125 views

how to bind mouseover, click events on element inside jsrender template

I am using jsRender and want to bind events like click, mouse over on elements that get render inside the template. while binding the event , I want to pass the data as a argument. Example : ...
1
vote
2answers
192 views

pre-compiling jsrender templates

I have a couple of jsRender templates that are used on all pages. Instead of using the script tag method, I would prefer to precompile them and put resulting functions in an external js file. I saw a ...
0
votes
1answer
87 views

Updateable jsRender template

After the template is rendered i need to make changes based on a field inside the template. Here I have done a not working example : http://jsfiddle.net/DrZ25/3/ jsRender renders the template and ...

1 2 3