You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi.
I have created a calendar application and add a people picker multiselect.
In newform and editform I can directly validate the name of a user. However, when I click on the browse icon, the search returns no results.
Am i the only one having this problem ?
The text was updated successfully, but these errors were encountered:
Ok. As a workaround I added this stamp in init function (not perfect, maybe better do something like window.location.href.toLowerCase().indexOf("/newform.aspx"):
init: function () {
if (!initState) {
/* gg added: return if New Form or Edit Form */
if (window.location.href.indexOf('/NewForm.aspx') < 0 || window.location.href.indexOf('/EditForm.aspx') < 0 ) {
console.log('New/Edit Form; PnP Responsive skipped');
return;
}
var currentScriptUrl;
Hi.
I have created a calendar application and add a people picker multiselect.
In newform and editform I can directly validate the name of a user. However, when I click on the browse icon, the search returns no results.
Am i the only one having this problem ?
The text was updated successfully, but these errors were encountered: