[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Gorm: Editing a TextField - multiline support?
From: |
Wolfgang Lux |
Subject: |
Re: Gorm: Editing a TextField - multiline support? |
Date: |
Sun, 6 May 2012 07:06:12 +0200 |
Csanyi Pal wrote:
> I'm using Gorm version 1.2.16 on a Debian GNU/Linux wheezy/sid system.
>
> I'm building the interface of my small application project
> 'lpt-interface'. An image of this can be seen from here:
> https://plus.google.com/u/0/photos/117283089154825941814/albums/5736149862706239553/5739083215646749922
>
> On the image, In the Panel entitled as 'Tulajdonságok' (in English this
> is Preferences) there are four TextFields. In the selected bottommost
> textfield that is being edited, is the text cursor.
>
> I want to put into it mutiline text, but when I hit Enter the editing
> mode quit, so I can't go into next line of textfield to write more
> text.
>
> Can I edit this text field in Gorm as a multiline field?
NSTextField is designed to enter short text which (usually) fits on a line. If
you want multi-line input you should be using a NSTextView instead.
Wolfgang