I am new to web2py and have been writing a CD and DVD database
collection software.
I am currently wanting to list some 3000 records in a jqgrid table. I
am currently calling the jqgrid like this:
controller:
def view_records():
return dict(records=plugin_wiki.widget('jqgrid',db.catalog))
view:
view_records():
{{=records}}
The table shows up okay and the headers show up fine as well. However,
no data is displayed and I get this error in firebug:
"uncaught exception: Error: missing = in XML attribute"
Is my data not formatted correctly? I don't think they contain any
special characters.
Thanks,
dlord