Re: Re: Struts7 debug-tag with rendering problem

2025-04-01 Thread Lukasz Lenart
wt., 1 kwi 2025 o 12:09 Ute Kaiser napisał(a): > yes, I use Struts 7.0.3 > I suppose it is just a missing , that browser usually excuses for html > but not for my xml output. I've used the example app but I cannot find the issue, there is opening & closing tag, also I used W3C validator to che

Aw: Re: Struts7 debug-tag with rendering problem

2025-04-01 Thread Ute Kaiser
Hi Lukasz, yes, I use Struts 7.0.3 I suppose it is just a missing , that browser usually excuses for html but not for my xml output. Thx and best regards Ute - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For ad

Re: Struts7 debug-tag with rendering problem

2025-04-01 Thread Lukasz Lenart
Do you use Struts 7.0.3? I addressed some issues around in this version https://issues.apache.org/jira/browse/WW-5517 Also you can take a look on the Debugging example https://github.com/apache/struts-examples/tree/main/debugging-struts Cheers Lukasz czw., 27 mar 2025 o 10:25 Ute Kaiser napisa

Struts7 debug-tag with rendering problem

2025-03-27 Thread Ute Kaiser
Hi, using in jsp causes my XML-Output to crash. I thought I needed it because my jsp does not display the expected output and therefore I wanted to inspect the value stack. Any help appreciated to use this tag. Best regards Ute XML-Verarbeitungsfehler: Nicht übereinstimmendes Tag. Erwartet: .

Re: Struts 7.0.0 - JSP rendering is taking 3X time compare to struts 6.3.0.2

2024-12-26 Thread Lukasz Lenart
Hi > > After upgrading to version 7.0.0, the JSP rendering time has significantly > increased from around 500ms to approximately 1.5 seconds. Upon further > investigation, it was discovered that the increase in time is primarily due > to Ognl.getValue taking longer than it did in the p

Re: Strtus2-jasper plugin rendering

2020-04-12 Thread Lukasz Lenart
t found, cannot use > glyph rendering > > even if i downgrade the version of jasper report library and jasper report > studio to 6.10.0 version the result still the same. > > anyone can give me a solution for render jasper report? > Looks like this has nothing to do with Str

RE: s:select rendering

2012-11-26 Thread Martin Gainty
à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > From: lukaszlen...@apache.org > Date: Mon, 2

Re: Re: s:select rendering

2012-11-26 Thread Lukasz Lenart
2012/11/21 Omar Colombari : > I'm using >org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter > > Regarding WebSphere 6.x I'm not able to find any documentation on the > problem. As I said, it's really hard to debug your problem as I don't have access to WebSphere 6.1 :\ But i

Re: Re: s:select rendering

2012-11-21 Thread Omar Colombari
I'm using org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter Regarding WebSphere 6.x I'm not able to find any documentation on the problem. Omar.

Re: s:select rendering

2012-11-20 Thread Lukasz Lenart
2012/11/20 Omar Colombari : > Server is Websphere 6.1 > Struts2 2.3.1.2 I suspected that it will be WebSphere :\ I think this will not help http://struts.apache.org/2.x/docs/websphere.html Do you use the new Filter or still base on FilterDispatcher ? The problem is that I cannot test on WebSphe

Re: s:select rendering

2012-11-20 Thread Omar Colombari
Server is Websphere 6.1 Struts2 2.3.1.2 The jar list: asm-3.3.jar asm-commons-3.3.jar commons-beanutils-1.7.0.jar commons-codec-1.2.jar commons-collections-3.1.jar commons-digester-2.0.jar commons-fileupload-1.2.2.jar commons-io-1.3.2.jar commons-io-2.0.1.jar commons-lang-2.5.jar commons-loggin

Re: s:select rendering

2012-11-19 Thread Lukasz Lenart
2012/11/19 Omar Colombari : > The "s:select" component sometime has a wrong rendering. In the html page > is shown as value of the options the object references (like @package.bean) > or > for the "s:select" component using fixed list value sometime is rendering

value rendering failure

