magento admin表单中多个字段列表中至少需要一个字段

时间:2016-09-22 09:26:16

标签: magento magento-1.7 magento-1.9

如何验证magento管理表单中多个字段列表中所需的最少一个字段。

表单字段包含文本框,选择管理表单中的字段。

if(Validation) {
    Validation.addAllThese([ ['validation-myown','Please insert proper word',function(v,r){ var a = Validation.get('IsEmpty').test(v);
   if(a == false){
       return true;
   }else{
       return false;
   }
} ], [ ] ]) } 

1 个答案:

答案 0 :(得分:0)

您可以使用jquery尝试此操作:

$("#FORMID").submit(function(){

    var elemcount=0;
    $(this).find('input[type=text], select').each(function(){
            if($(this).val() != "") elemcount+=1;
    });

    // If the value of elemcount variable is 0, all elements are empty. 
    // Your select should have a default value as blank. 
    // If it is not so you have to add separate code for select and input.

 });
相关问题