Tagged Questions
The client-templates tag has no wiki summary.
4
votes
2answers
109 views
Are there any ASP.NET template technologies which can be used both client and server-side?
Currently I'm working with ASP.NET 2.0, which may explain why I'm not as up on this as I might be. However, I don't see a full solution in my Googling of ASP.NET MVC, etc.
Here's my background ...
3
votes
2answers
1k views
asp.net ajax 4.0 client templates, how to bind a select?
I am trying to create a simple ajax grid that allows me to add and remove rows and also edit some of the columns and have others columns calculated directly based on the input in the others. I thought ...
2
votes
1answer
489 views
Calling Helper Within If Block in Handlebars Template
I am working with Handlebars.js template engine and am trying to figure out a way to do something like this (contrived example):
{{#if itemSelected "SomeItem"}}
<div>This was ...
1
vote
2answers
211 views
Did Client Templates in ASP.NET AJAX 4.0 get dropped entirely, in favor of the jQuery Templates plug-in?
I think that Microsoft dropped client templates from the AJAX Toolkit in favor of jQuery Templates plug-in. I'm trying to find full documentation on this and except for some "will do" blog posts such ...
1
vote
2answers
683 views
ASP.NET AJAX Client Templates - Jquery Equivalent
I've been looking at ASP.NET AJAX Client Templates.
My position is that I prefer to use Jquery rather than ASP.NET AJAX as I feel this will win the day in the long term.
Are there Jquery ...
1
vote
1answer
598 views
Can I return a DataTable to fill an ASP.NET AJAX Client Template?
The following Server-Side code works:
[OperationContract]
public IEnumerable<object> GetBooks() {
var people = new List<object>
{
new ...
0
votes
2answers
29 views
Making a copy of markup from the DOM
I am working on a ASP.NET page that has a button clicking on which adds a new section of markup for the user (A section of markup is a combination of dropdown list, textbox and textarea). A user can ...
0
votes
2answers
102 views
Emitting Javascript from jquery templates
i want to emit some js from jquery templates e.g i have template like
<script id="tmplID" type="text/x-jQuery-tmpl">
<input id="static.${val}" type="text"/>
<input id = ...
0
votes
1answer
151 views
Does ASP.NET AJAX 4.0 tout client-side templating with the jQuery Templates plug-in?
I am a little lost on what happened with ASP.NET AJAX 4.0 with regard to the push for client templates with the jQuery Templates plug-in (which is still in beta) and/or whatever proprietary flavor of ...
0
votes
1answer
289 views
Binding to text box value property fails in Microsoft AJAX Client Templates beta release
The following code should bind the "value" property of the text box to the string "Test".
Instead the binding expression "{{test}}" is left unparsed as the text box content.
The binding expression ...
0
votes
2answers
766 views
Asp.net Client Templates -
Is it possible to re-use a client-template using asp.net ajax 4.0 client templates? I have a scenario as shown in the example below. I have two questions here:
I could not get the if conditionwork ...