On Wed, Aug 22, 2012 at 11:00 AM, Jim Hunter <[email protected]> wrote:

> Thanks, I'll look into it.
>
> If you don't use textArea, then what do you use to allow user editing of
> multi-line data? The textField does not allow for multi-line.
>

I take that back. I do use it; I just don't see the resize handles. I don't
know what's different in my code from yours. Here's an edited version of
code where I'm adding a textArea. No resize handle appears. Maybe because
I'm adding it to a grid layout?

    // Description
    o = new qx.ui.form.TextArea();
    o.set(
      {
        tabIndex    : 2,
        maxLength   : aiagallery.dbif.Constants.FieldLength.Description,
        height      : 60,
        required    : true,
        placeholder : "Enter a brief description"
      });

    o.addListener(
      "input",
      function(e)
      {
        // Save the new description
        this.setDescription(e.getData());
      },
      this);

    form.add(o, "Description", null, "description", null,
             { row : 1, column : 0, colSpan : 6, rowSpan : 2 });

    this.txtDescription = o;


Derrell
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to