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 text was updated successfully, but these errors were encountered:
automat
changed the title
styling issue on select box if you specify an container for the control kit
styling issue on select box if you specify a container for the control kit
Aug 6, 2016
just did more dig around, it looks like nothing to do with the parentNode, it's todo with the 'absolute' positioning in css, as long as your css for the control kit is not top 0 right 0 or something like that, the drop down would be off place
if you specify a parent node for the contrl kit rather than use body, the select box drop down style would be way off.
this.filterControlKit = new ControlKit({
parentDomElementId: 'map1_filterCtrlKit'
})
...
panel.addGroup({label: 'Tile switcher'})
.addSelect(tileSelections, 'options', {
onChange: index=> {
tileSelections.selection = tileSelections.options[index]
}
})
The text was updated successfully, but these errors were encountered: