EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: rezzonico on November 05, 2018, 12:44:08 PM



Title: span a form over two tabs
Post by: rezzonico on November 05, 2018, 12:44:08 PM
Hi all,

I have a problem with a form that span over two tabs.

In the following code (without the "form" tag) the tabs are displayed correctly (in percent width as I need):
http://195.144.40.170/jeasyui/PPP.5/file1.html

But after adding the "form" tag the tabs are not displayed correctly:
http://195.144.40.170/jeasyui/PPP.5/file2.html


Any help is appreciated.
Thanks.
Miche


Title: Re: span a form over two tabs
Post by: stworthy on November 06, 2018, 01:15:35 AM
Add the CSS code to your page.
Code:
   <style type="text/css">
    html,body,form{
      height: 100%;
    }
   </style>


Title: Re: span a form over two tabs
Post by: rezzonico on November 06, 2018, 06:48:15 AM
Thanks !
Miche