Re: [qooxdoo-devel] Table question about text input lengths

2009-04-27 Thread Jim Hunter
Thanks, but I need to be able to set the maxLength on the fly. My customers determine/create the table and they control what the field lengths are. I never know anything at design time, it all comes together at run time. I have been trying to tweak the current celleditor.TextField to see if I can g

Re: [qooxdoo-devel] Table question about text input lengths

2009-04-27 Thread Fabian Jakobs
Hi Jim, > On textfields, you can set the maximum amount of characters that the > user is allowed to enter (setMaxlength), but I don't see any way to > set this for a cell in a table. Since this data is going back into a > database, I need to restrict the amount of data that is entered. If I > have

Re: [qooxdoo-devel] Table question about text input lengths

2009-04-24 Thread Jim Hunter
Thanks, I think extending the control and simply exposing the maxLength property of the TextField will work. Thanks for pointing me to what should be a simple solution. Jim On Fri, Apr 24, 2009 at 5:05 PM, Derrell Lipman wrote: > On Fri, Apr 24, 2009 at 4:30 PM, Jim Hunter wrote: >> >> On tex

Re: [qooxdoo-devel] Table question about text input lengths

2009-04-24 Thread Derrell Lipman
On Fri, Apr 24, 2009 at 4:30 PM, Jim Hunter wrote: > On textfields, you can set the maximum amount of characters that the > user is allowed to enter (setMaxlength), but I don't see any way to > set this for a cell in a table. Since this data is going back into a > database, I need to restrict the

[qooxdoo-devel] Table question about text input lengths

2009-04-24 Thread Jim Hunter
On textfields, you can set the maximum amount of characters that the user is allowed to enter (setMaxlength), but I don't see any way to set this for a cell in a table. Since this data is going back into a database, I need to restrict the amount of data that is entered. If I have overlooked this le