jQuery templates is a plugin written by the Microsoft ASP.NET team in collaboration with the open-source jQuery team to enrich the UI from a data context.
0
votes
1answer
36 views
Input text is not working in jQuery template when click event is enabled on iPhone
I have a jQuery template in below structure.
<div class="parent-class">
<div class="sub-class">
<div clas="sub-input-class">
<input type="text" />
...
2
votes
0answers
33 views
Editing a variable length list ASP.NET MVC 3
I have a problem with my EditorFor. I have the following model
public class AddNewItemViewModel : BaseViewModel
{
...
public List<ItemDetailViewModel> ItemDetails { get; set; }
...
0
votes
1answer
40 views
Jquery template generated HTML coming outside the tag
<ul class="messagesList ifClicked">
<script id="questionsTemplate" type="text/x-jquery-tmpl">
<li>
<span ...
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">
...
1
vote
1answer
34 views
Alternative to JQuery Templates
Recently searched for an alternative way to mount dom structures in a better manner that the usual jquery's manner. Found this jquery template.
Is this being developed yet? The documentation is ...
0
votes
1answer
72 views
Knockout with jQuery tmpl rendering unparsed templates
I referenced the jQuery tmpl like this:
<script src="../../Scripts/jQuery.tmpl.js" type="text/javascript"></script>
Furthermore, I referenced KnockoutJS like this:
<script ...
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
16 views
How to referencing data objects in jquery template?
I have the following jquery template:
{{tmpl(MigSpecialists, RelData.ASSIGNED_MIG_SPEC) "#TMPL_Specialist"}}
&
${MIGR_SPECIALIST_NAME}
During runtime, I have the following error:
...
0
votes
1answer
91 views
jquery tmpl function inside IF statement
I've got the following tmpl
{{if (${this.getFileLimit()})}}
<div class="files_wrapper">
<div class="add-files">Click to add items</div>
</div>
{{/if}}
And the JS Code:
...
0
votes
0answers
43 views
jQuery template: Creating a conditional statement with OR operators on string
This works:
<div class="cmnBoxCmprePop">
{{each HAName }}
{{if HAName == 'Swimming Pool' }}Yes{{/if}}
{{/each}}
</div>
This doesn't ...
0
votes
1answer
32 views
Jquery Template : Can we use string.Compare() or any other alternative with {{if }} statement
{{each HAName }}
{{if HAName.Conatins('Bar')}}
Yes
{{/if}}
{{/each}}
</div>
I ...
0
votes
1answer
35 views
Backbone templates getting started: How to go from append() to using a template
This is a very basic question on how to get started using templates. This is literally my first time using backbone so any additional pointers on how to improve my code are appreciated:
example is ...
0
votes
0answers
52 views
For Each issue in jquery template
First see my all code
{{each RoomTypeName}}
<tr>
<td> ${$value} </td>
</tr>
{{each(i) RoomName}}
<tr>
...
-2
votes
2answers
92 views
How to set return true in if condition [closed]
Hello,
so I have one if condition in jquery templates
{{if (i) > 5) }} return true {{/if}}
{{/each}}
For some reason this code does not work. So I don't know how to return the ...
1
vote
1answer
165 views
Jquery Template not aligning
I have a one html table .
<table id="blogPostContainer">
</table>
I was append some values in this table using signalR and tmpl .
$.connection.hub.start().done(function () {
...
2
votes
1answer
28 views
Covert Table data to Array (formatting)
I am working in signalR . I called one method from my controller used signalR . My method name is getAllDates().
Please see below for looking my code
$.connection.hub.start().done(function () {
...
0
votes
1answer
88 views
Jquery template not accepting dash (-)
I have following code. where i'm using the Jquery template but it is not accepting - (dash) in class-no. I'm getting an error Uncaught ReferenceError: no is not defined. Is there any solution for this ...
0
votes
0answers
144 views
Get the name of an enum in jQuery
I have the following jQuery template, which I want to display a drop down list for all the values in an enum. I can get the numeric value of the enum, but not the name. Is it possible to get the name? ...
1
vote
1answer
1k views
Where is the jQuery template documentation?
I cannot find the jQuery template documentation or plugin from jQuery site.
Can anyone tell where they are located ?
I tried searching, but I couldn't find the documentation.
It seems the jQuery ...
1
vote
4answers
162 views
JS: pass variable onclick
I'm trying to pass a variable to a function, I know there are many topics about this, and I've nearly tried all suggestions, but still can't get it to work, these are my attempts:
edit: without the ...
0
votes
1answer
47 views
Is there a way to change a global variable on the document in the call back xmlHttpReq.onreadystatechange?
I am pretty new to the AJAX thing, but now I want to set some value to a global variable on the document based on status changed in the call back function xmlHttpReq.onreadystatechange, I used ...
0
votes
0answers
69 views
Syntax error of conditional in JQuery template
I want to do some kind of data-driven GUI using conditional in Jquery template, but for the following code part:
<script id="resultTemplate" type="text/x-jquery-tmpl">
<li>
...
1
vote
0answers
36 views
rowspan is removed when using dataview in IE
I have the below template
<ul class="sys-template" id="visitingCard">
<li id="{{UiId}}">
<div class="profiles">
<div class="profile">
<table border="1" ...
1
vote
2answers
123 views
Render < as text instead of < or > as it is not > in jquery template
I have a text <script>alert('injection');</script> which I want to render as it is in the view which is rendered as jquery template in ASP MVC3 application. But < is ...
1
vote
1answer
34 views
Is it possible to instantiate and cache a jQuery Template as a javascript object?
Thanks for looking!
Background
I realize that jQuery templates has been set aside for some other shiny objects, but I am obligated to using the framework on my current project anyway.
I am writing ...
0
votes
1answer
146 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 ...
1
vote
1answer
104 views
Jquery Tmpl If Statement not working
I'm using jquery tmpl plugin. The idea is to add a class to an img tag if the statement is false.
Here's the template code:
<img src="/assets/${assetId}/graphic.jpg" {{ if complete != true }} ...
3
votes
2answers
159 views
Why should we wrap our templates inside script blocks?
Background
All the JS template engines recommend putting your template text inside script blocks like so:
<script id="peopleTemplate" type="text/template">
{#people}
<div ...
0
votes
1answer
99 views
How to check if a value is in an array, inside an if condition, in jquery templates?
I have a jQuery template and I need to check the checkboxes in a list whose value is inside the array. I'm trying the following code, but it's not working:
{{each loginProvidersList}}
{{if ...
0
votes
0answers
71 views
How to get json in jquery template
I'm making a template that loops over a json collection. In a hidden object I want to store 2 things, the orignial json and the index. Is there any way to get this data in the template?
<script ...
0
votes
0answers
87 views
How to Use a Jquery template when there is Recursive looping in json Object?
Hi all can any one help me converting the below methods into template i have ajax function which retruns me an complex object which has to be recursively looped for now i have been doing it through ...
0
votes
0answers
113 views
How to Recursively loop Json data in a Jquery template?
I have a complex JSON object which can have n-level children. How can I recursively loop this object in my template? I have template called template.html
This is what my json object looks like:
...
0
votes
1answer
126 views
Knockout nested foreach with templates not working as expected
I tried to do jsFiddle, but it complained about the template script, but below is a complete example you can put into a .html file and view locally.
<html>
<head>
...
0
votes
0answers
54 views
How to access complete data from template?
Ok. I'll try to be as clear as I can!
I have the following JSON in JS:
var json = {};
json.data_1 = json_1; //json_1 could be also a JSON or just a value
json.data_2 = json_2; //same as above
...
0
votes
1answer
118 views
Jquery knockout - define variables inside templates
I have a knockout template, in which i want to define a local parameter (which is a result of a function), and use it inside the template.
<script type="text/html" id="suggestedEmail-template">
...
0
votes
1answer
164 views
Populating table rows from an observableArray using Jquery Templates
I am using knockoutjs v1.2.0 and Jquery Templates. I would use data-bind: foreach etc but I found out it only appears from v2.0.0 of knockoutjs. So I'll have to go with jquery templates.
My aspx file ...
0
votes
1answer
48 views
Stop KnockoutJS from using jQuery.tmpl
I'm adding Knockout to specific section of a large application. Other parts make use of jQuery Templates (and it's embeded in a base JS file), so it's on the global jQuery object and I cannot remove ...
0
votes
0answers
40 views
Displaying html using jquery tml and knockout
I have to display some rows like
New someValue
A someValue
B some Value
For this I am doing,
$("#Revisionsbody").dataBind({ template: "{ name: 'RevisionaTemplate', foreach: RevisionsList});
...
0
votes
0answers
13 views
jquery templates for a columns descendant on a row
I know jquery templates in which rows are descendants of a column. Nut i want to develop a templates in which columns are descendants of a row.
Like:
NAME xyz abc sss
ID 1 2 3
...
0
votes
1answer
86 views
How to generate N X N table using jquery templates
I have to generate N X N table
suppose if I give N as 5, it should create a table with 5 rows and columns.
My first plan to create an HTML in a foor loop, but I believe that using jQuery templates , ...
0
votes
1answer
64 views
Not able to load template in HTML
I am trying to load my template in html. But it give me some trouble in loading content of template in my div element. It gives me Uncaught TypeError: Object has no method 'appendTo'
temp.html is ...
0
votes
0answers
104 views
How to Use split in jquery templates?
Hi all i have a jquery template
PRODUCT_TMPL: " <li id='${uri}'><div class='pr_img'><img id='${ProductId}' src='${ThumbNailImage}' ...
1
vote
4answers
2k views
Where do I find MVC4 templates for download and how do I install them?
I am somewhat confused. Searched a bunch of ASP.NET related sites but could not find the answer. I must be missing some search word..
I want to find a gallery of MVC4 templates (free/cheap) and apply ...
0
votes
2answers
256 views
Can't run html on text string in JQuery tmpl
In a JQuery template in my project, I am trying to write out a variable which is an HTML string without encoding the HTML. When I just output the variable like so:
${description}
it results in ...
0
votes
0answers
141 views
Get Data from Jquery Template
Hi All i have built an text editor to help me learn more about javascript and jquery, i am trying to add a ajax image uploader, the uploader uses a jquery template, i have added the following to the ...
0
votes
0answers
47 views
JS template engines - pros/cons [closed]
Can you share your thoughs about is JS templates good for web projects for frontends or would be better to use server-side templates something like mako or jinja2.
At the moment we uses PURE ...
0
votes
1answer
129 views
Template not working with JSON / Mustache.js
I am currently running into trouble with Mustache.js templates. Everything seems to be correct, and the template loads as HTML on the page. But it doesn't have access to the JSON data and I'm not ...
0
votes
1answer
88 views
Using my Helper(Razor syntax) inside a JQuery-template?
Is there anyway to use Razor inside of JQuery template!?!?
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i ...
1
vote
0answers
87 views
jquery template create new row every nth item
data from server structured like:
var projects= [
{
name: 'project 1',
hours: 1,
},
{
name: 'project 1',
hours: 2,
},
...
0
votes
2answers
151 views
jQuery template, read data clicking a button tmplItem()
I got a jQuery template (https://github.com/jquery/jquery-tmpl) and a Object() that contains two lists.
<!-- HTML -->
<table>
<thead>
<tr>
...



