Given the stand-alone example below, I have a text field with vertical scrollbar and I open a modal window on top of it. In Chrome (version 49) on a Mac (not happening in Safari and Firefox) that scrollbar shines through the window. See the attached image.
	
		
							
						
					Code:
	
	        isc.Page.setEvent('load', function () {
            var form = isc.DynamicForm.create({
                fields: [{
                    name: 'textField',
                    height: 200,
                    type: 'textarea',
                    width: '*'
                }],
                width: 400
            });
            form.editNewRecord({ textField: 'a b c d e f g h i j k l m n o p q r s t u v w x y z'.replace(/ /g, '\n') });
            isc.Window.create({
              items: isc.Label.create({ contents: 'test' }),
              height: 300,
              isModal: true,
              left: 200,
              showModalMask: true,
              title: 'Window',
              top: 50,
              width: 300
            });
        });
Comment