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 94054 - GridPanel: missing header/footer properties for facets
Summary: GridPanel: missing header/footer properties for facets
Status: NEW
Alias: None
Product: obsolete
Classification: Unclassified
Component: visualweb (show other bugs)
Version: 5.x
Hardware: PC Windows XP
: P3 blocker (vote)
Assignee: Peter Zavadsky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-02-02 19:51 UTC by bugbridge
Modified: 2007-02-02 19:51 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bugbridge 2007-02-02 19:51:52 UTC
Original Target Release: mako_dev; Suggested Target Milestone : Dev


Original submitter: lfitzgerald

Description:
See forum:
http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=63016

I am using the PaneGrid a lot, and everytime i need a header or a footer edit
the JSP source by putting

<f:facet name="header">
</f:facet>

Is there a way of doing this visually or much faster? It seems that the Visual
Editor doesn't recognize the header and footer even after putting the necessary
code.

Thanks,
james

---------------
GridPanel is missing this functionality.  It has properties for header/footer
classes, but not properties to define the values for them.  User can add this
manually.  I added:
                            <f:facet name="header">
                                <h:outputText binding="#{Page1.outputText1}"
id="outputText1" value="My Header"/>
                            </f:facet>
and
                            <f:facet name="footer">
                                <h:outputText binding="#{Page1.outputText2}"
id="outputText2" value="My Footer"/>
                            </f:facet>

Evaluation:
Essential problem is that we have no visual support for facets in the designer.
We need facet drop targets. Also missing a "get faceet" method in design-time API.