2012-04-09 Thread Scott Koenig
Sorry for the vague subject, I wasn't sure how to phrase the problem. Anyway, I am trying to track down the root cause of a bug we were having on our staging environment. One of our selects, with jsp code as follows was populating the select in the HTML with the correct number of s but was se

Re: Call a function after invocation but before jsp rendering

2012-02-26 Thread Jeffrey Black
FWIW, the AnnotationWorklowInterceptor along with the @BeforeResult may be utilized. struts.apache.org/2.x/docs/annotationworkflowinterceptor.html On Feb 15, 2012, at 2:58 PM, Markus Demetz wrote: > perfect, didn't know that interceptor..! > thank you!! > > Am 15.02.2012 21:54, schrieb Dave

Re: Call a function after invocation but before jsp rendering

2012-02-15 Thread Markus Demetz
perfect, didn't know that interceptor..! thank you!! Am 15.02.2012 21:54, schrieb Dave Newton: On Wed, Feb 15, 2012 at 3:52 PM, Markus Demetz wrote: to be concrete, I want to call a createTitle() method which is common for all my actions (extending BaseAction with a default implementation of c

Re: Call a function after invocation but before jsp rendering

2012-02-15 Thread Dave Newton
On Wed, Feb 15, 2012 at 3:52 PM, Markus Demetz wrote: > to be concrete, I want to call a createTitle() method which is common for > all my actions (extending BaseAction with a default implementation of > createTitle()), but when I use an Interceptor for that and call it after > the action invocati

Call a function after invocation but before jsp rendering

