Is it possible to hide certain VE ux-components? For example, we don't like/need the license-comment in the Save-dialog (= class "ve-ui-mwSaveDialog-license"). Can we hide it?
And is it possible to customize the menubar of VE? For example hide menu items or add a pulldown menu?
Related
Is it possible to add a menu item with an icon (like the icons of undo/redo button) to a custom menu item?
The documentation of the Class Menu doesn't mention it, so I guess it's not possible, but maybe there's a way to achieve this?
Thanks!
You can not use custom icons i suppose but you can use html character codes like this:
DocumentApp.getUi().createMenu('☁ Cloud')
.addItem("🖋 Pen", 'showHtmlBlaBla')
.addToUi();
You can look here for some codes
I was wondering if its possible to recreate a shiny-dashboard like menu in flexdashboard?
I'm using flexdashboard with crosstalk. In the current setting I'm having too many inputs in the sidebar. So basically, I'd like hide them like submenu items in foldable menu items.
Any ideas how I can pull this off? I'm guessing its possible to use external css/bootstrap elements.
Many thanks
i am trying to add a button to my angular material datepicker.
The button should be added in the top right corner and should close the datepicker on click.
Also i am trying to add additional content inside my datepicker. Since i have disabled dates inside my datepicker i want to add some kind of legend which says that gray dates don't hold any data and therefore can't be selected.
Is there any possibility in adding additional divs or buttons?
Thanks
In this case, you need to design your own datepicker with Angular Material Component Development Kit (CDK).
I have two tabs in my tabbed control and want to hide the tabs / tab names at the top of it as I want users to access the each tab using dedicated sidebar buttons (which I have created and which work).
Is it possible to hide the tabs at the top of the form?
The default Format > Style = "Tabs". If you set this to "None" the tabs row will not appear.
Alternatively, have oyu considered using a Navigation form?
You can set the TabFixedHeight property to something very small, like 0.001 cm.
This works for me in Access 2010 with UseTheme = True.
Is there any way to position the opened dropdown menu? I mean as I click on the <select>, the options appear in the box which is located over the selected option. Is there any solution to move this options box down?
This is what happens:
What I want to happen:
Sample here : jsFiddle
<select>
<option>BMW</option>
<option>Mercedes</option>
<option>Ferrari</option>
<option>Audi</option>
<option>Fiat</option>
</select>
There's no way to position the option dropdown box from a select when using native controls, it's part of the built in control. You'd have to create custom select boxes to control the positioning of the dropdown.