Looks like a bug that was introduced -- the code was CAT(INPUT(...), DIV(...), SCRIPT(...)), but the CAT was dropped, so instead of returning a helper object, it is now returning a tuple of helpers, which doesn't get serialized properly.
http://code.google.com/p/web2py/source/browse/gluon/sqlhtml.py?r=8b8109f75c844b044d580eb770efda11f65141ea#1434 -- need to add "CAT" before the "(" on that line. Anthony On Friday, April 20, 2012 5:44:08 AM UTC-4, Johann Spies wrote: > > Thanks for the bootstrap css and js in the trunk. I am trying it out and > found a problem when used with the grid: > > <div class="web2py_grid ui-widget"> > <div class="web2py_console ui-widget-header ui-corner-top"> > <form method="GET" enctype="multipart/form-data" action=" > /akb/default/journals?_signature=fb9d14a26ea79a28a314824f88ae437eb06e5c6f" > > > (<gluon.html.INPUT object at 0x44b41a10>, <gluon.html.DIV object > at 0x44b41a50>, <gluon.html.SCRIPT object at 0x44b419d0>) > <input id="web2py_keywords" type="text" name="keywords"> > <input type="submit" value="Search"> > <input type="submit" value="Clear" onclick="jQuery('#web2py_keywords').val > ('');"> > </form> > <div class="web2py_search_actions"> > <a class=" ui-button-text-icon-primary" href=" > /akb/default/journals/csv?keywords=&_signature=3426fe922790479108aaa007c8ea934a2f5f8928 > "> > <span class="ui-icon ui-icon-transferthick-e-w"></span> > <span class="ui-button-text" title="Export">Export</span> > </a> > </div> > <div class="web2py_counter">11106 records found</div> > </div> > > Regards > Johann >

