Darklight
04-18-2007, 10:05 AM
as posted by vbert here (http://www.extjs.com/forum/showthread.php?t=4889#4)
This code:
FL = new Ext.form.Form({
id: 'formLogin',
labelWidth: 115,
url: '{form_url}',
});
generate:
<form id="formLogin" class="x-form" method="post">
<div id="formLogin" class="x-form-ct">
--------^^^^^^ this is BUG ???
<fieldset id="ext-comp-1003">
this makes it impossible to select the form by its ID (see problem in thread above)
This code:
FL = new Ext.form.Form({
id: 'formLogin',
labelWidth: 115,
url: '{form_url}',
});
generate:
<form id="formLogin" class="x-form" method="post">
<div id="formLogin" class="x-form-ct">
--------^^^^^^ this is BUG ???
<fieldset id="ext-comp-1003">
this makes it impossible to select the form by its ID (see problem in thread above)