Examples of TextArea


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

        inputBox = new TextBox();
        inputBox.addStyleName("ResultBox");
        dockPanel.add(inputBox, DockPanel.NORTH);

        ticker = new TextArea();
        ticker.setSize("7em", "140px");

        MultiWordSuggestOracle oracle = new MultiWordSuggestOracle();
        oracle.add("Jill");
        oracle.add("Jeff");
View Full Code Here

Examples of com.gwtext.client.widgets.form.TextArea

    this.detailsFormPanel.add(textfield = new TextField(TextProvider.get().identities_panel_label_bcc(), "bcc"),
        new AnchorLayoutData("80%"));
    textfield.addKeyListener(KeyboardListener.KEY_ENTER, keyListener);
    this.formFields.add(textfield);

    this.detailsFormPanel.add(textfield = new TextArea(TextProvider.get().identities_panel_label_signature(),
        "signature"), new AnchorLayoutData("60%"));
    this.formFields.add(textfield);

    // Checkbox checkbox = new Checkbox(
    // TextProvider.get().identities_panel_label_htmlsignature(),
View Full Code Here

Examples of com.k42b3.zubat.basic.form.Textarea

    item.setLayout(new FlowLayout());

    JLabel label = new JLabel(nodeLabel.getTextContent());
    label.setPreferredSize(new Dimension(100, 22));

    Textarea input = new Textarea();
    JScrollPane scpInput = new JScrollPane(input);
    scpInput.setPreferredSize(new Dimension(300, 200));

    if(nodeValue != null)
    {
      input.setText(nodeValue.getTextContent());
    }

    item.add(label);
    item.add(scpInput);
View Full Code Here

Examples of com.sencha.gxt.widget.core.client.form.TextArea

   *
   * @param title the title of the message box
   * @param message the message that appears in the message box
   */
  public MultiLinePromptMessageBox(String title, String message) {
    super(new TextArea(), title, message);
    getField().setHeight(75);
  }
View Full Code Here

Examples of com.sun.dtv.lwuit.TextArea

     * this method might cause a problem with further log output
     */
    public static void showLog() {
        try {
            String text = getLogContent();
            TextArea area = new TextArea(text, 5, 20);
            Form f = new Form("Log");
            final Form current = Display.getInstance().getCurrent();
            Command back = new Command("Back") {
                public void actionPerformed(ActionEvent ev) {
                    current.show();
View Full Code Here

Examples of com.sun.lwuit.TextArea

          if (Contents.mystring_presence[k].equals(Datas.jid.getPresence())) {
        status_list.setSelected(k);
      }
    }
    status_form.addComponent(new MyLabel("Your mood"));
        TextArea mess = new TextArea(Datas.jid.status_message, 100);
        status_form.addComponent(mess);
        infopool.put("status_message", mess);
        status_form.addCommand(Contents.ok);
 
        status_form.addCommand(Contents.back);
View Full Code Here

Examples of com.vaadin.ui.TextArea

    }

    private void createUI(AbstractOrderedLayout layout) {
        layout.setSizeFull();

        TextArea tf = new TextArea();
        tf.setCaption("A text field");
        tf.setSizeFull();
        tf.setRows(2);

        layout.addComponent(tf);
    }
View Full Code Here

Examples of com.vaadin.ui.TextArea

        captionField = createTextField("Caption");
        captionField.setInputPrompt("Event name");
        captionField.setRequired(true);
        final TextField whereField = createTextField("Where");
        whereField.setInputPrompt("Address or location");
        final TextArea descriptionField = createTextArea("Description");
        descriptionField.setInputPrompt("Describe the event");
        descriptionField.setRows(3);
        // descriptionField.setRequired(true);

        final ComboBox styleNameField = createStyleNameComboBox();
        styleNameField.setInputPrompt("Choose calendar");
        styleNameField.setTextInputAllowed(false);
View Full Code Here

Examples of com.vaadin.ui.TextArea

        f.setNullRepresentation("");
        return f;
    }

    private TextArea createTextArea(String caption) {
        TextArea f = new TextArea(caption);
        f.setNullRepresentation("");
        return f;
    }
View Full Code Here

Examples of com.vaadin.ui.TextArea

        });

        mainWin.addComponent(tx);
        mainWin.addComponent(b);

        final TextArea tx2 = new TextArea(
                "Textfield with maxlenght 10, multirow ");
        mainWin.addComponent(tx2);
        tx2.setImmediate(true);
        tx2.setRows(5);
        tx2.setMaxLength(10);

        Button b2 = new Button("Check value");
        b2.addListener(new Button.ClickListener() {

            @Override
            public void buttonClick(ClickEvent event) {
                l.setValue("Length: " + tx2.getValue().toString().length()
                        + " Content: " + tx2.getValue());
            }
        });

        mainWin.addComponent(tx);
        mainWin.addComponent(b);
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.