Re: [qooxdoo-devel] Access remote service session

2007-04-19 Thread Agustin Almonte
Andreas, i found the reason for my problems. It's my mistake, i'm using a jar file build with an old version of qooxdoo. My apologies and thank you very much for your time. Regards, Agustin - This SF.net email is sponsored

Re: [qooxdoo-devel] Access remote service session

2007-04-19 Thread Agustin Almonte
Hi, thanks for your reply. I'm using qooxdoo 0.6.6, and my problem is that enviroment variable is null when method is call. Should i force environment setter method... how can this be done? thanks in advance. Agustin Al

Re: [qooxdoo-devel] qooxdoo and JSON login app

2007-04-18 Thread Agustin Almonte
How do you set http header for authentication in remote method (RPC)? In case of using cookies... do you access session on server side? Thanks in Advance - This SF.net email is sponsored by DB2 Express Download DB2 Expres

[qooxdoo-devel] Access remote service session

2007-04-18 Thread Agustin Almonte F.
Hi, i need to access rpc remote service session. I looked in qooxdoo documentation and found this code example. package my.package; import javax.servlet.http.HttpSession; import net.sf.qooxdoo.rpc.Environment; import net.sf.qooxdoo.rpc.RemoteService; import net.sf.qooxdoo.rpc.RemoteServiceExcep

Re: [qooxdoo-devel] qooxdoo and JSON login app

2007-04-17 Thread Agustin Almonte
Agustin Almonte F. gmail.com> writes: > > Hi, i need to build a login app. I'm thinking in cookies or something to validate session in server using JSon to comunicate client and server.Any experience or idea? Please, i need help.Thanks in advance. >

[qooxdoo-devel] qooxdoo and JSON login app

2007-04-17 Thread Agustin Almonte F.
Hi, i need to build a login app. I'm thinking in cookies or something to validate session in server using JSon to comunicate client and server. Any experience or idea? Please, i need help. Thanks in advance. Agustín Almonte

[qooxdoo-devel] handling RemoteServiceException in js

2007-04-04 Thread Agustin Almonte F.
Hi, i'm using rpc qooxdoo library in my app and i need to use exceptions messages. In server code i throw exceptions like this: throw new RemoteServiceException("message for exception"); So, in javascript i would like to get the exception message: try{ //call my function }catch(e){ alert(e.

[qooxdoo-devel] App security access

2007-04-03 Thread Agustin Almonte F.
Hi, i'm building an application that require a login. So i have an open question... which is the best way to implement security (in access to pages) in my app? maybe something like a sessions. Please tell me your experience. I'm using rpc inside my app. Thanks in advance Agustín Almonte -

[qooxdoo-devel] qooxdoo 0.6.6 : Problem building app

2007-04-02 Thread Agustin Almonte F.
Hi, im trying to build a new application with skeleton makefile. I changed the default namespace for my app and everything works great using source, but when i built the app javascript errors apears: "this.getComponent() has no properties" "qx.OO.classes[this.getSetting("component")] is not a con

[qooxdoo-devel] Problem in RPC call (timeout)

2007-03-09 Thread Agustin Almonte F.
Hi, i'm using RPC to fill some tables with data. My problem is when the call involves over 100 rows the call throws an exception "Local error 1 : Local time-out expired". is there a way to set the timeout for the operation. I allready start using remoteTableModel, but still want to know if can th

Re: [qooxdoo-devel] Table with checkboxes: recover checkbox

2007-02-02 Thread Agustin Almonte F.
ou solved your problem? if so, how? did you use the BooleanDataCellRenderer or your own one? Please give me out some ideas... Thanks you all in advance! On 1/2/07, Agustin Almonte F. <[EMAIL PROTECTED]> wrote: > > Hi all, first of all happy new year :) > > I'm starting with

[qooxdoo-devel] Table widget questions

2007-01-30 Thread Agustin Almonte F.
Hi, i'm experimenting with table widget and have some questions hope you can help me solve. Is possible to include a button column inside table? i want to add a button to delete the row. Have you done something similar? Is there a way to specify columns width to fill table width automatically? i

[qooxdoo-devel] Problem with cellRenderer extension

2007-01-26 Thread Agustin Almonte F.
Hi, i needed to change the way a table show dates, so i subclass DefaultDataCellRenderer. This is my code: [code name='MyDateCellRenderer.js' ] qx.OO.defineClass("custom.MyDateCellRenderer", qx.ui.table.AbstractDataCellRenderer, function() { qx.ui.table.DefaultDataCellRenderer.call(this); });

[qooxdoo-devel] How to build a confirmation window??

2007-01-25 Thread Agustin Almonte F.
Hi, i need help building a confirmation window. Like confirm javascript function, i need a window that waits for user answer and return it. can this be done with qooxdoo window object? Thanks in advance -- Agustín Almonte -

[qooxdoo-devel] Date object on table

2007-01-23 Thread Agustin Almonte F.
Hi all, i'm using JSon to pass a Date java object into javascript to be displayed on a qooxdoo table. The object marshalling seems to work pretty fine but my problem is the string representation for date javascript object on the table, it only shows dd/mm/yy and i need the hour (hh:mm:ss) too. Is

[qooxdoo-devel] qx.client.Builder How to build a table

2007-01-18 Thread Agustin Almonte F.
Hi, can someone help me to build a table with xml and qx.client.Builder().build? . Examples provided show how to build simple widgets, does anyone built something more complex than buttons? Where can i find documentation about this? Thanks in advance -- Agustín Almonte 

[qooxdoo-devel] XML parsing documentation

2007-01-16 Thread Agustin Almonte F.
Hi, i was looking for cml parsing in qooxdoo and found a qx.xml.Documentclass not documented. can anyone help me with and example or link to a parsing xml app. Thanks in advance. -- Agustín Almonte - Take Surveys. Earn Cash.

[qooxdoo-devel] Disable/Enable Debug PopUp Window

2007-01-11 Thread Agustin Almonte F.
Hi, is there a way to simple disable/enable debug popup window without recompile? Thanks in Advance -- Agustín Almonte - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll ge

[qooxdoo-devel] Get generated form parameters hash

2007-01-08 Thread Agustin Almonte F.
Hi, is there a way to recover all form entries. I want to make a generic function to manage an autogenerated form, but i can't fin the way to recover all form entries like parameter hash (name, value). Any help? Thanks in advance -- Agustín Almonte ---

[qooxdoo-devel] Listener for table cells change

2007-01-05 Thread Agustin Almonte F.
Hi, can anyone help me with an example of a listener for changes in a table cell. Does this event know the row and column for the change? An example would be great. Thanks in advance -- Agustín Almonte - Take Surveys. Earn C

[qooxdoo-devel] Table with checkboxes: recover checkbox selection

2007-01-02 Thread Agustin Almonte F.
Hi all, first of all happy new year :) I'm starting with qooxdoo and working on an table with a checkbox column. My question is how can i recover the marked rows ( rows with checkbox set to true). Have any one a recommendation about an editor for qooxdoo? i'm currently using textMate. Thanks in