List of usage examples for com.google.gwt.dom.client DivElement TAG
String TAG
To view the source code for com.google.gwt.dom.client DivElement TAG.
Click Source Link
From source file:com.dianaui.universal.core.client.ui.Collapse.java
License:Apache License
public Collapse() { this(DivElement.TAG); }
From source file:fr.putnami.pwt.core.widget.client.Affix.java
License:Open Source License
public Affix() { super(DivElement.TAG); StyleUtils.toggleStyle(Affix.this, this.affixed, true); }
From source file:fr.putnami.pwt.core.widget.client.Alert.java
License:Open Source License
public Alert(String html) { super(DivElement.TAG, html); StyleUtils.addStyle(this, Alert.STYLE_ALERT); StyleUtils.addStyle(this, Alert.STYLE_FADE); StyleUtils.addStyle(this, Alert.STYLE_VISIBLE); this.setType(Type.INFO); }
From source file:fr.putnami.pwt.core.widget.client.ButtonDropdown.java
License:Open Source License
public ButtonDropdown() { super(DivElement.TAG); StyleUtils.addStyle(this, ButtonDropdown.STYLE_BUTTON_GROUP); StyleUtils.addStyle(this.getAnchor(), ButtonDropdown.STYLE_BUTTON); this.setType(this.type); }
From source file:fr.putnami.pwt.core.widget.client.ButtonGroup.java
License:Open Source License
public ButtonGroup() { super(DivElement.TAG); this.setSize(this.size); this.setType(this.type); }
From source file:fr.putnami.pwt.core.widget.client.Carousel.java
License:Open Source License
public Carousel() { super(DivElement.TAG); this.append(this.carouselIndicators); this.append(this.carouselInner); this.append(this.leftButton); this.append(this.rightButton); StyleUtils.addStyle(this, Carousel.STYLE_CAROUSEL); StyleUtils.addStyle(this.carouselInner, Carousel.STYLE_CAROUSEL_INNER); StyleUtils.addStyle(this.carouselIndicators, Carousel.STYLE_CAROUSEL_INDICATORS); StyleUtils.addStyle(this.leftButton, Carousel.STYLE_CAROUSEL_CONTROL); StyleUtils.addStyle(this.leftButton, LeftRightType.LEFT); StyleUtils.addStyle(this.rightButton, Carousel.STYLE_CAROUSEL_CONTROL); StyleUtils.addStyle(this.rightButton, LeftRightType.RIGHT); this.leftButton.addClickHandler(this); this.rightButton.addClickHandler(this); this.leftButton.getElement().setInnerHTML("<i class=\"icon-prev\"/>"); this.rightButton.getElement().setInnerHTML("<i class=\"icon-next\"/>"); }
From source file:fr.putnami.pwt.core.widget.client.CarouselItem.java
License:Open Source License
public CarouselItem(String html) { super(DivElement.TAG, html); StyleUtils.addStyle(this, CarouselItem.STYLE_CAROUSEL_ITEM); }
From source file:fr.putnami.pwt.core.widget.client.Container.java
License:Open Source License
public Container() { super(DivElement.TAG); }
From source file:fr.putnami.pwt.core.widget.client.Footer.java
License:Open Source License
public Footer(String html) { super(DivElement.TAG, html); }
From source file:fr.putnami.pwt.core.widget.client.Form.java
License:Open Source License
public Form(String html) { super(DivElement.TAG, html); StyleUtils.addStyle(this, Form.STYLE_FORM); this.getElement().setAttribute("role", "form"); }