|
Title: Problem with input forms and tabs Post by: Rinat on August 03, 2015, 07:35:54 AM Hi!
1 script: Code: $('#left_menu a').click(function()2 script (It is loading with ajax, when tab selected) : Code: <div class="easyui-layout create_waybill_form" data-options="fit:true"> When, I set cache:true, I have some bug. All input forms have : width: 4px; height: 20px; https://www.dropbox.com/s/egt2ppm1vozozzy/2015-08-03_172524.png?dl=0 Title: Re: Problem with input forms and tabs Post by: stworthy on August 03, 2015, 08:22:11 PM You forget to set the 'width' attribute on your 'order_id' field. Please set it and refresh your page again.
Code: <input id = "order_id" class="easyui-textbox" type="text" name="order_id" style="width:200px"> |