My dropdown list (an HTML select list) is cut off and doesn't show below its window border on Mac. This is the same version of InDesign on Mac and Win. On Windows the list is not cut off. This is the select code <td style="text-align:right"> <select id="cboTemplateToUse" data-value-field="type" data-text-field="name" data-bind="value: templateSelected, source: templateList" style="width:100%" ;> </select> </td> The template list that is bound to the select element above (using Kendo binding) was made like this, just a number of test items: templateList: [ { type: '001', name: 'test1'}, { type: '002', name: 'test2'}, { type: '003', name: 'test3'}, { type: '004', name: 'test4'}, { type: '005', name: 'test5'}, { type: '006', name: 'test6'} ] On Mac it looks like this, the bottom is cut off alongside the window bottom: In windows it looks good, the dropdown drops down below its window bottom border: Is the Node / Chrome engine used not the same on Windows and Mac, or is it something else that differs in the implementation? What can be done about this? Thanks, Andreas
... View more