-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
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
I want you to add a submenu to the item selection of the whitelist. #1016
Comments
Hi @rnrnstar2, that isn't possible out-of-the-box and is complex to achieve, although not impossible. It requires adding custom items (with Tagify templates) and attach hover events and logic which will show/hide the sub-menus... |
I created a sandbox. In the firstLevel menu, select a category and assume a drop menu where various tagdata are displayed in that category. I'm sorry I'm Japanese and I'm not good at English. https://codesandbox.io/s/tagify-react-issue-template-forked-xpkv5b?file=/src/index.js |
It's OK, I'm also not a native English speaker Tagify is automatically adding Lines 694 to 714 in 43b7e20
I am unsure if this can even work even if the submenu items will have the It would take me some days, as I'm currently on vacation... |
So that's it. |
I would suggest you to modify the https://jsbin.com/dehaduw/edit?css,js,output Keep in mind that the number of suggestions should not be above the number of items in the Then you can simply remove the last part and add it yourself manually in the template (where This is a bit complex but not by much. The only problem is to write the |
I want to dynamically change the value of key by selecting a submenu when selecting tagdata.
Specifically, it's time to decide on a date format.
{
date: "2022-04-22",
format: "yyyy / MM / dd"
}
{
date: "2022-04-22",
format: "MM-dd"
}
I am developing an app that converts text created with tagrify on an aws server and sends a message to SNS.
I think that it is necessary to set the date to be sent in the whiteList of tagrify when sending in the "MM-dd" format.
If it is not a submenu, the UI is not ideal, so I would like to ask you to implement a submenu.
The text was updated successfully, but these errors were encountered: