diff --git a/VERSION b/VERSION index 9c1b22b7..c7df7c23 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.5-stable+timestamp.2013.04.06.10.13.58 +Version 2.4.5-stable+timestamp.2013.04.06.11.12.40 diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index c38047be..32c1b9ae 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -2384,7 +2384,9 @@ class SQLFORM(FORM): tr = TR(*trcols, **dict(_class=classtr)) tbody.append(tr) htmltable.append(tbody) - htmltable = DIV(htmltable, _style='width:100%;overflow-x:auto') + htmltable = DIV( + htmltable, _class='web2py_htmltable', + _style='width:100%;overflow-x:auto;-ms-overflow-x:scroll') if selectable: htmltable = FORM(htmltable, INPUT( _type="submit", _value=T(selectable_submit_button)))