• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Displaying list from the content returned by controller

 
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have the following controller:




And when I use it like this to display the contents in a display table on JSP/HTML, it works fine:


So I can see a list of file names under :Cleanup File column and similar for coment and Ready column.

Instead of displaying them in the table, I want to have it displayed as a list. So I was trying something ike this:



But it doesn't displays file names in the dropdown list. Do I need to have form tag and have everything inside form to achieve this?
 
Sheriff
Posts: 67752
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
HTML select elements are largely un-stylable. What are you trying to achieve?
 
Bear Bibeault
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
P.S. If you want to get fancy with CSS and are targeting only modern browsers, here's an article that might be helpful.
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:HTML select elements are largely un-stylable. What are you trying to achieve?



I would like to display all the filenames in a dropdown list. It works fine in case of display table as I mentioned but I am little confused how to make it work for select options tag of HTML
 
Bear Bibeault
Sheriff
Posts: 67752
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
Your HTML for the select element should contain only options elements, and optionally optgroup and hr elements.
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:Your HTML for the select element looks fine at initial inspection. What problem are you having with it?



The only thing in the dropdown I see is "--Please Select--" which is hardcoded by me. It's not displaying anything related to "cleanupFile.fileName" in the dropdown list. Anything wrong I'm doing to display this?
 
Bear Bibeault
Sheriff
Posts: 67752
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
I revised my post. You'd need to loop through your list and create an option element for each choice.
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:I revised my post. You'd need to loop through your list and create an option element for each choice.



Can you show me an example? I mean I know how to do it via jQuery and Javascript but I am wondering in JSP, how would I figure out upto what length I need to loop etc. Thanks!
 
Bear Bibeault
Sheriff
Posts: 67752
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
That depends on what tag library you are using. It will likely have tags for looping over a list or array of data.
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:That depends on what tag library you are using. It will likely have tags for looping over a list or array of data.



I am using JSTL
 
Bear Bibeault
Sheriff
Posts: 67752
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
Then you would use <c:forEach> to iterate over your data.
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:Then you would use <c:forEach> to iterate over your data.



Thanks. I modified my code to use that and it looks like this:



Could you take a look and see if it is looking fine?
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jack Tauson wrote:





After testing the above change, I am getting this error:



What could be the reason?
 
Master Rancher
Posts: 5060
81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does the class CleanupFileWrapper have a method like getFileName()?  Can you show the declaration of the field you're attempting to access, and its getter?
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Mike Simmons wrote:Does the class CleanupFileWrapper have a method like getFileName()?  Can you show the declaration of the field you're attempting to access, and its getter?




CleanupFileWrapper has following declarations inside it:



The getFileName() is defined inside CleanupFile. So I guess I am trying to access it correctly in my JSP if I do it like this : cleanupFile.fileName , cleanupFile.cleanupFileId ?




Similarly, when I tested the following:



I ended up getting the error:



Seems like it's not going one more level deep or I'm accessing it incorrectly?
 
Mike Simmons
Master Rancher
Posts: 5060
81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The error message suggests that the thing you're calling a "cleanupFile" is actually a CleanupFileWrapper.  And from your code, CleanupFileWrapper has a property named cleanupFile, not cleanupFileId.  And what you really want is the fileName inside the CleanupFile which is inside the CleanupFileWrapper.  So I think you need something like this:
 
Jack Tauson
Ranch Hand
Posts: 458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Mike Simmons wrote:The error message suggests that the thing you're calling a "cleanupFile" is actually a CleanupFileWrapper.  And from your code, CleanupFileWrapper has a property named cleanupFile, not cleanupFileId.  And what you really want is the fileName inside the CleanupFile which is inside the CleanupFileWrapper.  So I think you need something like this:



Thanks. Yeah, I used it like this and it worked:

 
If a regular clown is funny, then a larger clown would be funnier. Math. Verified by this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic