Skip to content Skip to sidebar Skip to footer

Struts Rendering My Table Wrong

Can someone Tell me, why my Table is rendered the wrong way? As A Row

I need your help, if the following code below counts every …
Copy

Also style should be cssStyle in Struts Tags.

And finally, avoid using DMI (Dynamic Method Invocation, the method="" part) because it is highly discouraged. It is not even needed if the method is execute(), the default one.

Read more about the different ways to set a theme in this answer.

Solution 2:

add a style to your form display: inline-block;

<formaction="Details.action"style="display: inline-block;">

Solution 3:

Put the form outside of the table. Something like this

<form>
   <table>
      ....
   </table>
</form>

and I think there is no use of style="height:20px;" in submit button.

Post a Comment for "Struts Rendering My Table Wrong"