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

Re: [qooxdoo-devel] table question:

2006-10-26 Thread Sirichoke
I accidently solve this but if any can explain this please help. I try to figure out by deeping into Tablepane.js But it too complicated for me. Alex D. wrote: Hi Sirichoke, Thx for your help - it works now. But i still don't get it. I have already debugged the code with USE_ARRAY_JOIN = fa

Re: [qooxdoo-devel] table question:

2006-10-24 Thread Alex D.
Hi Sirichoke, Thx for your help - it works now. But i still don't get it. I have already debugged the code with USE_ARRAY_JOIN = false option and it looks fine in debugger. No double lines, everything as expected. I would like to understand. Best Regards, alex.d add qx.ui.table.TablePan

Re: [qooxdoo-devel] table question:

2006-10-24 Thread Sirichoke
add qx.ui.table.TablePane.USE_ARRAY_JOIN = true; as in Table2.html Alex D. wrote: Hi folks, i hope you could help me with this issue: i want my table to have HTML-cells(by default all html-tags are filtered out). So i have overridden the escapeHtml function in DefaultDataCellRenderer class

[qooxdoo-devel] table question:

2006-10-24 Thread Alex D.
Hi folks, i hope you could help me with this issue: i want my table to have HTML-cells(by default all html-tags are filtered out). So i have overridden the escapeHtml function in DefaultDataCellRenderer class like here: =snip= qx.ui.table.Default