• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Single page development

 
Ranch Hand
Posts: 223
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am developing one struts project.

Is it possible to develop add, update, delete and view operation is in one page using javascript tabs with jsp/struts/or any.

Give me some ideas.

Thanks in advance.
Edward
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How you construct the HTML and CSS to "tabify" a page is pretty much independent of back-end processing.

What's the problem you are facng?
 
Edward Durai
Ranch Hand
Posts: 223
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually i am using DIV tag

<div class="Tabs" style="width: 350px;">
<a>Tab 1(one.jsp)</a>
<a>Tab 2(two.jsp)</a>
<a>Tab 3(three.jsp)</a>
</div>

In the same page I have a three jsp pages. If i click tab 1 particualr jsp is display in the same page. Each tab submit action occurs only the (one.jsp action)same page not the whole page.It only loads the same page(one.jsp).Please tell me how to overcome this.

Or is it possible? or not using Html Div tag ? Kindly send your reply

Thanks
 
Bear Bibeault
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by edward durai:
In the same page I have a three jsp pages.



I do not know what you mean by thise\. Do you mean that you are including three JSP fragments using <jsp:include>? Or do you mean you are including multiple pages using iframes?
.
 
Edward Durai
Ranch Hand
Posts: 223
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i was not decided whether include or iframe.

1.if i use include tag that page will display. If i click any button on that page, which form action is called, whether main form action or include jsp form action.

2.Is it possible to view multiple pages using iframe?

My requirment is First login into one page. if login success,
one page is display named List tab;

Then if click any link of that list details, the view tab is added next to List tab.

eg.. first
---- _____
LIST | VIEW|
---- ------

Is it possible, If it is possible Kindly tell me the suggesstion whatever may be. Even single idea/clue is very much accepted.

Thanks for all Your kind reply.
Edward
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic