How to remove overview and calendar

Interested in talking about Mash-up's? This is the place.
Post Reply
Simich
Posts: 8
Joined: Sat Sep 13, 2014 2:38 am

How to remove overview and calendar

Post by Simich »

HOW CAN I REMOVE OVERVIEW AND CALENDAR FROM MY TAB ZIMLET ?



Untitled.jpg
hugo@dlshk
Posts: 30
Joined: Sat Sep 13, 2014 2:28 am

How to remove overview and calendar

Post by hugo@dlshk »

first get the object id, and then use dwt.setVisible to invisible it!

the code below is make the detach compose button invisible
[QUOTE]var button = this.getCurrentController()._toolbar._buttons["DETACH_COMPOSE"];

if (button){

Dwt.setVisible(document.getElementById(button.getHTMLElId()),false);

}

button = null;[/QUOTE]
Post Reply