Examples of TextArea


Examples of abbot.editor.widgets.TextArea

        add(button);
        return button;
    }

    protected JTextArea addTextArea(String title, String value) {
        final TextArea text = new TextArea(value != null ? value : "");
        text.setLineWrap(true);
        text.setWrapStyleWord(true);
        text.setBorder(new JTextField().getBorder());
        text.addActionListener(this);
        add(title, text);
        return text;
    }
View Full Code Here

Examples of com.dodo.blog.ui.component.input.TextArea

        FieldSet fieldSet = new FieldSet( localize( "title.playgroundEdit" ) );
        form.add( fieldSet );

        fieldSet.add( new FormRow( localize( "label.description" ), new TextBox( "description" ).setAutoFocus( true ) ) );
        fieldSet.add( new FormRow( localize( "label.code" ), new TextArea( "code" ) ) );

        form.add( new AjaxSubmitButton( "save", localize( "button.save" ) ) );
        form.add( new Anchor( "cancel", localize( "button.cancel" ), PlaygroundList.class ) );
    }
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.form.TextArea

        }
      }
    });
    serviceField.setValue(serviceDisco.getGateWays().get(0));

    msgField = new TextArea()
    msgField.setPreventScrollbars(true);
    msgField.setFieldLabel(JabberApp.getConstants().MSG());
    msgField.setHeight(100);
    //msgField.setHideLabel(true);
    fieldSet.add(msgField);
View Full Code Here

Examples of com.github.gwtbootstrap.client.ui.TextArea

    private final TextArea text;
    private boolean isDirty;

    public RuleContentWidget() {
        text = new TextArea();
        text.setWidth( "100%" );
        text.setVisibleLines( 15 );

        text.getElement().setAttribute( "spellcheck",
                                        "false" );
View Full Code Here

Examples of com.google.gwt.user.client.ui.TextArea

    getElement().setId("notifications-body");
    Label notifyLabel = new Label ("Subscription notifications:");
    notifyLabel.setStyleName("portlet-form-field-label");
    add(notifyLabel);
   
      textArea = new TextArea();
      textArea.setCharacterWidth(50);
      textArea.setVisibleLines(50);
      add(textArea);
  }
View Full Code Here

Examples of com.google.gwt.user.client.ui.TextArea

        addAttribute( constants.Detail(),
                      details( body ) );
    }

    private Widget details(String body) {
        TextArea area = new TextArea();
        area.setStyleName( "editable-Surface" );
        area.setVisibleLines( 12 );
        area.setText( body );
        area.setWidth( "100%" );
        return area;
    }
View Full Code Here

Examples of com.google.gwt.user.client.ui.TextArea

    public DSLRuleEditor(RuleAsset asset) {

        RuleContentText cont = (RuleContentText) asset.getContent();

        this.data = cont;
        text = new TextArea();
        text.setWidth( "100%" );
        text.setVisibleLines( 16 );
        text.setText( data.content );

        SuggestionCompletionEngine eng = SuggestionCompletionCache.getInstance().getEngineFromCache( asset.getMetaData().getPackageName() );
View Full Code Here

Examples of com.google.gwt.user.client.ui.TextArea

        if ( data.content == null ) {
            data.content = "";
        }

        text = new TextArea();
        text.setWidth( "100%" );
        text.setVisibleLines( 16 );
        text.setText( data.content );

        text.setStyleName( "default-text-Area" );
View Full Code Here

Examples of com.google.gwt.user.client.ui.TextArea

    ListBox lb = new ListBox();
    for (int i = 0; i < 100; i++) {
      lb.addItem(i + "");
    }
    item.addItem(lb);
    item.addItem(new TextArea());

    return t;
  }
View Full Code Here

Examples of com.google.gwt.user.client.ui.TextArea

    aXb.addItem("a grand child");
    FastTreeItem widgetBranch = a.addItem(new CheckBox("A checkbox child"));
    FastTreeItem textBoxParent = widgetBranch.addItem("A TextBox parent");
    textBoxParent.addItem(new TextBox());
    textBoxParent.addItem("and another one...");
    textBoxParent.addItem(new TextArea());

    ListBox lb = new ListBox();
    for (int i = 0; i < 100; i++) {
      lb.addItem(i + "");
    }
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.