1220
Views
6
Comments
OnBlur
Question
Hi,
Just need to confirm is there any way we can mapped checkbox values to one another using 
onblur function.

Regards,
ChandrasekarRadhakrishnan
2018-12-11 13-32-05
Martijn Habraken
Don't fully understand your question but you can link a onblur function to a (invisible) button. So you can implement your logic in the screen action for the button.
"$('" + Button1.Id + "').click();"
2024-10-25 09-14-42
Christopher Bautista
Hi,

Is OnBlur property behaves like a lost focus of Visual Basic 6?

Thanks.

Regards,

Tupe
2018-12-11 13-32-05
Martijn Habraken
Hi Yupe,

Definition and Usage

The onblur event occurs when an object loses focus.

The onblur event is most often used with form validation code (e.g. when the user leaves a form field).

Tip: The onblur event is the opposite of the onfocus event.

Tip: The onblur event is similar to the onfocusout event. The main difference is that the onblur event does not bubble. Therefore, if you want to find out whether an element or its child loses focus, you could use the onfocusout event. However, you can achieve this by using the optional useCapture parameter of the addEventListener() method for the onblur event.

Source: https://www.w3schools.com/jsref/event_onblur.asp

So yes I think it is :)
2022-10-18 07-32-49
Randall Jodache Chetty

Thanks for sharing 

2024-10-25 09-14-42
Christopher Bautista
Hi Martijn,

You just murdered my nickname...Hehehe...Anyways...Thanks for the prompt reply..

Regards,

Tupe
2018-12-11 13-32-05
Martijn Habraken
Christopher Bautista wrote:
Hi Martijn,

You just murdered my nickname...Hehehe...Anyways...Thanks for the prompt reply..

Regards,

Tupe
 
 Hi Tupe,

Sorry for that, haha.
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.