2012-02-15 Thread Markus Demetz
hi there, my application uses struts2 (latest version), siles with JSP and hibernate. what I am trying to do is to call a method after the action has been executed, but before the JSP is getting rendered. to be concrete, I want to call a createTitle() method which is common for all my actions

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread Dave Newton
_ > From: Dave Newton > To: Struts Users Mailing List ; umamaheswara rao < > uma_kagi...@yahoo.com> > Sent: Monday, February 13, 2012 9:52 AM > Subject: Re: Rendering Struts2 tags from the Action class content for the > JSP template. > > You're not unde

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread umamaheswara rao
: Rendering Struts2 tags from the Action class content for the JSP template. You're not understanding what I'm saying. If you render custom tags in the body, they're not going to be interpreted as custom tags. For custom tags to be rendered, they need to go through the JSP compilation pro

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread Dave Newton
gt; uma_kagi...@yahoo.com> > Sent: Monday, February 13, 2012 9:46 AM > Subject: Re: Rendering Struts2 tags from the Action class content for the > JSP template. > > What's this, then? > > > content1+=""; > > Dave > > On Mon, Feb 13, 2012 at 9:42 A

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread umamaheswara rao
Hi,     We have just renamed theme ajax and nothing else.   Best Regards, Umamaheswara Kagitha From: Dave Newton To: Struts Users Mailing List ; umamaheswara rao Sent: Monday, February 13, 2012 9:46 AM Subject: Re: Rendering Struts2 tags from the Action class

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread umamaheswara rao
o: Struts Users Mailing List Sent: Friday, February 10, 2012 11:50 PM Subject: Re: Rendering Struts2 tags from the Action class content for the JSP template. Custom tags need to go through the rendering process, which they won't do if they're written to the body in an action. Dave (par

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread Dave Newton
m submission tags. > <%@> > > > Best Regards, > Umamaheswara Kagitha. > > > From: Dave Newton > To: Struts Users Mailing List > Sent: Friday, February 10, 2012 11:50 PM > Subject: Re: Rendering Struts2 tags from the Action class cont

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-13 Thread umamaheswara rao
s Mailing List Sent: Friday, February 10, 2012 11:50 PM Subject: Re: Rendering Struts2 tags from the Action class content for the JSP template. Custom tags need to go through the rendering process, which they won't do if they're written to the body in an action. Dave (pardon brevity and

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-10 Thread Dave Newton
Custom tags need to go through the rendering process, which they won't do if they're written to the body in an action. Dave (pardon brevity and typos, on cell) On Feb 10, 2012 11:44 PM, "umamaheswara rao" wrote: > Hi, > > I have defined struts tag in myApp_hea

Re: Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-10 Thread umamaheswara rao
et me know if you could throw some light...I appreciate your help and time.     Best Regards, Ukagitha. From: Chris Pratt To: Struts Users Mailing List ; umamaheswara rao Sent: Friday, February 10, 2012 4:32 PM Subject: Re: Rendering Struts2 tags from the Action class content for the JSP templa

Rendering Struts2 tags from the Action class content for the JSP template.

2012-02-10 Thread umamaheswara rao
  Hello List subscribers, I'm working on struts2 application to incorporate the Double click submission issue by using Tokens. But I have one issue here..Currently Body content of a JSP is building in the Action class and putting back in JSP template. So, far we are not using any struts spe

Re: How do i test Struts 2 jsp page rendering time.

2011-09-13 Thread Maurizio Cucchiara
I don't know if timer interceptor [1] is what your are looking for. Be aware that TI computes the execution time of every action and not the one of the jsp rendering. [1] http://struts.apache.org/2.2.3.1/docs/timer-interceptor.html Maurizio Cucchiara On 13 September 2011 10:18, moha

How do i test Struts 2 jsp page rendering time.

2011-09-13 Thread mohan rao
Hi, I want to test jsp page rendering time used struts-tags. I put a log message at the end of the action class before returning result and again at first calling interceptor because it will be executed last. And after result is sending all the interceptors will be executed in reverse order

Re: DOJO Rendering

2010-11-04 Thread Dave Newton
Seems like this would be best asked on a Dojo list or by perusing their demos/ samples-- almost everything in Dojo is much different than it was in S2's old 0.4.3 version. Dave On Nov 3, 2010 5:37 AM, "Richard Sayre" wrote: > Due to the deprecation of the DOJO plugin I have been trying to > recr

DOJO Rendering

2010-11-03 Thread Richard Sayre
Due to the deprecation of the DOJO plugin I have been trying to recreate all of my web site GUI without using Struts 2 tags. When I create a Tabbed Pane, the web site loads, then the Tabbed Pane renders in view of the user. Before the UI renders it looks like a mess. When I used the struts 2 tag

How to control the rendering of struts UI tags? [Solved]

2010-05-27 Thread Ken
Searching I found something to the effect "did you change the rendering mode to css"... and then the OP went on his way... Where is this switch flicked? Oh, just because I've got inertia found the answer in "Struts 2 in Action", but was looking user the wrong headings.

Re: how to customize the rendering of a tabbedpanel? struts2, dojo plugin

2010-02-05 Thread Stephen Ince
ml { height: 99%;overflow:hidden; >>>> margin-bottom:0;padding-bottom:0;} >>>>   >>>> >>>> >>>> >>>> >>> preload="false" style="width:100%;height:100%"> >>>> >>>> Steve >

Re: how to customize the rendering of a tabbedpanel? struts2, dojo plugin

2010-02-05 Thread Jake Vang
>>      body, html { height: 99%;overflow:hidden; >>> margin-bottom:0;padding-bottom:0;} >>>   >>> >>> >>> >>> >> preload="false" style="width:100%;height:100%"> >>> >>> Steve >>> &g

Re: how to customize the rendering of a tabbedpanel? struts2, dojo plugin

2010-02-05 Thread Stephen Ince
t; >> > preload="false" style="width:100%;height:100%"> >> >> Steve >> >> >> >> On Thu, Feb 4, 2010 at 10:25 AM, Jake Vang wrote: >>> i'm using the in the struts2-dojo-plugin. i have a >>> few questions on co

Re: how to customize the rendering of a tabbedpanel? struts2, dojo plugin

2010-02-05 Thread Jake Vang
%"> > > Steve > > > > On Thu, Feb 4, 2010 at 10:25 AM, Jake Vang wrote: >> i'm using the in the struts2-dojo-plugin. i have a >> few questions on controlling the display/rendering of this component. >> >> 1. can i make the expand 100% in height?

Re: how to customize the rendering of a tabbedpanel? struts2, dojo plugin

2010-02-04 Thread Stephen Ince
-bottom:0;padding-bottom:0;} Steve On Thu, Feb 4, 2010 at 10:25 AM, Jake Vang wrote: > i'm using the in the struts2-dojo-plugin. i have a > few questions on controlling the display/rendering of this component. > > 1. can i make the expand 100% in height? i've tri

how to customize the rendering of a tabbedpanel? struts2, dojo plugin

2010-02-04 Thread Jake Vang
i'm using the in the struts2-dojo-plugin. i have a few questions on controlling the display/rendering of this component. 1. can i make the expand 100% in height? i've tried several things: a) place the inside a and set the height of the table to 100%, b) set the height to 100%,

Re: error when rendering - java.net.SocketException: Broken pipe

2008-09-11 Thread Jeromy Evans
sharath karnati wrote: Hi All, In weblogic server log, I found these error multiple times. Is anyone come accross this kind of problem? 2008-09-11 07:12:47,415 ERROR [org.apache.struts2.components.UIBean] - error when rendering java.net.SocketException: Broken pipe One cause is

error when rendering - java.net.SocketException: Broken pipe

2008-09-11 Thread sharath karnati
Hi All,     In weblogic server log, I found these error multiple times. Is anyone come accross this kind of problem?      2008-09-11 07:12:47,415 ERROR [org.apache.struts2.components.UIBean] - error when rendering java.net.SocketException: Broken pipe  at

Re: Tag Data Rendering Issue

2008-05-14 Thread Himanshu Rathore
Hi Laurie, A silly mistake at my end. Had included a TD in CSS wherein text-transform was set to capitalise. And I didn't pay much attention to this particular attribute assuming that nothing would be there. Thanks for your help On Tue, May 13, 2008 at 10:32 PM, Laurie Harper <[EMAIL PROTECTED]>

Re: Tag Data Rendering Issue

2008-05-13 Thread Laurie Harper
Himanshu Rathore wrote: When using tag, the first character of error message is automatically getting converted to upper case. I haven't set any "text-transform" property in my CSS. If I do "View Source", I see proper text but on JSP its behaving weirdly. My CSS: ..errorMessage { color: red; f

Tag Data Rendering Issue

2008-05-13 Thread Himanshu Rathore
When using tag, the first character of error message is automatically getting converted to upper case. I haven't set any "text-transform" property in my CSS. If I do "View Source", I see proper text but on JSP its behaving weirdly. My CSS: .errorMessage { color: red; font: 10px verdana, arial, h

RE: YUI and S2 : problem in rendering date component

2008-02-13 Thread Dave Newton
--- Ravichandra C <[EMAIL PROTECTED]> wrote: > I think in that case, I need to put a string text box and convert the > entered string value to Date by using java conversion on server submit. I'm not sure how using the YUI calendar component implies that, but okay. > Is it possible for me to avoid

RE: YUI and S2 : problem in rendering date component

2008-02-13 Thread Ravichandra C
validating it. Any ideas? Ravi -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 13, 2008 6:16 PM To: Struts Users Mailing List Subject: Re: YUI and S2 : problem in rendering date component Why not use the YUI calendar component? I'd be wary of m

Re: YUI and S2 : problem in rendering date component

2008-02-13 Thread Dave Newton
Why not use the YUI calendar component? I'd be wary of mixing multiple JavaScript libraries simply because they may do different DOM manipulations on load, have specific load order requirements, and who knows what else. Jeremy already explained some of the load/instantiation issues. I don't think

Re: YUI and S2 : problem in rendering date component

2008-02-13 Thread ravi_eze
hi, My implementation is as follows: I have a page that displays a datetimepicker provided by struts2(2.0.9). When i tried to put the same into the YUI tabbed panel the timepicker componetn is not being displayed. The following is the code in the YUI:

Re: YUI and S2 : problem in rendering date component

2008-02-11 Thread Jeromy Evans
The issue is that *something* needs to call the code to instantiate the datetimepicker after the html is added to the DOM. What library are you using to asynchronously load the fragment that contains the datetimepicker? And where is the script that instantiates the datetimepicker widget? Embe

YUI and S2 : problem in rendering date component

2008-02-11 Thread ravi_eze
-rendering-date-component-tp15426105p15426105.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [S2] rendering a matrix (like a chessboard)

