Hi. I'm new in Struts. I'm trying to include some html tags inside jsp which use struts libraries tags. I wanted some <s:textfield>-s to be displayed as unordered list.
I try something like this:
I've also try to arrange it in a table cells, using ><table><tr><td> tags, but it want to be rendered. Can I do this or not, and what is an alternative if these tags do not work e anyway??
The default theme renders form tags inside tables: look at the generated HTML to see what I mean. Always look at the HTML emitted by custom tags first--it can often save you a lot of time.
If you don't want to use the standard theme ("xhtml") you can either use the "simple" theme (which has some drawbacks, like not showing validation messages, etc.), modify an existing theme, or create a new theme.
Goran Markovic
Ranch Hand
Joined: Sep 26, 2008
Posts: 399
posted
0
Aha, yes, I forgot it. But how can I now perform some appearance settings about, just as I said -if I want to make some listing of mentioned tags? As I understood I need to modify template themes for any custom appearance I would like perform?If it is, its much more complex task...
You can use the "simple" theme and add code for validation error messages if you need to, or modify/extend an existing theme.
You can also create standard JSP 2.0 JSP-based custom tags and wrap up some of the validation message functionality if the other options are too limited or too daunting. It's like this for any custom-tag-based system; you'll always have to do *something* to get functionality that isn't exactly what you want.
Goran Markovic
Ranch Hand
Joined: Sep 26, 2008
Posts: 399
posted
0
You have right, I've already do some JSP custom tags, to perform some messaging preview, but I'm trying to apply maximum "struts" without explicit JSP-s blending.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.