Examples of addStyleName()


Examples of lv.odylab.evemanage.client.widget.PriceLabel.addStyleName()

        productTable.setWidget(0, 0, new EveItemMarketDetailsLink(constants, urlMessages, ccpJsMessages, calculation.getProductTypeName(), calculation.getProductTypeID()));
        productTable.setWidget(0, 1, new Label("x"));
        productTable.setWidget(0, 2, quantityLabel);
        productTable.setWidget(0, 3, new Label("="));
        PriceLabel totalPriceLabel = new PriceLabel(calculation.getPrice());
        totalPriceLabel.addStyleName(resources.css().totalPriceLabel());
        productTable.setWidget(0, 4, totalPriceLabel);
        Image eveCentralImage = new Image(resources.eveCentralIcon16());
        eveCentralImage.setTitle(messages.eveCentralQuicklook());
        Image eveMetricsImage = new Image(resources.eveMetricsIcon16());
        eveMetricsImage.setTitle(messages.eveMetricsItemPrice());
View Full Code Here

Examples of lv.odylab.evemanage.client.widget.PriceTextBox.addStyleName()

        EveItemInfoLink imageItemInfoLink = new EveItemInfoLink(ccpJsMessages, image, typeID);
        priceSetItemTable.setWidget(index, 0, imageItemInfoLink);
        priceSetItemTable.setWidget(index, 1, new EveItemMarketDetailsLink(constants, urlMessages, ccpJsMessages, calculationPriceSetItem.getItemTypeName(), typeID));
        PriceTextBox priceTextBox = new PriceTextBox();
        priceTextBox.setPrice(calculationPriceSetItem.getPrice());
        priceTextBox.addStyleName(resources.css().priceInput());
        priceSetItemTable.setWidget(index, 2, priceTextBox);
        Image eveCentralImage = new Image(resources.eveCentralIcon16());
        eveCentralImage.setTitle(messages.eveCentralQuicklook());
        priceSetItemTable.setWidget(index, 3, new EveCentralQuicklookLink(constants, urlMessages, eveCentralImage, typeID));
        Image eveMetricsImage = new Image(resources.eveMetricsIcon16());
View Full Code Here

Examples of net.cloudcodex.client.widgets.CharacterAvatar.addStyleName()

  @Override
  public CharacterAvatar addCharacter(String name, String icon, Long id) {
    CharacterAvatar avatar = new CharacterAvatar();
    avatar.initComponent(icon, name);

    avatar.addStyleName(this.constant.getHeaderCharacterStyle());
    avatar.setId(id);
    this.header.add(avatar);
    return avatar ;
  }
View Full Code Here

Examples of next.i.view.XDragScrollView.addStyleName()

      }
    });

    final XPopup popup = new XPopup();
    XDragScrollView view = new XDragScrollView();
    view.addStyleName("codeDemo");

    tbl.setWidget(0, 0, new XSpinner());
    tbl.setCellSpacing(10);

    FlexCellFormatter fcf = tbl.getFlexCellFormatter();
View Full Code Here

Examples of org.activiti.explorer.ui.custom.PopupWindow.addStyleName()

    final PopupWindow selectEditorPopupWindow = new PopupWindow();
    selectEditorPopupWindow.setModal(true);
    selectEditorPopupWindow.setResizable(false);
    selectEditorPopupWindow.setWidth("350px");
    selectEditorPopupWindow.setHeight("250px");
    selectEditorPopupWindow.addStyleName(Reindeer.PANEL_LIGHT);
    selectEditorPopupWindow.center();
   
    final SelectEditorComponent selectEditorComponent = new SelectEditorComponent(false);
    selectEditorComponent.getModelerDescriptionLabel().setValue(
            ExplorerApp.get().getI18nManager().getMessage(Messages.PROCESS_EDITOR_CONVERSION_WARNING_MODELER));
View Full Code Here

Examples of org.activiti.explorer.ui.custom.PrettyTimeLabel.addStyleName()

    taskDetails.addComponent(nameLabel, 1, 0, 4,0);

    // Add due date
    PrettyTimeLabel dueDateLabel = new PrettyTimeLabel(i18nManager.getMessage(Messages.TASK_DUEDATE_SHORT),
      historicTask.getDueDate(), i18nManager.getMessage(Messages.TASK_DUEDATE_UNKNOWN), false);
    dueDateLabel.addStyleName(ExplorerLayout.STYLE_TASK_HEADER_DUEDATE);
    taskDetails.addComponent(dueDateLabel, 1, 1);
   
    // Add priority
    Integer lowMedHighPriority = convertPriority(historicTask.getPriority());
    Label priorityLabel = new Label();
View Full Code Here

Examples of org.aperteworkflow.util.vaadin.ui.table.LocalizedPagedTable.addStyleName()

    }

    public static LocalizedPagedTable pagedTable(final Container container, String[] visibleViewColumns, String[] columnViewHeaders,
                                                 Map<String, ColumnGenerator> customViewColumns, ItemClickListener itemClickListener) {
        LocalizedPagedTable table = new LocalizedPagedTable();
        table.addStyleName("striped strong");
        table.setSizeFull();
        table.setPageLength(10);
        table.setImmediate(true);
        table.setSelectable(true);
        table.setContainerDataSource(container);
View Full Code Here

Examples of org.appfuse.client.widget.ListItem.addStyleName()

      displayItem.setStyleName("token-input-token-facebook");
      Paragraph p = new Paragraph(itemBox.getValue());

      displayItem.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent clickEvent) {
          displayItem
              .addStyleName("token-input-selected-token-facebook");
        }
      });

      /**
 
View Full Code Here

Examples of org.drools.guvnor.client.common.SmallLabel.addStyleName()

    }

    private Widget appendComment(DiscussionRecord r) {
        SmallLabel hrd = new SmallLabel( constants.smallCommentBy0On1Small(r.author,
                                                        new Date( r.timestamp )) );
        hrd.addStyleName( "discussion-header" );
        commentList.add( hrd );

        String[] parts = r.note.split( "\n" );

        if ( parts.length > 0 ) {
View Full Code Here

Examples of org.drools.workbench.screens.guided.rule.client.widget.DSLSentenceWidget.addStyleName()

        if ( action instanceof DSLSentence) {
            RuleModellerWidget w = new DSLSentenceWidget( ruleModeller,
                                                          eventBus,
                                                          (DSLSentence) action,
                                                          readOnly );
            w.addStyleName( "model-builderInner-Background" ); //NON-NLS
            return w;
        }
        if ( action instanceof FreeFormLine) {
            return new FreeFormLineWidget( ruleModeller,
                                           eventBus,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.