We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A new feature! to add multiple input in one confirmable popup
A new feature! I have to add records to a database it requires mutiple input
A new feature! something like array in InputPopup
let name, age, gender; new InputPopup([{ id: "popupTypeName", title: "Name", value: name, numeric: false, }, { id: "popupTypeAge", title: "Age", value: age, numeric: true, }, { id: "popupTypeGender", title: "Gender", value: gender, numeric: false, }, ]).show() .on("confirm", (arr) => { GUI.warn(`NEW Record: ${arr[0]} ${arr[1]}, ${arr[2]}`); drawGui(); });
The text was updated successfully, but these errors were encountered:
Yeah! it seems to be a nice improvement! :) Would you like to contribute?
Sorry, something went wrong.
Hello @Elius94 I'll try to implement this on my spare time, I hope you can provide some guidance where I can poke from the source code :)
It would be so helpful :) thank you! Feel free to ask me something.
In the code, you have to look at InputPopup.ts file.
No branches or pull requests
What do you want?
A new feature! to add multiple input in one confirmable popup
Why do you want it?
A new feature! I have to add records to a database it requires mutiple input
How do you implement it?
A new feature!
something like array in InputPopup
Are you interested in developing this feature?
The text was updated successfully, but these errors were encountered: