Difference between on Select , on Load , on click , on blur , on input?

Difference between on Select , on Load , on click , on blur , on input?

4 Likes

Basically these are the events which will work on any element for ex: on Load is used when your page is loading & in background of loading page you can perform n number of tasks. same onClick is used when you have to perform number of tasks on the click of element.

4 Likes

On Select Event: is used on select type elements such as Select, Type and Search, Radio Button, Checkbox, Toggle. The tasks will be performed when the user selects any value.

On Load Event: is used when the user wants to perform tasks when the entity loads.

On Click Event: is used when user wants to perform tasks on click action. This event can be performed on elements like Button, Hyperlink, Icon etc

On Input Event: is used when user wants to perform tasks when any value is entered on an input field. This event can be performed on input type elements Text, Number. Email, Password, Date, etc.

On Blur Event: is performed when the user leaves the scope of an element.
For Instance, when the cursor is in an Input field and the user leaves the scope of that particular Input field and clicks anywhere out of the field then the On Blur event is triggered. Some Form-Fieldset elements that support On Blur event are: Input, Number, Email, Password, Textarea, Select, Time, Masking

34 Likes

when the cursor is in an Input field and the user leaves the scope of that particular Input field and clicks anywhere out of the field then the On Blur event is triggered. Some Form-Fieldset elements that support On Blur event are: Input, Number, Email, Password, Textarea, Select, Time, Masking.

in vflow role on blur can be used in any component as per requirement. mostle i used this in the form component.

2 Likes