I have a requirement to mimic a current Web "critera-entry" page that used ActiveX controls, including several DropDown lists that allow for multiple selections to be made.
Unfortunately, I cannot find any such capability within PeopleTools/Code. But before I admit defeat and create the page using a series of grids/scroll areas, I thought I'd check to see if anyone knew how to do this.
Any ideas?
| Title | Under | Posted on |
|---|---|---|
| how to create application status in peoplesoft campus solutions 8.9 version | PeopleSoft Functional | 05/17/2012 - 4:09am |
| horizantal text in charts | PeopleSoft Technical | 05/10/2012 - 4:57am |
| no current buffer context error | PeopleSoft Technical | 05/10/2012 - 1:19am |
| Integration Broker : Operating Instance/Pub Contracts/Sub Contracts | PeopleSoft Technical | 04/24/2012 - 11:05am |
Hi there,
I’m afraid you are right. I don’t think there is a way to select multiple values from a drop down list in PeopleSoft, unless someone out there could prove me wrong.
Here is an idea on how to accomplish your multi-selection though. You can place some peoplecode behind the field (FieldChange event). The code will take the value the user selected and save it in an array. Once the users selected a value, you can display a message on the page or even a messagebox that informs the user of the value selected and the option to select more values if need be. If the user decides to select one more value, your code (FieldChange) will capture the 2nd value selected and display the values selected so far to the user. You can also provide a button to clear the value just in case the user selects the wrong one my mistake!
Not sure if this is your best option but it sure should work, and sounds easy to implement!
Please report back and share with us the route you took on achieving your multi-selection.
Good Luck!
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
Thanks, but the user needs to see their selections. So rather than fiddle with that, I'll probably just go with the standard grid listing the valid values, with multiple selection (checkbox) indicators for each row. That way they can see all valid values, choose their poison, and it's all relatively easy.
"Thanks, but the user needs to see their selections."
You can still accomplish this also by displaying the value and keep adding to it when ever the user selects one. But your idea sounds good. I was just thinking of a way to keep the "drop down".
That was a good post, I never had a requirement like this before. So thanks for the eye opener!
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
> That was a good post, I never had a requirement like this before. So > thanks for the eye opener!
Yeah, welcome to my personal hell. I'm Lead Developer on a project that entails basically re-writing an online .Net data entry system into Peoplesoft, where the deadline is being given to me and the users were told they could have "everything they want". UGH! I could strangle the Big-Wig Exec who thinks it's "no big deal"!
Luckily I've got a supportive Manager and PM, and some good developers. And it's some good work--highly customized Workflow, ability to SAVE with or without edits enabled, multi-row effective-dated pages, mass change functionality.
So it's both interesting and frustrating as hell at the same time!
I could strangle the Big-Wig Exec who thinks it's "no big deal"!
Does the "Big-Wig Exec" know .Net is not PeopleSoft?!;)
Best of luck to you Larry.
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
The Big-Wig Exec probably doesn't know a PC from a Mac, and probably thinks .Net is an online Basketball game.
Hi,
You can achieve the multi selection in peoplesoft. But you will have to do customizations to the code. Multi selection box is not provided out of the box by Peoplesoft. The way you can achieve this is by placing an HTML control on the page. In this HTML control you can write HTML code and get the results as HTML. After this you will have to copy the selected data from the HTML in to peoplesoft fields. This will require good knowledge of Web libs, HTML and peoplesoft.
Post new comment