issue 1366, fixed a bug, does not check checkbox type extravar

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10397 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-03-08 08:33:31 +00:00
parent a0c4134699
commit 4301604ea2
4 changed files with 37 additions and 27 deletions

View file

@ -1830,9 +1830,14 @@ var Validator = xe.createApp('Validator', {
f = filter[name];
el = elems[name];
if(!el)
{
el = elems[name + '[]'];
}
val = el?$.trim(get_value($(el))):'';
mod = (f.modifier||'')+',';
if(!el || el.disabled) continue;
if(f['if']) {