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
{{ message }}
This repository has been archived by the owner on Jul 29, 2019. It is now read-only.
Try to insert select option list into each group cell. It displays as a select element, but it does not expand by a click like the usual select does. It does not react on a click.
varoptions={groupOrder: function(a,b){returna.value-b.value;},groupTemplate: function(group){varcontainer=document.createElement('div');varselect=document.createElement('select');groups.forEach(function(i){varoption=document.createElement('option');option.innerHTML=i.content+' ';container.insertAdjacentElement('afterBegin',select);select.insertAdjacentElement('afterBegin',option);});returncontainer;},orientation: 'both',editable: {add: true,// add new items by double tappingupdateTime: true,// drag items horizontallyupdateGroup: true,// drag items from one group to anotherremove: true,// delete an item by tapping the delete button top rightoverrideItems: true// allow these options to override item.editable},groupEditable: true,start: '2019-02-01',end: '2019-03-01',};
Expected result: Select expanded by a click and I can choose some option. Actual result: Nothing happens by a click.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Try to insert select option list into each group cell. It displays as a select element, but it does not expand by a click like the usual select does. It does not react on a click.
Expected result: Select expanded by a click and I can choose some option. Actual result: Nothing happens by a click.
The text was updated successfully, but these errors were encountered: