Re: [web2py] ajax list/detail view design pattern

2010-03-04 Thread Thadeus Burgess
I hand write html, and use tr id="123" or tr record_id="123" and use jQuery("tr").click(function(){$(this).parent().attr("record_id")}) -Thadeus On Thu, Mar 4, 2010 at 10:56 AM, snfctech wrote: > I am fond of a design pattern whereby a list of records (such as > orders) is displayed in the

[web2py] ajax list/detail view design pattern

2010-03-04 Thread snfctech
I am fond of a design pattern whereby a list of records (such as orders) is displayed in the top part of a view and the detail for a highlighted record is displayed in the lower part of the view via AJAX onclick (such as the customer and product details for the order). I like web2py because I want