2008-01-07 Thread Yayo
create a custom tag for the board rendering ^g^ On Jan 7, 2008 12:45 PM, GF <[EMAIL PROTECTED]> wrote: > I have matrix of objects.. somekind like ChessBoardPosition[][] > I want to render it using Struts2. > > You can imagine my matrix as a Chessboard.. > I use 2 itera

[S2] rendering a matrix (like a chessboard)

2008-01-07 Thread GF
tile will do the work of rendering it depending of which kind of piece there is on it? Or maybe is better to do something different? Any idea is appreciated. Thanks!! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Parameters to rendering report in format XLS

2007-12-14 Thread Manoel Pimentel
Hi to everyone I use the action of jasper type to rendering report in format XLS in my application, it work very fine, but, now I need set the few parameters like JRXlsExporterParameter.IS_DETECT_CELL_TYPE. Please, i need to know, how I can put this options in my struts.xml. Regards

Re: rendering

2007-12-12 Thread Laurie Harper
t in struts.xml of place it in struts.properties (in classpath) wild_oscar wrote: I am finding it strange that is rendered as: Is this the normal rendering of the textfield? Can't I render it just as a normal input tag, without all the tr and td's? Because I c

Re: rendering

2007-12-12 Thread Randy Burgess
Mailing List > Date: Wed, 12 Dec 2007 06:18:14 -0800 (PST) > To: > Subject: Re: rendering > > > Ah! I didn't know there were predefined themes. > > Thank you very much for your quick reply. > > > Alberto A. Flores wrote: >> >> Try theme="simpl

Re: rendering

2007-12-12 Thread wild_oscar
es (in classpath) > > wild_oscar wrote: >> I am finding it strange that >> >> >> >> is rendered as: >> >> >> >> >> >> >> >> >> >> Is this the normal rendering of the textfield? Can

Re: rendering

2007-12-12 Thread Alberto A. Flores
Try theme="simple" in your tag. Alternatively, you can set up a constant in struts.xml of place it in struts.properties (in classpath) wild_oscar wrote: I am finding it strange that is rendered as: Is this the normal rendering of the textfield? Can't I

rendering

2007-12-12 Thread wild_oscar
I am finding it strange that is rendered as: Is this the normal rendering of the textfield? Can't I render it just as a normal input tag, without all the tr and td's? Because I can't seem to get my table right when I want to do

Re: how to return to originating jsp when rendering jasperreport from struts2

2007-10-01 Thread bhanupratap
Hai, Can u please send me your complete code regarding this. -- View this message in context: http://www.nabble.com/how-to-return-to-originating-jsp-when-rendering-jasperreport-from-struts2-tf4108965.html#a12976873 Sent from the Struts - User mailing list archive at Nabble.com

Exception while rendering

2007-07-24 Thread Charbel Abdul-Massih
Hi guys, Whenever I try to access a struts 2 page, and before the page is fully rendered, I click on a link to access another page, I get the following exception in the log. Is there a way to fix this, or hide the exception if it's not crucial??? I pasted the first part of the exception...In th

how to return to originating jsp when rendering jasperreport from struts2

2007-07-19 Thread travers
I am rendering a jasper report (pdf format) from within a jsp (button). The report gets created, but the action is a new html (the action url) page and I need to use the browsers back to return to the original page. Is there a way to generate the pdf, without navigating to the new html. Below is

Re: Rendering an image into

2007-07-13 Thread travers
enders it as text (well actually the binary >> stuff inside the png) >> >> >> >href="%{ajaxCallUrl}" loadingText="Loading Chart..."> >> >> >> -- >> View this message in context: >> http://ww

Re: Rendering an image into

2007-07-13 Thread Frank W. Zammetti
I have a struts2 action returning a JfreeChart chart as png. > > Without ajax, shows the chart > correctly, but the following renders it as text (well actually the binary > stuff inside the png) > > > href="%{ajaxCallUrl}" loadingText="Loading

Rendering an image into

