Question

I want to do some operation when focus is lost from <SharePoint:ClientPeoplePicker>. Is there is any event like FocusOut or any other event.

Thanks

Was it helpful?

Solution

If you are using client side people picker with div as explained here:

<div id="peoplePickerDiv"></div>

You can set the blur event on peoplePickerDiv using jQuery as following:

  $("#peoplePickerDiv").blur(function(e){
      // Your operation here
  });
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top