Creating your own Visual Web Page Layout Plugin
In two of my earlier blogs, I explained
Now I've written another article that provides step by step tutorial on how to create your own Page Layout plugin to make your own Page Layout appear in the New Visual Web Page Wizard. Read the complete article at
How to create your own Visual Web Page Layout Plugin
Posted at 02:03PM Jan 27, 2008 | Permanent link to this entry
Posted by article on January 27, 2008 at 02:37 PM PST #
Thank you for your blog! I can't wait for the next NetBeans release!
Posted by Karl on January 28, 2008 at 10:31 PM PST #
hi winston,
thanks 4 ur blog it is always really usefull :)... i got a question 4 u :
when is suggested to use jsf visual web component instead of simple html tag if i convert a template from oswd.org to a visual web project?
i posted the question at
http://www.nabble.com/VWP-page-Layout-management-question.-td15289940.html
but probably i posted it in the wrong place or probably it is a dummy question but i'm a newbye in programming
Posted by Abex on February 16, 2008 at 07:40 AM PST #
It is not necessary to use bundled components always. I would advice you to use simple HTML as much as possible. Use bundled components if you really need more customization. Make sure not to delete the "head", "body" and "form" inserted by the tool. Rest are all up to your design skills.
Posted by 24.6.110.152 on February 16, 2008 at 09:27 AM PST #
thanks, nery helpful
Posted by Nanu on February 26, 2008 at 05:27 PM PST #
Winston ... I am running into an interesting issue!
I have created 2 pages, one before I installed the plugin (test.jsp) and one after (test1.jsp)
Both the pages attempt to set the text of a static label, within the init() method ...
test.jsp ...
this.staticText1.setText("Yo Yo Ma!");
test1.jsp (I had used the last layout from the template the one that has all)
this.staticText11.setText("Yo Yo Ma!");
well, when test.jsp loads, the statislabel shows the value, coded from the init method
when test1.jsp loads, i dont see the value that was coded in the corresponding init method
what could be going on?
thanks
Posted by Nanu on February 26, 2008 at 05:32 PM PST #