2007-07-13 Thread travers
Hi is it possible to specify href in shows the chart correctly, but the following renders it as text (well actually the binary stuff inside the png) -- View this message in context: http://www.nabble.com/Rendering-an-image-into-%3Cs%3Adiv-from-ajax-tf4074632.html#a11580059 Sent

Re: Dynamically rendering image - Servlet/Action

2007-07-02 Thread Stjepan Brbot
- Original Message - From: "Niall Pemberton" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: 2. srpanj 2007 16:49 Subject: Re: Dynamically rendering image - Servlet/Action There is just such a DownLoad action designed to help with this - you just

Re: Dynamically rendering image - Servlet/Action

2007-07-02 Thread Stjepan Brbot
Actually I can do that (make database connection from servlet rendering an image) but I'd like to avoid that and I'll explain why. I'm working on one small dashboard. On this dashboard I have one select into database for retrieving 10-20 rows, each row data is represented by on

Re: Dynamically rendering image - Servlet/Action

2007-07-02 Thread Larry Meadors
wsers that seem to want to ignore the mime type and insist on fetching a *.do file. Retarded. anyway, you can read that parameter in your servlet, fetch the data, and send it back. Easy. :-) Larry On 7/1/07, Stjepan Brbot <[EMAIL PROTECTED]> wrote: Hi, I have one classic HttpServlet for

Re: Dynamically rendering image - Servlet/Action

2007-07-02 Thread Niall Pemberton
On 7/1/07, Stjepan Brbot <[EMAIL PROTECTED]> wrote: Hi, I have one classic HttpServlet for dynamically rendering an image from given (database retrieved) data. Actually this servlet takes data from session (previously retrieved from database and put inside session) and renders the image.

Dynamically rendering image - Servlet/Action

2007-07-01 Thread Stjepan Brbot
Hi, I have one classic HttpServlet for dynamically rendering an image from given (database retrieved) data. Actually this servlet takes data from session (previously retrieved from database and put inside session) and renders the image. Since this is not Action but classis servlet it is

RE: [S2] Why are my struts pages rendering slow

2007-06-05 Thread Jon Cruz
. Same thing. Faster on IE and slow rendering on Firefox. I figured it was the fact that with that many form controls, (anywhere from 30 to 150 of them on one page), the browser was taking a little longer to display the page. I took the CSS code out that hid my form controls, (so that you would

RE: [S2] Why are my struts pages rendering slow

2007-06-05 Thread Charbel Abdul-Massih
: Struts Users Mailing List Subject: RE: [S2] Why are my struts pages rendering slow I am not using the ajax theme...I'm not using any specialized concepts...just straight struts 2 tags, and a combination of the css_xhtml theme and the simple theme... I did notice however, that when my page onl

RE: [S2] Why are my struts pages rendering slow

2007-06-05 Thread Dave Newton
--- Charbel Abdul-Massih wrote: > I did notice however, that when my page only has > tags, to write out text, and no form > fields, it renders faster... http://struts.apache.org/2.x/docs/performance-tuning.html Note in particular the exclamation-pointed section titled "Copy the /template direct

RE: [S2] Why are my struts pages rendering slow

2007-06-05 Thread Charbel Abdul-Massih
aster... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allen Gilliland Sent: Tuesday, June 05, 2007 3:24 PM To: Struts Users Mailing List Subject: Re: [S2] Why are my struts pages rendering slow do you have an s:head tag in the head section of your pages? are you usin

Re: [S2] Why are my struts pages rendering slow

2007-06-05 Thread Allen Gilliland
do you have an s:head tag in the head section of your pages? are you using the ajax theme? i have noticed that my pages are a lot slower when they have to include and initialize the dojo stuff. -- Allen Charbel Abdul-Massih wrote: I have a page with several form fields (checkboxes, drop do

[S2] Why are my struts pages rendering slow

2007-06-05 Thread Charbel Abdul-Massih
I have a page with several form fields (checkboxes, drop downs, radio buttons)... The page renders slowly from top to bottom, as if it's being streamed...I posted this same issue a couple of weeks ago, and I'm still trying to figure out the solution... I have devMode = false, and tried ever

[s2] s:textfield id rendering issue

2006-12-01 Thread Dave Newton
Hi, I'm using array notation in an s:textfield value attribute. The name renders properly, the id is being rendered all funky with the index value un-parsed and the various EL prefixes still in there, so it looks something like exdata_[%{#status.index}]__foo. I was following the guidelines in the

Design approach for customized layout and dynamic rendering

2006-11-29 Thread Mel Walker
I need to implement a customized-page feature so the layout and the content of the page are defined by user. I am not sure which approach will be the right choice -- easy to implement and extend for the future. Will you recommend Tiles, Struts Layout, or something else? I am new to Struts

Re: Has anyone had this problem? Getting 3 question marks ??? at top of HTML page using action class and rendering JSP in browser

2006-08-02 Thread Ed Griebel
anyone had this problem? Getting 3 question marks ??? at top of HTML page using action class and rendering JSP in browser Thank you - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Has anyone had this problem? Getting 3 question marks ??? at top of HTML page using action class and rendering JSP in browser

2006-08-02 Thread Patterson, Marie E [CPB]
Has anyone had this problem? Getting 3 question marks ??? at top of HTML page using action class and rendering JSP in browser Thank you - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Rendering an array as a list box

2006-07-06 Thread Adam Gordon
Yea, that's what I had. The problem, as usual, was programmer error. I had assumed that the array property was properly being set on the request when in fact it wasn't. I was debugging it with Eclipse and it appears that certain types of variables (static) don't show up in the variables wind

Re: Rendering an array as a list box

2006-07-05 Thread Michael Jouravlev
On 7/5/06, Adam Gordon <[EMAIL PROTECTED]> wrote: Can anyone point me to a working example of how to render an array of String objects as a list box in a JSP such that the contents of the list box can come from a property set on the request and not the bean mapped to the struts Action? It seems

Re: Rendering an array as a list box

2006-07-05 Thread Laurie Harper
Adam Gordon wrote: Can anyone point me to a working example of how to render an array of String objects as a list box in a JSP such that the contents of the list box can come from a property set on the request and not the bean mapped to the struts Action? Use the 'name' attribute on the Struts

Rendering an array as a list box

2006-07-05 Thread Adam Gordon
Can anyone point me to a working example of how to render an array of String objects as a list box in a JSP such that the contents of the list box can come from a property set on the request and not the bean mapped to the struts Action? It seems like this should be straight forward based on the ex

Re: Tiles not rendering body, footer when put <%@ taglib %> at top of body

2006-06-30 Thread Antonio Petrelli
Mississippi John Hurt ha scritto: Its as if when the Tiles processes these to lines in the body.jsp, it just stops rendering and the html output cuts off right at that point. If it cuts off the page, then probably you got an exception. Did you check the console for an exception stack trace

Re: Tiles not rendering body, footer when put <%@ taglib %> at top of body

2006-06-29 Thread Mississippi John Hurt
n you post your tile definition and a more complete JSP for us to look at? Regards, David -Original Message----- From: Mississippi John Hurt [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 9:27 PM To: Struts Users Mailing List Subject: Tiles not rendering body, footer when put <%@

RE: Tiles not rendering body, footer when put <%@ taglib %> at top of body

2006-06-29 Thread David Friedman
Can you post your tile definition and a more complete JSP for us to look at? Regards, David -Original Message- From: Mississippi John Hurt [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 9:27 PM To: Struts Users Mailing List Subject: Tiles not rendering body, footer when put

Re: Tiles not rendering body, footer when put <%@ taglib %> at top of body

2006-06-29 Thread Mississippi John Hurt
uot; http://struts.apache.org/tags-html"; prefix="html" %> then, what happens is that now only the header renders. Its as if when the Tiles processes these to lines in the body.jsp, it just stops rendering and the html output cuts off right at that point. This is so frustrating T

Tiles not rendering body, footer when put <%@ taglib %> at top of body

2006-06-29 Thread Mississippi John Hurt
ri="http://struts.apache.org/tags-bean"; prefix="bean" %> <%@ taglib uri="http://struts.apache.org/tags-html"; prefix="html" %> then, what happens is that now only the header renders. Its as if when the Tiles processes these to lines in the body.jsp, it j

[OT] Taglib for rendering a calendar

2006-06-12 Thread C. Grobmeier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, sorry for this ot post, but i believe some body of you had this before. does somebody know a taglib which renders a small calendar? Something like this: http://www.servletsuite.com/servlets/caltag.htm in open source would be great. regards, chr

RE: Action Oriented Framework Rendering Mode

2006-02-22 Thread Pilgrim, Peter
ote: > > >See intermixed > > > > > > > >>-Original Message- > >>From: Michael Jouravlev [mailto:[EMAIL PROTECTED] > >>Sent: Tuesday, February 21, 2006 7:02 PM > >>To: Struts Users Mailing List > >>Subject: Re: Action Oriente

Re: Action Oriented Framework Rendering Mode

2006-02-22 Thread Ian Roughley
5430 ~ Pilgrim, Peter wrote: See intermixed -Original Message- From: Michael Jouravlev [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 21, 2006 7:02 PM To: Struts Users Mailing List Subject: Re: Action Oriented Framework Rendering Mode On 2/21/06, Pilgrim, Peter <

RE: Action Oriented Framework Rendering Mode

2006-02-22 Thread Pilgrim, Peter
See intermixed > -Original Message- > From: Michael Jouravlev [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 21, 2006 7:02 PM > To: Struts Users Mailing List > Subject: Re: Action Oriented Framework Rendering Mode > > > On 2/21/06, Pilgrim, Peter <[EMAIL

Re: Action Oriented Framework Rendering Mode

2006-02-21 Thread Michael Jouravlev
On 2/21/06, Pilgrim, Peter <[EMAIL PROTECTED]> wrote: > > >I have a requirement to possibly build a new web application to > > >support portlets and also be displayable in a standard Java EE > > >webapp server in the future. Do you mean any portlets or JSR-168 portlets? > > >Basically it looks li

RE: Action Oriented Framework Rendering Mode

2006-02-21 Thread Pilgrim, Peter
See inter mixed > -Original Message- > From: Ian Roughley [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 21, 2006 3:58 PM > To: Struts Users Mailing List > Subject: Re: Action Oriented Framework Rendering Mode > > > below. > > /Ian > > -- >

Re: Action Oriented Framework Rendering Mode

2006-02-21 Thread Ian Roughley
below. /Ian -- From Down & Around, Inc. Innovative IT Solutions Software Architecture * Design * Development ~ web: www.fdar.com email [EMAIL PROTECTED] phone:617.821.5430 ~ Pilgrim, Pe

Action Oriented Framework Rendering Mode

2006-02-21 Thread Pilgrim, Peter
Hi All What is the state of play with WebWork / Struts Action 2.0? I am trying to come up with a design / architecture / proposal for a new aspect of an enterprise project. I have been reading the WebWork in Action book, and I have come to the conclusion that it is best to start a brand Action-

Re: rendering output to email or send jsp via emal

2005-08-15 Thread Hubert Rabago
truts is for > the web, not for messaging. I think even this is wrong. Struts follows a > MVC model. This does not implies only for web. And I think mostly all > web apps have to deal something with mail output at least. > > So why is it so difficult to get a rendering output of j

Re: rendering output to email or send jsp via emal

2005-08-15 Thread erikweber
org Subject: rendering output to email or send jsp via emal I know my subject is already asked in different ways but I think the answers are not satisfying. One of the main arguments is: Struts is for the web, not for messaging. I think even this is wrong. Struts follows a MVC model. This does not i

rendering output to email or send jsp via emal

2005-08-15 Thread Thomas Hartwig
to deal something with mail output at least. So why is it so difficult to get a rendering output of jsp redirected to an email output? (There might be an easy answer, which I have not found yet) I think the combination of jsp an all its tag power should be usable for this purpose. I don't wa

Re: Problem rendering internationalized messages

2005-06-30 Thread Stéphane Josephy
Thanks Marco, it just works fine! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Problem rendering internationalized messages

2005-06-30 Thread Marco Mistroni
Hello, How about this? HTH marco -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Stéphane Josephy Sent: 30 June 2005 10:15 To: user@struts.apache.org Subject: Problem rendering

  1   2   >