Hello everyone,
I want to display dynamic information under a table row entry. I want
the information to toggle if you click on the entry in the table (I
want to use jQuerys toggle for that).
for row in rows:
table.append(TR(\
TD(row.severity.severity),\
TD(row.status.status),\
TD(row.events.datetime_submitted),\
TD(row.events.host),\
TD(row.events.message),\
_id=row.events.id, _class=row.severity.severity,\
),\
)
pass
How can I achieve that I the additional information is shown in a
field under the entry?
My problem is that I use the jquery datatables class which makes the
table sortable. I tried to add a DIV under each TR but that was no
success.
Can someone please help me out with the HTML/CSS needed?
Thanks
Sebastian
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---