Combobox - quickcreate - Mendix Forum

Combobox - quickcreate

1

From a UX perspective it would be great if the combobox would provide a quickcreate functionality similar to the quickcreate in the section "Tags" when working with user stories in Mendix Project Management.

 

This could be implemented

 

user-story-tag-quickcreate.png

asked
3 answers

Hi Yvar,

you are right. This feature was not available when I suggested the idea but got introduced in V 2.8.0.

Created

Would be great if Mendix could reapply this old functionality back in the modeler

Created

Hi Levin,

I am pretty sure you can already do this using a combination of the "On filter input change" event of the combobox (https://docs.mendix.com/appstore/widgets/combobox/#events) which lets you store the filter input in some helper object (use a primitive string parameter with "Filter Input" as parameter argument).

And the "show footer" option.


Show footer gives you a widget area that will display below the search results of the combobox, here you can add your create new button and pass the helper object as parameter.

It is a bit more convoluted, and I think having the filter input available as parameter argument in more places, like the footer directly, would be nice (skipping the need for a helper), but what you are trying to achieve should already be possible with the standard combobox.

Created