Tagged Questions
The jtemplate tag has no wiki summary.
13
votes
2answers
861 views
What is the best current Javascript templating engine? [closed]
So there are a bunch of older questions on this topic that point to a number of options available. These two questions for example are some of the most answered on the topic:
What good template ...
4
votes
1answer
815 views
jTemplates vs jQuery Templates. Which is one better? Is there a better?
I've seen that Microsoft has created a official jQuery Template plugin for jQuery. But also jTemplates from what I've read is pretty popular. I didn't know if I should not bother with jTemplates and ...
3
votes
4answers
639 views
Best way to reorder dom elements based on json data
Once I create dom elements base on json data with jtemplates, what is the best way to reorder those elements based on changes to the json data (sorting, filtering, etc.).
3
votes
4answers
4k views
How do I prevent scrolling to the top of a page when popping up a jQuery UI Dialog?
I currently use jTemplates to create a rather large table on the client, each row has a button that will open a jQuery UI dialog. However, when I scroll down the page and click on one of those ...
2
votes
1answer
448 views
jTemplate and MicrosoftAjaxTemplates problem with encode or decoded html (browser not render as html)
I using jTemplate for showing rss item in my page. but description of each item not render right.
My Template is:
<table>
<thead>
<tr>
<th>Date</th>
...
2
votes
1answer
268 views
JTemplates serialization
I've been working with the JTemplates plugin which I've used to create a form that is bound to a json object via a template. Works perfectly. What I would like to do though is instead of submitting ...
2
votes
2answers
809 views
JTemplates format Date using asp.net mvc
I have the following JSON date returned from a MVC page e.g.
"DateProcessed":"\/Date(1258125238090)\/"
and I am using JTemplates to process the data as below.
...
2
votes
5answers
1k views
jTemplates escape {$
is there a way with jTemplates to escape {$, so i can use inline javascript in my onBlur like
<a href="http://www.telegraaf.nl" onclick="if ( a ) {$('#something').css ...
1
vote
0answers
27 views
Object notation in custom JavaScript code in jTemplates
I'm using jTemplates jQuery plugin and I have a JavaScript function that accepts an object as an argument. I'm calling this function from my template and trying to pass a parameter in the following ...
1
vote
1answer
21 views
How to allow Visual Studio Validate {$Something} in html editor?
In Visual Studio HTML Editor (aspx webform / mvc) i have some code:
<tr id="${PropertyKey}">
<td title="DataModeHtml">
<input type="checkbox" ${DataModeHtml} ...
1
vote
1answer
60 views
How does jTemplate perform?
I'm working on a website that I plan to have a lot of JSON/AJAX generated lists (kind of like a social networks news feed). How does jTemplate work with this kind of situation? Is there a better ...
1
vote
1answer
60 views
Browser making unwanted request in script tag
I've been supplied some code from a 3rd party supplier to integrate on some of my webpages, which uses the Jquery plugin for J-Templates. Code looks similar to this:
<script type="text/html" ...
1
vote
2answers
299 views
Compositing Multiple Templates in jTemplates
Using jTemplates, it is possible to composite templates like so...
<textarea id="templateList" class="template"><!--
{#template RESULTS}
This a template for generating a list of ...
1
vote
1answer
155 views
Basic jTemplate not working
I'm using jTemplate & jQuery to query a .net Web Method, then display the results in a webpage.
Shown below is the HTML where it all happens, the DIV with the class Template is my template. Then ...
1
vote
2answers
421 views
JS inside the template
I'm trying to include some javascript code inside a template.
The code of my html page :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
...
1
vote
1answer
123 views
jTemplate currency with 2 decimals
I need to display a currency within a jTemplate.
{parseInt($T.product.Details[0].Price).toFixed(2)} displays as 34.50, but i should be displayed with a comma like 34,50.
I tried several functions ...
1
vote
1answer
310 views
JTemplate template missed elements
I have this template:
<ul id="warningMessages" style="text-align: left; padding-left: 4px;">
{#foreach $T as msg}
<li>{$T.msg.Value}</li>
{#/for}
</ul>
When ...
1
vote
2answers
832 views
jTemplates: html in variables
I'd like to include some html in a jTemplate variable - e.g.
<td class="numeric">{$T.total_price}</td>
Where total_price is:
"$12<span>.00</span>"
Is there any way I can ...
1
vote
2answers
2k views
Using jTemplate with ASP.NET MVC
In this article, Dave Ward describes how to use the jQuery plugin jTemplate to create what he calls a "client side repeater", that parses JSON data into a template on the client side.
Toward the end ...
0
votes
0answers
39 views
Get the value from hyperlink and other cell value by jTemplate jquery plugin
i am using jTemplate jquery plugin to build a client side grid . However how can i get the value by clicking the selected hyperlink ? On other hand , how can i get the value from other cell also ? for ...
0
votes
1answer
31 views
qtip plugin doesn't work with jquery jtemplate plugin
I'm using ajax to load data.
With help of jquery jtemplate I load data within Container. I need to apply jqtip plugin to images withing Container, but for some reason it's not working. if it outside ...
0
votes
1answer
19 views
Paging in JTemplate
I am using jTemplate on php page. Is there any paging feature in jTemplate? Or Do I need to do it myself? Thanks in advance.
0
votes
1answer
36 views
JTemplate - Reference javascript property 'field1' using index from {#for]
Is it possible to refer to a javascript property in a JTemplate {#if} by dynamically creating the property name using the index from a {#for} loop?
Example:
{#for i = 1 to 5}
<tr>
...
0
votes
1answer
69 views
Passing an associative array to JTemplate as a parameter.
I've created a JTemplate to display an array of "test" objects. The array is a regular indexed array. The template is very basic, just uses a {#foreach} to iterate through the items in the array and ...
0
votes
0answers
41 views
Error Processing Jtemplate [closed]
Its possible to process this jtemplate? I have a object with two tables, then a need processa a template inside other. Any sugestions?
{#template MAIN}
<table>
...
0
votes
1answer
106 views
Get TextArea input on HTML-Page with ASP.net
using jTemplate I have a HTML-Page in my asp.net 4.0 project. On this HTML-Page I have a text area and a submit button. How could I get the entered value into my asp.net application when the user ...
0
votes
1answer
102 views
Why does my jQuery function on jTemplate populated items fail?
I found this link to populate some data dynamically using jQuery, jTemplates and AJAX. I used it to list all the product categories from a database.
What I want is to populate another list that ...
0
votes
0answers
43 views
jQueryUI: drag-drop between jTemplates in dialogs?
I want to drag items from my jQueryUI dialog #1 to #2, without removing it in #1 and trigger some event when dropped on #2 before actually putting it in #2. What course of action do you suggest? Is it ...
0
votes
2answers
710 views
pass database value as parameter into a Javascript function using jTemplate in ASP.NET?
How to pass database value as parameter into a Javascript function while using jTemplate + jQuery in ASP.NET?
<td>
<a href="#" title="Click to edit" ...
0
votes
1answer
739 views
How to use jTemplate's $P parameters within a {#if} condition
Is it posible to use jTemplates $P.imagesPerRow parameter inside the {#if} condition?
It raises "Uncaught 12" exception for me.
{#foreach $T as record}
{#if $T.record$index % {$P.imagesPerRow} ...
0
votes
2answers
143 views
Problem with JTemplates in chrome
I have a template which consists textarea inside template. In IE, firefox browsers, it is working fine but in chrome it is not working. If i remove textarea inside the template, then its too working ...
0
votes
1answer
224 views
Persisting textbox value using jQuery
I'd like to save the newly entered values, so I could reuse them. However, when I try to do the following, it does not work:
// el is a textbox on which .change() was triggered
$(el).attr("value", ...
0
votes
1answer
264 views
jtemplates append instead of overwrite
I'm using jtemplates (jquery plugin) as my templating solution which rocks by the way! I replaced my asp.net updatepanels with this and my god what a speed booster. The problem I have however is that ...
0
votes
3answers
132 views
What is the correct way to save hidden data on a table?
I use the jTemplates plugin to load data on my tables. Because there are some properties I do not display yet I want available for later use, I save them in hidden fields and then grab them by their ...
0
votes
2answers
258 views
Error with jtemplates with tables
I am using jtemplates with jquery and getting an error when I try to use tables in the template.
Following is working
<ul>
{#foreach $T as record}
<li>{$T.record.FirstName}</li>
...
0
votes
1answer
264 views
JTEMPLATE process template is undefined on pageload
I have a java script which i am using to pass data to a jtemplate .
but on page load the processTemplate gives me an undefined error. But when i refresh the page it is working fine.please solve this ...
0
votes
2answers
119 views
Jtemplate Accessibility question
Hi all the Accessibility experts,
I use jtemplate in my website and have issue to pass w3c Web Accessibility.
The issue is that jtemplate (well, not only jtemplate but most of other client template) ...
0
votes
3answers
344 views
Why does the HTML in my JSON response get encoded?
I'm using this blog post as a guide, detailing how to use jQuery with jTemplates to stuff a JSON response into a template.
My problem is, one of the returned fields (named Description) contains HTML, ...
0
votes
2answers
578 views
How to update a table row with save button using .ajax
I have a table which has one row and only one cell will be editable. I have accomplished this with the following code.
$("td#effEndDate").click(function() {
if ...
0
votes
1answer
324 views
jQuery Autocomplete & jTemplates - handling response
Has anyone had any experience with using jTemplates to display autocomplete results.
I have the following
$("#address-search").autocomplete({
source: "/Address/SearchAddress",
minLength: 2,
...
0
votes
1answer
148 views
Does jTemplates foreach preserve the ordering of the collection?
My collection is ordered alphabetically, but when I assign the collection and load the html using jquery jtemplates, things are coming out un-ordered.
{#foreach $T.results as r}
...
0
votes
3answers
103 views
HTML image display
I have an html file where i am loading images from an xml file in to it. i am using jtemplate for that. I am getting the images properly.but i want to display them horizontaly those are coming as ...
0
votes
1answer
221 views
How to reference a specific object in an array of objects using jTemplates
I am using the excellent jTemplates plugin to generate content.
Given a data object like this...
var data = {
name: 'datatable',
table: [
{id: 1, name: 'Anne'},
{id: 2, name: 'Amelie'},
{id: ...
0
votes
1answer
374 views
jQuery tabs error when used with jTemplates
I am using jTemplates to format data returned from a json query. I am trying to transform the div with the id "fundingDialogTabs" into jQuery tabs after the template is processed. It renders the tab ...
0
votes
2answers
458 views
Function not found in jTemplate
I'm having a weird issue with a function I'm trying to call from within a jTemplates template giving the error "XYZ.getFriendlyName is not a function". It seems like I must have overlooked something ...
-1
votes
2answers
189 views
Named templates in jTemplate?
Is there any way to have multiple templates, and tell jTemplate which one to use? All examples I've seen always start with a template called MAIN.
I would like to put this into one template file:
...