Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 555 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.3K Development
- 17 Developer Projects
- 139 Programming Languages
- 293K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 158 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 468 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
<SimpleSelectManyRenderer><_getSelectedItems> error

I have a selection vo which is different from available attributes Vo in selectordershuttle component
I have a requirement where I need to prepopulate the selected list and some elements of the selected list are not in the available list
Even though my bean is fetching all the selected values but some which are not there in available list are not getting displayed on the jspx page
it's giving me <SimpleSelectManyRenderer><_getSelectedItems> error. Here I am getting proper corresponding values in Backing bean but not able to display it in the jspx due to value mismatch in available and selected lists
please suggest a workaround
thanks,
9909
Answers
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,580 Red Diamond
User, tell us your exact JDev version, please!
In general, all select components only work when all items are on the available list. You can't select anything which is not part of the available list. That's the design principle of the select components.
Timo
-
Hi Timo,
I use jdev 11g We have a limit of 500 rows on VO level and we have a filter on the available list to get the values above 500 , so that is where we are stuck between the difference in the lists of available and selected,
While selecting and saving its okay but while retrieving of selected list, we are losing the values whose range is >500
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,580 Red Diamond
And your exact 11g version is?
If you don't get all values from the VO you can't use the component as is.
How can a filter be used to get more results?
That's not the meaning of a filter.
Timo
-
Hi Timo,
My Version is Oracle JDeveloper 11g Release 1 (11.1.1.9.0)
The Filter is more like a QBE(Query By Example )
We have implemented a filter search where we try to search the Vo again based on filter input and get the values through that since we have a row limitation of 500, we have to dod this to select rows that are not in the range of 1 to 500.
Please suggest any better approach for implementing shuttle component which have a cap on row size on VO level and we have rows greater than 500
Thanks in Advance
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,580 Red Diamond
User, as you can't answer my easy question about your exact JDev version, I can't help.
In general you have two options:
1) remove the limit
2) build your own component
Timo
-
Hi Timo ,
My Jdev Version is Studio Edition Version 11.1.1.9.0
Thanks
-
Timo Hahn Senior Principal Technical Consultant - Oracle ACE Director Member, Moderator Posts: 38,580 Red Diamond
I would try to add all selected items to the vo used for the available list. Then Shuffle component will work.
However, as you don't show all available items your users will complain someday about the missing items.
So, all in all, you need to think about a solution for this. Like you can offer a search field for items and add them to the list of available items and select them in the same action.
Timo