client-templates

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 Book{ Author="Richard Preston", Title="The Hot Zone"}, new Book{ Author="Jim Norton", Title="I Hate Your Guts"} ...

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 in client-template How can I re-use the u l tag template for three types of "column" data (col1, col2, col3 in example json)? sample c...

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 this would be a nice oppurtunity to play with asp.net ajax 4.0 and the client templates. It works pretty ok but I can't seem to find a way...

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 plugins/functionaility that provide the same kind of help for rendering that client templates do in ASP.NET AJAX? ...

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 within the sibling element is parsed correctly however. <html> <head> <title></title> <style type="text/css"> .sys-templa...

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 thinking. Firstly, data-bound templates are really useful. I'm currently dealing with lots of legacy code whereby people are building up control...