A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Hello!
I have problems with creating a custom editor descriptor using dojo widget.
I want the user to be able to press Enter in textbox to perform an search. But the problem is that the dialog closes before the
OnSubmit event Is reached when the view is in on-page edit.
How can I prevent the dialog(uiWrapperType.Floating) from closing? (it works in all properties view but not in on page edit)
Code I’m using:
postCreate: function () {
var self = this;
on(self.searchPeopleForm, "Submit", function (e) {
e.preventDefault();
self._onSearchPersonsClick(event);
});
}
Search person (double click to select)