You need to sign in to do that
Don't have an account?

Onblur is not working with my vf page Why?
Onblur is not working with my vf page Why?
Here Is my Vf Page:
<apex:inputField value="{!File_New_Protest__c.Company_Name__c}" onblur="Company" />
But it is not showing the blur value in my box
Here Is my Vf Page:
<apex:inputField value="{!File_New_Protest__c.Company_Name__c}" onblur="Company" />
But it is not showing the blur value in my box
onblur is an event, which can trigger some javascript code. First of all "Company" can be termed as a javascript code, but this does not perform any visible work. Can you please elaborate what is your objective?
Here are few examples of onblur event handling, Let me know if this helps.
--Akram