Re: [S2] Tag value defined by another tag

2007-06-18 Thread Mark P Ashworth
Good Day, HaH, found the answer to question 2, or at least a workaround for now. 1. Created a graph.jsp with the following code in it <%@ include file="../include.jsp" %> 2. Utilized code found in the Url component that is able to determine an Action's Url 3. Plugged it into the calling jsp

Re: [S2] Tag value defined by another tag

2007-06-18 Thread Mark P Ashworth
Good Day, Thinking about it a bit more, I think this how I would like to define the tag in the JSP file " dataurl="" /> That is the charturl will be hardwired to the file location of the Flash file but the data url will be hardwired to the HomeGraph action. That brings me to another ques

Re: [S2] Tag value defined by another tag

2007-06-18 Thread Mark P Ashworth
Good Day, I decided to use UrlHelper.buildUrl(getChartUrl(), req, res, null); for the chart url because that probably won't change on a per Action basis but I can see that the data url should come from the Action so I will try to use the suggestion that you put forward for the data url. Thanks.

Re: [S2] Tag value defined by another tag

2007-06-18 Thread Dave Newton
This should work assuming you're in a JSP 2.0 container. d. --- Mark P Ashworth <[EMAIL PROTECTED]> wrote: > > Good Day, > > Thank you for the reply. > > I am trying to configure the urls values that my tag > should use, for > example: > >id="graph" > width="600" > height="200

[S2] Tag value defined by another tag

2007-06-18 Thread Mark P Ashworth
Good Day, Thank you for the reply. I am trying to configure the urls values that my tag should use, for example: " dataurl="" /> But the problem is that the resulting HTML contains the tag and has not evaluated it. ?width=600&height=200&data=" /> In my GraphTag I call the super.start() a