Re: [Tacos-devel] Tacos in IE and Firefox

2006-12-14 Thread Frederic Barnabe
and try to glue them back on. Frederic, if you don't mind me asking, what strategy did you follow?Did you use a converter for your For loops? Yiannis On Thu, 2006-12-14 at 10:32 -0500, Frederic Barnabe wrote: > Hi Yiannis, > > By seeing your link, I remember having an issue like thi

Re: [Tacos-devel] Tacos in IE and Firefox

2006-12-14 Thread Frederic Barnabe
Hi Yiannis, By seeing your link, I remember having an issue like this. It happened when we had a lot of serialized objects in our form. We switched from serialized object to another strategy in our For loops to solve the problem. Frederic On 12/14/06, Yiannis Mavroukakis <[EMAIL PROTECTED]> w

Re: [Tacos-devel] updateComponents

2006-08-14 Thread Frederic Barnabe
Hi Kevin,Try downloading the Firebug Firefox plugin.  It's really great for debugging Ajax requests.  It would have show you the error right away.FredOn 8/14/06, Kevin Fightmaster <[EMAIL PROTECTED]> wrote: My problem was a relaxed html coding style works great for browsers... but xml expects th

Re: [Tacos-devel] Tacos Beta 3??? When will it happen?

2006-06-01 Thread Frederic Barnabe
Lately I decided to try dojo 0.3 with my project and I had some problems with dialogs that contains AjaxLinkSubmits.  I don't remember exactly, but I had problems with a dojo method used in tacos.js that does not seem to be available anymore and with the event connections on the AjaxLinkSubmits of

Re: [Tacos-devel] Component combination

2006-05-24 Thread Frederic Barnabe
ting on a For which produces a single result...However, since there is only oneresult(therefore one id??) shouldn't this work? Or is my thinkingentirely wrong?Thank you Frederic,Yiannis -Original Message-From: [EMAIL PROTECTED

Re: [Tacos-devel] Component combination

2006-05-21 Thread Frederic Barnabe
 From: [EMAIL PROTECTED] on behalf of Frederic Barnabe Sent: Fri 19/05/2006 18:15To: tacos-devel@lists.sourceforge.netCc:Subject: Re: [Tacos-devel] Component combination Hi Yiannis,It's because that when you put your Any component inside th

Re: [Tacos-devel] Component combination

2006-05-19 Thread Frederic Barnabe
Hi Yiannis,It's because that when you put your Any component inside the For, you end up with multiple html elements having the same id.  Ids are supposed to be unique in an HTML document.  You have to specify a unique id for each row and in the updateComponent of the link put this unique id.  Check

Re: [Tacos-devel] Component combination

2006-05-18 Thread Frederic Barnabe
Hi Yannis,I don't think you could make this with an InlineEditBox (even if it's the same behavior), so I would try to use a ajax direct link that changes a boolean property of the page.  In the template, you add conditions that either shows the link or the auto completer depending on the boolean va

Re: [Tacos-devel] Some problems with dialogs

2006-05-16 Thread Frederic Barnabe
Is there a problem with the mailing list ?  I just received the last message which has been sent 4 days ago.  It's a chance I checked the bug report before.I tried to modify AjaxLinkSubmit to support external forms, like proposed in the bug 117 comments, but I don't think it will be easy.  It's a f

[Tacos-devel] Re: Some problems with dialogs

2006-05-10 Thread Frederic Barnabe
code locally so that the _javascript_ always initialize the dialog and it seems to work fine.  Like I said earlier, this could cause other problems, but I don't see them in my application.  I filed a bug report on this : http://tacoscomponents.jot.com/BugReporter/Bug119FredericOn 5/9/06, Freder

[Tacos-devel] Some problems with dialogs

2006-05-09 Thread Frederic Barnabe
Hi everybody,I'm playing with dialogs for my project and ran across 2 problems.The first is when I have an AjaxLinkSubmit inside a dialog.  When I click on it to send the data to the server and close the dialog, the response tries to connect the link again with dojo, but fails with a bad srcObj err

Re: [Tacos-devel] IDE setup

2006-04-03 Thread Frederic Barnabe
Hi Markus,I have a project Tacos4 that is regularly updated from CVS (I know, I will probably have to switch to Subversion soon...).  My main project that uses tacos is defined so that the Tacos4 project is in the build path.  I think the important thing is that you must have the src/java and src/d

Re: [Tacos-devel] Language change on AjaxSubmit

2006-03-31 Thread Frederic Barnabe
Ok, it is done.Thanks.On 3/31/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Yes please do. The bugtracker lets you attach files. That would be the best place. On 3/31/06, Frederic Barnabe < [EMAIL PROTECTED]> wrote:I have a link that switch the locale from English to French in my bord

[Tacos-devel] Language change on AjaxSubmit

2006-03-31 Thread Frederic Barnabe
I have a link that switch the locale from English to French in my border component.  This must be a LinkSubmit, because I must save the state of the form contained in the current page.  When I had a ordinary form and a LinkSubmit, everything worked fine, but once I switched to a AjaxForm and AjaxLi

Re: [Tacos-devel] Problem with AjaxEventSubmit and IE6

2006-02-28 Thread Frederic Barnabe
it's applied now.Ie has windows "web script debugger"..The only way I've been able to install it is using a microsoft office cd. It's under an advanced/custom installation option list. It may be possible to download it from microsoft seperately. IE 7 may have even b

Re: [Tacos-devel] Problem with AjaxEventSubmit and IE6

2006-02-27 Thread Frederic Barnabe
nly way I've been able to install it is using a microsoft office cd. It's under an advanced/custom installation option list. It may be possible to download it from microsoft seperately. IE 7 may have even better ways to do this now though. On 2/25/06, Frederic Barnabe < [EMAIL PR

Re: [Tacos-devel] Input masks

2006-02-25 Thread Frederic Barnabe
I recently switched form the official beta jar file to the CVS repository version so I could use the new calendar and ran across a problem that looks related to the mask change.  Here is the context:The FormComponentEventWorker tries to load the file /net/sf/tacos/util/Masks.script in the createScr

Re: [Tacos-devel] Problem with AjaxEventSubmit and IE6

2006-02-25 Thread Frederic Barnabe
ow. Unless we are cancelling out the event before doing the request, which would explain not being able to tab out of the field. I'll double check that :) jOn 2/24/06, Frederic Barnabe < [EMAIL PROTECTED]> wrote: Hi,I have a AjaxEventSubmit that is bound to a TextField on the onchange event

Re: [Tacos-devel] DatePicker IE6 Issues

2006-02-24 Thread Frederic Barnabe
I updated tacos4 from the branch tacos4-alpha-7-pretap4-1 yesterday night and it worked fine.  The only thing that I had to do is set the css and the images from the site.  I personally thing it's way better than the one from dojo. FredOn 2/24/06, Ben Dotte <[EMAIL PROTECTED]> wrote:

[Tacos-devel] Problem with AjaxEventSubmit and IE6

2006-02-24 Thread Frederic Barnabe
Hi,I have a AjaxEventSubmit that is bound to a TextField on the onchange event.  On Firefox, when I type something in the textfield and hit the tab key, the focus goes to next field, the event is sent to the server and I can continue to fill the form while the response come back.  The search result

[Tacos-devel] Client Side Validation

2006-02-09 Thread Frederic Barnabe
ific listener but in 'refresh' mode ? Frederic Barnabe