Questions tagged [struts2-bootstrap-plugin]

A Plugin for simple Bootstrap CSS Framework integration into Struts2.

A Plugin for simple Bootstrap CSS Framework integration into Struts2.

11 questions
5
votes
2 answers

Is Boostrap compatible with Struts 2?

I am using Bootstrap for my UI development. When I use Struts 2 tags for textfield in it, the complete page alignment is destroyed. When I replace the s: (Struts 2 tags) tags with normal tags, it is working fine. Do I need to include any extra jar?
AJE
  • 51
  • 1
  • 1
  • 2
2
votes
2 answers

Exception occurs when I use tag in a jsp

When I use the tag (where s is a prefix for struts tag) I get an exception: org.apache.jasper.JasperException: Template not found for name "/template/bootstrap/datetextfield.ftl". Do I have…
Dame Lyngdoh
  • 312
  • 4
  • 18
1
vote
1 answer

Struts2 Bootstrap Plugin 2.5.0 - list group

I am a beginner using Struts2 Bootstrap Plugin 2.5.0, on Eclipse Neon. I use dependency maven Maven Struts2 Bootstrap Plugin. I've successfully created a login page calling a action, and then return to another page (menu page). My question is: I…
1
vote
1 answer

Struts2 bootstrap width of a text field

I am trying to change the width of a I created like this: but it turns out into:
1
vote
1 answer

Struts2 Bootstrap Image Selection

I am looking for a image selection like shown here: https://rvera.github.io/image-picker/ But i do not get it work with Struts2 and Bootstrap, because the images are not displayed. What i did: included the .js and .css from git imported the .js and…
John
  • 142
  • 1
  • 11
1
vote
0 answers

How to use jquery and bootstrap with struts2 2.3.15

I have on struts2 2.3.15 application with netbeans 8.1. I have used bootstrap and jquery 1.11.x . display works well but all the forms submits twice. If I remove the jquery.js file then form works well but ui fails. tried to use bootstrap plugins…
1
vote
1 answer

Styling property tag in Struts 2

I am making use of the Struts2 property tag to get the user name like this.

Hi!

Now I want this div to take the style defined in class MyStyle, but it wont take any…
Akash Pandey
  • 121
  • 1
  • 6
0
votes
1 answer

Struts2 Bootstrap Plugin Client Validation with File

I'm using the Struts2-Bootstrap-Plugin version 2.0.4 for the Client Validation. I'm using the bootstrapValidation as my validate function, and I've added the jsonValidationWorkflowStack to my struts actions. For most things, this works as expected,…
Curtis Snowden
  • 407
  • 1
  • 4
  • 20
0
votes
0 answers

Struts and Twitter Bootstrap signup form

I'm developing a web application with Struts2 and Twitter Bootstrap. I've created a simple registration form that uses HTML tags and bootstrap attributes, while the form of Struts uses Struts tags. Is there a way to integrate them? Below are the two…
0
votes
1 answer

Why are Bootstrap's form elements rendered terribly with Struts2-Boostrap-Plugin?

When I add struts tags, the formatting disappears. What do I do? This is my code:
-1
votes
1 answer

How to display list data on pop up using struts2

I have list of object in my action class as below. private ArrayList emp_list; public ArrayList getEmp_list() { return emp_list; } public void setEmp_list(ArrayList emp_list) { this.emp_list = emp_list; } Bean…