Re: T5: Buttons, JS popup, Ajax/Zone and ActionLink

2011-01-14 Thread Anna Vo
The alternative to hiding a link on the page (if you want a better separation of logic) is to pass a JSonObject with your data directly to the JavaScript method. This way if you need to you can easily pass additional data to the client for processing. So at the top of your class @Import(library =

Re: Worthy FAQ?: What is the best way to return a zone update and a javascript as response to an XHR request

2010-09-20 Thread Anna Vo
Markus- You can inject ComponentResources, pass the zoneId and eventlink to your javascript method with a JSONObject in your javascript initializer call , and then call the tapestry zone update via client side javascript. Example Java Code: @Inject private ComponentResources resources; @Environ

RE: IE html/css problem

2008-11-24 Thread Anna Vo
You can also try installing the Internet Explorer Developer Toolbar if you don't have that yet: http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4 511-BB3E-2D5E1DB91038&displaylang=en Usually problems between browsers is CSS related not HTML, if your HTML is well-formed. You

[T4.1.5] Strange page within page rendering with only particular errors

2008-02-21 Thread Anna Vo
This is more of an irritation than a major issue, but I am curious to know why it occurs. To reproduce, delete a script file that a page calls and forget to remove the script call from the html. (). When you try to load the page, it starts rendering the html of that page and then begins rendering

RE: t4.1.2 internet explorer only issue with cycle.getResponseBuilder().updateComponent("foo")

2007-07-24 Thread Anna Vo
would change on the server side for any specific browser (except maybe with asset cache handling) - so I'd turn on client side debugging and see what happens? (and also install micro$oft script debugger - http://www.microsoft.com/downloads/details.aspx?FamilyID=2f465be0-94fd-4 569-b3c4-dffd

t4.1.2 internet explorer only issue with cycle.getResponseBuilder().updateComponent("foo")

2007-07-20 Thread Anna Vo
I have a property selection that when selected updates a page property and then a few components. In Safari and FF (mac and pc) everything works, but when I test in IE7 and IE6 it does everything (sets the page property) but then fails to update the specified components (some text and some form ele

RE: css overrides (ie6, ie7,firefox) ?

2007-07-16 Thread Anna Vo
ailto:[EMAIL PROTECTED] Sent: Monday, July 16, 2007 11:19 AM To: Tapestry users Subject: Re: css overrides (ie6, ie7,firefox) ? really not a good idea appending jsessionid to a href link! On 7/16/07, Anna Vo <[EMAIL PROTECTED]> wrote: > > Just a thought... > > Have you checked to mak

RE: css overrides (ie6, ie7,firefox) ?

2007-07-16 Thread Anna Vo
Just a thought... Have you checked to make sure that the browser is pulling in the css file correctly? We've had issues in the past when the session id was appended to the path causing issues with it finding the css file. So it's possible it may not be overriding at all... -Original Me

RE: EventListener questions

2007-04-10 Thread Anna Vo
If you are using a DirectLink or a Submit button you do not need to use the @EventListener annotation. You can specify using updateComponents which elements to refresh. See http://tapestry.apache.org/tapestry4.1/components/link/directlink.html and http://tapestry.apache.org/tapestry4.1/components/f

RE: Tap4.1.2 - DirectLink updateComponents & EventListener not supported by Safari?

2007-02-15 Thread Anna Vo
her than testing > safari support. > > I'd love to be able to test things on Safari, but can't really afford > to get one. Maybe you can find more users who want safari support and > send me one? ;) > > On 2/12/07, Anna Vo <[EMAIL PROTECTED]> wrote: > >

Tap4.1.2 - DirectLink updateComponents & EventListener not supported by Safari?

2007-02-12 Thread Anna Vo
I have some DirectLinks using updateComponents and also some links that use @EventListener that work great on Win FF 1.5+, Win IE6+, Mac FF1.5+, but not Safari 1.3+ or 2. Is anyone having the same issue? Is this a known bug or is the Safari browser simply not supported? Example code using @E

Tap4.1.2. - @DropDownDatePicker component validation - resets to previous value for invalid dates without user awareness

2007-02-06 Thread Anna Vo
The @DropDownDatePicker resets to the previous value if someone manually changes the date to an invalid one, but the user is unaware of any validation issues. For example, we have an Expiration Date field that is set for 2/28/2007 and a user manually changes it to 2/29/2008. When they submit the f

Autocompleter 4.1.1 to 4.1.2 changes?

2007-01-26 Thread Anna Vo
We just recently upgraded from 4.1.1 to 4.1.2 (2007 01 21) to get some of the fixes we needed. The autocompleters are now no longer working, but were just working in 4.1.1 (typing doesn't do anything, but you can click on the arrow down icon to get the list). Has anyone encountered this or are ther

RE: Re: T41: Are there any known problems with BASE tag?

2007-01-22 Thread Anna Vo
path nonsense finally yesterday. It'll require a new dojo build in the tapestry source, probably will happen today in the 4.1.2-SNAPSHOT version. On 1/18/07, Anna Vo <[EMAIL PROTECTED]> wrote: > > > > > We have been having issues with our CSS image URLs also. > > >

RE: Re: T41: Are there any known problems with BASE tag?

2007-01-18 Thread Anna Vo
> > We have been having issues with our CSS image URLs also. > > Example: > url(/assets/static/dojo/src/widget/templates/DatePicker.cssimages/dpBg.g > if) >>if your css is in a css folder in the context, you should use: >>url( "../assets/... >>if its direct in the context dir, use >>url( "./as

RE: T41: Are there any known problems with BASE tag?

2007-01-18 Thread Anna Vo
Ron- Can you give us an example of a wrong URL? We have been having issues with our CSS image URLs also. Example: url(/assets/static/dojo/src/widget/templates/DatePicker.cssimages/dpBg.g if) I've tried adding inline style tags with the correct image paths directly into the HTML, but Tapestry

RE: Tapestry 4.1.1: incorrect dojoPath, tapestryPath - session id is appended

2007-01-04 Thread Anna Vo
seeing this as well? Hope the above helps. Anna -Original Message- From: Stefan Esterer [mailto:[EMAIL PROTECTED] Sent: Thursday, January 04, 2007 3:08 AM To: users@tapestry.apache.org Subject: Re: Tapestry 4.1.1: incorrect dojoPath, tapestryPath - session id is appended I'm hav

Tapestry 4.1.1: incorrect dojoPath, tapestryPath - session id is appended

2007-01-03 Thread Anna Vo
A little while ago I had posted this error, which occurs the first time our site is loaded: Could not load 'dojo.logging.Logger'; last tried '__package__.js' dojo.js;jsessioni... (line 14) Could not load 'tapestry.namespace'; last tried '/__package__.js' dojo.js;jsessioni... (line 14) [Exception..

RE: relative css image path references?

2006-12-29 Thread Anna Vo
pestry asset service to manage it instead of the servlet container. > (you probably want this to happen anyways as I'm pretty sure no > servlet container/filter floating around does as much good for assets > as the tapestry asset service can ) > > I guess you can stick your ver

relative css image path references?

2006-12-28 Thread Anna Vo
We have the same issue described here with our calendar looking funny due to the CSS path references: http://jira.codehaus.org/browse/JETTY-178 Example: .calendarBodyContainer { url(/dojo/src/widget/templates/DatePicker.cssimages/dpBg.gif) } We are running Tapestry 4.1.1, Tomcat for our testing

Tapestry 4.1.1 Dialog component gives secure and nonsecure warning in ie7

2006-12-28 Thread Anna Vo
Just wondering if anyone has used the Tap 4.1.1 Dialog component with secure SSL pages. I am seeing "This page contains both secure and nonsecure items" warning message in IE7. For some reason it doesn't do this in IE6 or FF. I checked for iframes with no src on the page, used the FF extension Li

RE: Tapestry 4.1.1 dojo issue

2006-12-08 Thread Anna Vo
Jesse- If you only select Red and Orange from the example (by double-clicking on each of them individually) and click Update it will only display Orange on the next page if Orange is the one that is highlighted in the Selected list. If you select multiples and all of these are selected/highlighte