You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user should be allowed to enter new option and there should be a callback
triggered as a result. The use case is: the user clicks on select option which
has options, say: "baseball", "basketball", "New" . He selects "New" and enters
"Hockey". This action by the user should trigger a callback which can be
handled to create an entry in the database and simultaneously updating the UI
elements.
What version of the product are you using? On what operating system?
version: 1.3
Original issue reported on code.google.com by [email protected] on 22 Sep 2014 at 5:28
The text was updated successfully, but these errors were encountered:
To implement the above mentioned feature, the plugin will also have to track
ids of all select options including those that have submenus. Following json
could be considered:
[
{
"hobby": 3,
"parentid": 0
},
{
"next": [
{
"baseball": 18,
"parentid": 14
},
{
"basketball": 16,
"parentid": 14
}
],
"Sport": 14,
"parentid": 0
}
]
Original issue reported on code.google.com by
[email protected]
on 22 Sep 2014 at 5:28The text was updated successfully, but these errors were encountered: