Title: form with external input Post by: Coder on October 26, 2019, 01:49:34 PM HTML:
Code: <div ...> JS: Code: function doCheck(){ why form.validate always (and with empty inputs values, texts ) true ? Title: Re: form with external input Post by: stworthy on October 26, 2019, 08:30:42 PM The form field components have no 'form' property, they must be moved to the <form> element.
Title: Re: form with external input Post by: Coder on October 27, 2019, 07:09:08 AM thnx, but
Code: <form id="frm1" ....> didn't draw normally: inner <div ... class="panel-body" ...> have calculated style width: 0px :( when "easyui-layout" outside <form> all draws good Title: Re: form with external input Post by: stworthy on October 29, 2019, 07:37:26 PM Please try to set the 'width' and 'height' for the <form> element.
Code: <form id="frm1" .... style="width:800px;height:400px"> |