Hello, please modify the calendarMobileSample like this:
and then open the Menu:
I feel that, the lesser the menu options, the more the user could get distracted by the "background" under the Menu.
I think it would be better if it was masked, at least with a semi-transparent mask.
What do you think?
I noticed that I might be able to tweak this using navStackProperties, but I wanted to check with you as I believe this could be a visual enhancement.
Code:
isc.Calendar.create({ ID: "eventCalendar", data: eventData }); isc.Menu.create({ ID: "menu", autoDraw: false, showShadow: true, shadowDepth: 10, placement: "fillScreen", data: [ {title: "Recent Documents", icon: "[SAMPLE]icons/16/folder_document.png", submenu: [ {title: "data.xml", checked: true}, {title: "Component Guide.doc"}, {title: "SmartClient.doc", checked: true}, {title: "AJAX.doc"} ]}, {isSeparator: true}, {title: "Export as...", icon: "[SAMPLE]icons/16/export1.png", submenu: [ {title: "XML"}, {title: "CSV"}, {title: "Plain text"} ]}, {isSeparator: true}, {title: "Print", enabled: false, keyTitle: "Ctrl+P", icon: "[SAMPLE]icons/16/printer3.png"} ] }); var menuButton = isc.MenuButton.create({ ID: "menuButton", autoDraw: false, title: "File", width: 100, menu: menu }); isc.VStack.create({ height: "100%", width: "100%", members: [menuButton, eventCalendar] });
I feel that, the lesser the menu options, the more the user could get distracted by the "background" under the Menu.
I think it would be better if it was masked, at least with a semi-transparent mask.
What do you think?
I noticed that I might be able to tweak this using navStackProperties, but I wanted to check with you as I believe this could be a visual enhancement.
Comment