I’m working on a User Management module and want to add new fields in the “Add New User” form. Below is a screenshot of my current implementation: Check Webix Snippet Here
How can I modify the form to include additional fields like “Phone Number” and “Role”? Should I update the existing webix.ui form configuration, or is there a better approach?
To add new fields in the “Add New User” form you need to customize the config method of userManager.services.Prompt.
Using ui.body.rows you can configure the form you need.
Also you need to customize the AddNew function in userManager.views[“addmenu”]. By default this function is responsible for adding new item to a specified list and expects only one value (user name) from the form. So we need to include all other values from the form: