|
Title: Bug?: Combobox Values not submitted Post by: mike on September 08, 2014, 08:45:31 AM Hello,
i´ve got a problem since upating easyui to v1.4. I´ve got a form with textboxes an two comboboxes. If I write a text to the combobox which is not in the <options> the value is not submitted with the form. With v1.34 it works properly. Is there a workaround? Thanks mike Code: save entry: And heres the html: Code: <div id="dlg" class="easyui-dialog" style="width:500px;height:600px;padding:10px 20px" Title: Re: Bug?: Combobox Values not submitted Post by: jarry on September 08, 2014, 04:55:17 PM If I write a text to the combobox which is not in the <options> the value is not submitted with the form Could you please explain how you write text to the combobox? Title: Re: Bug?: Combobox Values not submitted Post by: mike on September 09, 2014, 12:03:30 AM Hi,
the user should be able to select predefiened Values or write a new one in the combobox. From the documentation: The combobox display a editable text box and drop-down list, from which the user can select one or multiple values. The user can type text directly into the top of list, or select one or more of present values from the list. Greets & Thanks Mike Title: Re: Bug?: Combobox Values not submitted Post by: jarry on September 09, 2014, 12:21:22 AM The user can type text directly into the top of list. The top of list means the textbox component. The user can enter text into the textbox but can not make the entered text become one of the list items except that you write some code to achieve this functionality.
When enter some text and press ENTER key, the combobox will search and select what item you hovered or selected. If no item selected, the entered text will be cleared because the entered text does not match any items in the list. Title: Re: Bug?: Combobox Values not submitted Post by: mike on September 09, 2014, 02:00:52 AM Ah ok, thanks a lot. ;)
I´ve only wondered - because it has worked in 1.34. Anyway thanks - btw: Thanks for this great Framework! Mike |