Making Company Standard Fields Mandatory

From SmartWiki
Revision as of 16:35, 14 January 2010 by Thu (talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

To make company standard fields mandatory, you must create a custom field of type Custom Field Type: Special – Browser Script and place it on the same entity that you'll be using it. For companies, you'll want to put the custom field in via Global Settings > Branch & Account Settings > Account Custom Fields

function additionalCheckingOnSubmit(){
    var frm=document.frmcompany;
    var element=frm.address;
    if(element&&element.value.length==0){
        alert("Address is empty!");
        return false;
    }
    element=frm.phone;
    if(element&&element.value.length==0){
        alert("Phone is empty!");
        return false;
    }
    element=frm.city;
    if(element&&element.value.length==0){
        alert("City is empty!");
        return false;
    }
    element=frm.country;
    if(element&&(element.value.length==0||element.value=="0")){
        alert("Country is empty!");
        return false;
    }
    return true;
}

function savefunc(){return additionalCheckingOnSubmit();}