How do you remove or change red border in Livecycle required field?
When I make a field required, it makes the pdf show a thick ugly red border. How can I change that?
How do you remove or change red border in Livecycle required field?
When I make a field required, it makes the pdf show a thick ugly red border. How can I change that?
function expReq(f){f.mandatory = "error";if (f.isNull == false){f.mandatory = "disabled";}}
script.expReq(this);
function validateFields(){//javaScript goes here to check the fields}
form.Page1.submit::preSubmit:form - (JavaScript, client) script.validateFields();