This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 94192 - standard selection components not render at designer once bound with bean property
Summary: standard selection components not render at designer once bound with bean pro...
Status: NEW
Alias: None
Product: obsolete
Classification: Unclassified
Component: visualweb (show other bugs)
Version: 5.x
Hardware: PC Windows XP
: P4 blocker (vote)
Assignee: Matthew Bohm
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-02-03 00:24 UTC by bugbridge
Modified: 2007-12-07 16:41 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bugbridge 2007-02-03 00:24:28 UTC
Original status: 1-Dispatched; Suggested Status: NEW

Original submitter: syz

Description:
J2EE 1.4 & JEE5 
Source Structure:  BluePrints/Jakarta
WinXP

1. Add a session bean property myList, type is SelectItem. Set its value in
SessionBean1.java
    /**
     * Holds value of property myList.
     */
    private SelectItem[] myList= new SelectItem[] {
        new SelectItem("One"), new SelectItem("two")
    };
2. Add a standard checkbox list or radiobutton list, bind myList to it.
-- the component totally disappears. It is fine at runtime. 
If it is Listbox or Multi Select  Listbox, the items are gone but at least I can
see the box.