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
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
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
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
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
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
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
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
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