<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-24578</id>
	<title>Nabble - Visual Web</title>
	<updated>2009-10-26T05:11:02Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Visual-Web-f24578.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Visual-Web-f24578.html" />
	<subtitle type="html">The NetBeans &lt;a href=&quot;http://visualweb.netbeans.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Visual Web&lt;/a&gt;&amp;nbsp;project enables Java developers to rapidly build standards-based web applications in NetBeans by dragging and dropping components and data sources on the WYSIWYG Visual Editor. It provides a comprehensive library of JavaServer Faces components and deploys your projects as a Web Archive (WAR) to Java Enterprise Edition containers like Java System Application Server, JBoss, BEA WebLogic, IBM WebSphere, Tomcat, and others.
&lt;br&gt;&lt;br&gt;If you are a Java developer and want to learn more about using the Visual Web Pack and download full releases, please visit the &lt;a href=&quot;http://www.netbeans.org/products/visualweb/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Visual Web Pack product page&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26063263</id>
	<title>Re: Javascript(?) Spreadsheet</title>
	<published>2009-10-26T05:11:02Z</published>
	<updated>2009-10-26T05:11:02Z</updated>
	<author>
		<name>Rick-141</name>
	</author>
	<content type="html">Hi Dave,
&lt;br&gt;&lt;br&gt;Yeah, the commercial Javascript grids or spreadsheets put a lot of work 
&lt;br&gt;into detecting the browser and acting accordingly. &amp;nbsp;You still have to 
&lt;br&gt;worry about new releases, but since you control the Javascript, you can 
&lt;br&gt;easily update it when the vendor comes out with a fix.
&lt;br&gt;&lt;br&gt;I used one of the Javascript grid kits in a project about 5 years ago, 
&lt;br&gt;but my experience is probably outdated now. &amp;nbsp;It worked well and looked 
&lt;br&gt;good, but the learning curve to do what I needed was a little steep.
&lt;br&gt;&lt;br&gt;They typically obfuscate their Javascript code, so making small 
&lt;br&gt;modifications to their code is a big headache. &amp;nbsp;Sometimes you ca pay 
&lt;br&gt;more and get the Javascript code in &amp;nbsp;un-obfuscated form. &amp;nbsp;That is 
&lt;br&gt;something to look for in whichever kit you choose.
&lt;br&gt;&lt;br&gt;For your project, you might just want to use that and a servlet to 
&lt;br&gt;implement your project.
&lt;br&gt;&lt;br&gt;Rick
&lt;br&gt;&lt;br&gt;Dave_Curry wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Rick,
&lt;br&gt;&amp;gt; Thanks for the info. &amp;nbsp;To answer your questions:
&lt;br&gt;&amp;gt; I'm expecting that as many as 1000 users could be using the web app/service
&lt;br&gt;&amp;gt; at the same time. &amp;nbsp;That's my baseline requirement, anyway.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Most of the data is numeric, with a couple of text and an image. &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The numeric data is highly interdependent, but individual calcs are mostly
&lt;br&gt;&amp;gt; quite simple. &amp;nbsp;Changing one value CAN invoke a cascade of most of the calcs,
&lt;br&gt;&amp;gt; some several times.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; By &amp;quot;state&amp;quot;, I mean things like user-specific data, program mode, current
&lt;br&gt;&amp;gt; data values.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Perhaps the above makes it more clear why I'm even considering client-side
&lt;br&gt;&amp;gt; scripting, but I understand what you're saying about browser-based
&lt;br&gt;&amp;gt; dependencies (even if I don't understand WHY that has to be the case!).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've seen components like BlueShoe's javascript spreadsheet, but haven't
&lt;br&gt;&amp;gt; used them. &amp;nbsp;I would think such would be less sensitive to the particular
&lt;br&gt;&amp;gt; browser, since they should be well tested - one can hope. &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Would be nice to know what others' experience has been.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dave
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Browser based solutions can be a pain because 1- All the browsers run 
&lt;br&gt;&amp;gt; Javascript differently, 2- All browsers have different syntax for 
&lt;br&gt;&amp;gt; Javascript, 3-Developing large apps with scripting languages is a 
&lt;br&gt;&amp;gt; debugging nightmare, 4- You generally can't control which browser or 
&lt;br&gt;&amp;gt; version of browser the users employ.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; With 1,000 users the transaction rate shouldn't be that high, unless its 
&lt;br&gt;&amp;gt; an app that all 1000 are using simultaneously.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 50 data items is not that much unless some are images or something like 
&lt;br&gt;&amp;gt; that. &amp;nbsp;50 text item at 20 characters each is less than 1K of data.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When you say 100 calculations, are those done all at one on a page 
&lt;br&gt;&amp;gt; submit or does changing cell A affect the value in cell B?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If the latter is the case you can set up the page as a grid of text 
&lt;br&gt;&amp;gt; boxes (or maybe pull down menus for items that have a fixed, &amp;nbsp;finite 
&lt;br&gt;&amp;gt; number of values).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can use Javascript to do simple, easy to debug calculations to put a 
&lt;br&gt;&amp;gt; new value in cell &amp;quot;C&amp;quot; if &amp;quot;A&amp;quot; or &amp;quot;B&amp;quot; change.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That avoids the 2 second or so delay that you would get if you use JSF 
&lt;br&gt;&amp;gt; to do that. &amp;nbsp;That can be a real pain if you are futzing with 50 boxes 
&lt;br&gt;&amp;gt; that update after each change.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When you say state is important, what exactly do you mean?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Rick
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26063263&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26063263&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Javascript%28-%29-Spreadsheet-tp26051904p26063263.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26054413</id>
	<title>Re: Javascript(?) Spreadsheet</title>
	<published>2009-10-25T21:04:00Z</published>
	<updated>2009-10-25T21:04:00Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">Rick,
&lt;br&gt;Thanks for the info. &amp;nbsp;To answer your questions:
&lt;br&gt;I'm expecting that as many as 1000 users could be using the web app/service at the same time. &amp;nbsp;That's my baseline requirement, anyway.
&lt;br&gt;&lt;br&gt;Most of the data is numeric, with a couple of text and an image. &amp;nbsp;
&lt;br&gt;&lt;br&gt;The numeric data is highly interdependent, but individual calcs are mostly quite simple. &amp;nbsp;Changing one value CAN invoke a cascade of most of the calcs, some several times.
&lt;br&gt;&lt;br&gt;By &amp;quot;state&amp;quot;, I mean things like user-specific data, program mode, current data values.
&lt;br&gt;&lt;br&gt;Perhaps the above makes it more clear why I'm even considering client-side scripting, but I understand what you're saying about browser-based dependencies (even if I don't understand WHY that has to be the case!).
&lt;br&gt;&lt;br&gt;I've seen components like BlueShoe's javascript spreadsheet, but haven't used them. &amp;nbsp;I would think such would be less sensitive to the particular browser, since they should be well tested - one can hope. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;Would be nice to know what others' experience has been.
&lt;br&gt;&lt;br&gt;Dave
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;Rick-141&quot;&gt;&lt;br&gt;Browser based solutions can be a pain because 1- All the browsers run 
&lt;br&gt;Javascript differently, 2- All browsers have different syntax for 
&lt;br&gt;Javascript, 3-Developing large apps with scripting languages is a 
&lt;br&gt;debugging nightmare, 4- You generally can't control which browser or 
&lt;br&gt;version of browser the users employ.
&lt;br&gt;&lt;br&gt;With 1,000 users the transaction rate shouldn't be that high, unless its 
&lt;br&gt;an app that all 1000 are using simultaneously.
&lt;br&gt;&lt;br&gt;50 data items is not that much unless some are images or something like 
&lt;br&gt;that. &amp;nbsp;50 text item at 20 characters each is less than 1K of data.
&lt;br&gt;&lt;br&gt;When you say 100 calculations, are those done all at one on a page 
&lt;br&gt;submit or does changing cell A affect the value in cell B?
&lt;br&gt;&lt;br&gt;If the latter is the case you can set up the page as a grid of text 
&lt;br&gt;boxes (or maybe pull down menus for items that have a fixed, &amp;nbsp;finite 
&lt;br&gt;number of values).
&lt;br&gt;&lt;br&gt;You can use Javascript to do simple, easy to debug calculations to put a 
&lt;br&gt;new value in cell &amp;quot;C&amp;quot; if &amp;quot;A&amp;quot; or &amp;quot;B&amp;quot; change.
&lt;br&gt;&lt;br&gt;That avoids the 2 second or so delay that you would get if you use JSF 
&lt;br&gt;to do that. &amp;nbsp;That can be a real pain if you are futzing with 50 boxes 
&lt;br&gt;that update after each change.
&lt;br&gt;&lt;br&gt;When you say state is important, what exactly do you mean?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Rick
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Javascript%28-%29-Spreadsheet-tp26051904p26054413.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26052708</id>
	<title>Re: Javascript(?) Spreadsheet</title>
	<published>2009-10-25T15:34:34Z</published>
	<updated>2009-10-25T15:34:34Z</updated>
	<author>
		<name>Rick-141</name>
	</author>
	<content type="html">Browser based solutions can be a pain because 1- All the browsers run 
&lt;br&gt;Javascript differently, 2- All browsers have different syntax for 
&lt;br&gt;Javascript, 3-Developing large apps with scripting languages is a 
&lt;br&gt;debugging nightmare, 4- You generally can't control which browser or 
&lt;br&gt;version of browser the users employ.
&lt;br&gt;&lt;br&gt;With 1,000 users the transaction rate shouldn't be that high, unless its 
&lt;br&gt;an app that all 1000 are using simultaneously.
&lt;br&gt;&lt;br&gt;50 data items is not that much unless some are images or something like 
&lt;br&gt;that. &amp;nbsp;50 text item at 20 characters each is less than 1K of data.
&lt;br&gt;&lt;br&gt;When you say 100 calculations, are those done all at one on a page 
&lt;br&gt;submit or does changing cell A affect the value in cell B?
&lt;br&gt;&lt;br&gt;If the latter is the case you can set up the page as a grid of text 
&lt;br&gt;boxes (or maybe pull down menus for items that have a fixed, &amp;nbsp;finite 
&lt;br&gt;number of values).
&lt;br&gt;&lt;br&gt;You can use Javascript to do simple, easy to debug calculations to put a 
&lt;br&gt;new value in cell &amp;quot;C&amp;quot; if &amp;quot;A&amp;quot; or &amp;quot;B&amp;quot; change.
&lt;br&gt;&lt;br&gt;That avoids the 2 second or so delay that you would get if you use JSF 
&lt;br&gt;to do that. &amp;nbsp;That can be a real pain if you are futzing with 50 boxes 
&lt;br&gt;that update after each change.
&lt;br&gt;&lt;br&gt;When you say state is important, what exactly do you mean?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Rick
&lt;br&gt;&lt;br&gt;Dave_Curry wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; All,
&lt;br&gt;&amp;gt; I'm developing a web app that:
&lt;br&gt;&amp;gt; 1) &amp;nbsp;Has a good bit of data, say 50 items, that the user can futz with.
&lt;br&gt;&amp;gt; 2) &amp;nbsp;About 100 small calculations; and state is important.
&lt;br&gt;&amp;gt; 3) &amp;nbsp;Sessions last longer than a minute, and 5-10 minutes wouldn't be
&lt;br&gt;&amp;gt; unusual.
&lt;br&gt;&amp;gt; 4) &amp;nbsp;Expecting 1000+ users.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now, #'s 1 and 2 suggest I want to minimize server transactions. &amp;nbsp;#'s 3 and
&lt;br&gt;&amp;gt; 4 tell me I don't want to suck up a lot of server resources.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; A javascript (or other?) spreadsheet solution sounds like a reasonable
&lt;br&gt;&amp;gt; possibility. &amp;nbsp;I'd like to know what others have done in similar situations,
&lt;br&gt;&amp;gt; and, if a browser-based spreadsheet solution is the right answer, what
&lt;br&gt;&amp;gt; products you've used and would recommend.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; TIA,
&lt;br&gt;&amp;gt; Dave
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26052708&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26052708&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Javascript%28-%29-Spreadsheet-tp26051904p26052708.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26051904</id>
	<title>Javascript(?) Spreadsheet</title>
	<published>2009-10-25T14:17:51Z</published>
	<updated>2009-10-25T14:17:51Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">All,
&lt;br&gt;I'm developing a web app that:
&lt;br&gt;1) &amp;nbsp;Has a good bit of data, say 50 items, that the user can futz with.
&lt;br&gt;2) &amp;nbsp;About 100 small calculations; and state is important.
&lt;br&gt;3) &amp;nbsp;Sessions last longer than a minute, and 5-10 minutes wouldn't be unusual.
&lt;br&gt;4) &amp;nbsp;Expecting 1000+ users.
&lt;br&gt;&lt;br&gt;Now, #'s 1 and 2 suggest I want to minimize server transactions. &amp;nbsp;#'s 3 and 4 tell me I don't want to suck up a lot of server resources.
&lt;br&gt;&lt;br&gt;A javascript (or other?) spreadsheet solution sounds like a reasonable possibility. &amp;nbsp;I'd like to know what others have done in similar situations, and, if a browser-based spreadsheet solution is the right answer, what products you've used and would recommend.
&lt;br&gt;&lt;br&gt;TIA,
&lt;br&gt;Dave&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Javascript%28-%29-Spreadsheet-tp26051904p26051904.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26049574</id>
	<title>Calendar control shows duplicate dates</title>
	<published>2009-10-25T09:42:39Z</published>
	<updated>2009-10-25T09:42:39Z</updated>
	<author>
		<name>Roger L</name>
	</author>
	<content type="html">I have a visual web app running in NB 6.7.1 that uses the Woodstock calendar control. When the month is set to November 2009, the control displays November 1 twice. Which then throws off the entire calender with respect to the day of the week for any given date. 
&lt;br&gt;&lt;br&gt;I suspect this has something to do with daylight saving time, which reverts to standard time on November 1. 
&lt;br&gt;&lt;br&gt;An example of the problem can be seen at &lt;a href=&quot;http://webdev2.sun.com/example/faces/calendar/calendar.jsp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webdev2.sun.com/example/faces/calendar/calendar.jsp&lt;/a&gt;&amp;nbsp;
&lt;br&gt;Set the month to November and observe that November 1 shows up as Sunday and Monday. 
&lt;br&gt;&lt;br&gt;Any help would be appreciated. 
&lt;br&gt;&lt;br&gt;The jsp for the control is as follows: 
&lt;br&gt;&lt;br&gt;&amp;lt;webuijsf:calendar binding=&amp;quot;#{AddRequest.startDateCal}&amp;quot; id=&amp;quot;startDateCal&amp;quot; selectedDate=&amp;quot;#{SessionBean.startDate}&amp;quot; 
&lt;br&gt;style=&amp;quot;font-family: 'Arial','Helvetica',sans-serif; font-size: 14px; font-style: normal; font-weight: bold; left: 280px; top: 232px; position: absolute&amp;quot; tabIndex=&amp;quot;3&amp;quot; 
&lt;br&gt;validatorExpression=&amp;quot;#{AddRequest.validateStartDate}&amp;quot;/&amp;gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Calendar-control-shows-duplicate-dates-tp26049574p26049574.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25993646</id>
	<title>Re: Netbeans 6 Visual Web and Richfaces conflict</title>
	<published>2009-10-21T07:31:27Z</published>
	<updated>2009-10-21T07:31:27Z</updated>
	<author>
		<name>Richard Coats</name>
	</author>
	<content type="html">I realise this thread is a bit old now, but if anyone is still having this problem then it is now possible to use RichFaces with NetBeans 6.7 and Sun's JSF. The RichFaces components don't render in the design view, but otherwise it works quite nicely. Some tips on getting started are here: &lt;a href=&quot;http://dickie-tech.blogspot.com/2009/10/using-richfaces-with-netbeans-visual.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dickie-tech.blogspot.com/2009/10/using-richfaces-with-netbeans-visual.html&lt;/a&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Netbeans-6-Visual-Web-and-Richfaces-conflict-tp15154231p25993646.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25239241</id>
	<title>Netbeans 6.5.1 + Charts + JSC Chart Component</title>
	<published>2009-09-01T05:09:34Z</published>
	<updated>2009-09-01T05:09:34Z</updated>
	<author>
		<name>pscamara</name>
	</author>
	<content type="html">How to use charts in netbeans 6.5.1? Are there any component ready to use?
&lt;br&gt;&lt;br&gt;I donwload the library jsChart / jschart-1.0.3.complib / jschart-1.0.3-src.zip.
&lt;br&gt;&lt;br&gt;But the charts never render!
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Netbeans-6.5.1-%2B-Charts-%2B-JSC-Chart-Component-tp25239241p25239241.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25192608</id>
	<title>Visual Web / Woodstock migration or revitalisation</title>
	<published>2009-08-28T09:08:09Z</published>
	<updated>2009-08-28T09:08:09Z</updated>
	<author>
		<name>Jokers</name>
	</author>
	<content type="html">Visual Web and Woodstock are in maintenance mode and will certainly become end of life in near &amp;nbsp;future.
&lt;br&gt;&lt;br&gt;An issue at netbeans is running, to get help on this. 
&lt;br&gt;Meanwhile this problem is within the top 15 issues:
&lt;br&gt;&lt;a href=&quot;http://qa.netbeans.org/bugzilla/dashboards/top-voted.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qa.netbeans.org/bugzilla/dashboards/top-voted.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Please add your voice and vote it into the top 10:
&lt;br&gt;VOTE: &lt;a href=&quot;http://www.netbeans.org/issues/show_bug.cgi?id=169820&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/issues/show_bug.cgi?id=169820&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Announce-f24582.html&quot; embed=&quot;fixTarget[24582]&quot; target=&quot;_top&quot; &gt;Visual Web - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Visual-Web---Woodstock-migration-or-revitalisation-tp25192608p25192608.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25060262</id>
	<title>Re: How do I access textField component using javascript in netbeans6.5</title>
	<published>2009-08-20T04:23:36Z</published>
	<updated>2009-08-20T04:23:36Z</updated>
	<author>
		<name>pscamara</name>
	</author>
	<content type="html">I got this simple page:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:page id=&amp;quot;page1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:html id=&amp;quot;html1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:head id=&amp;quot;head1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function timeIt() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var x = &amp;quot;60:00&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;document.getElementById('form1:clock').setProps({value:x});
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webuijsf:script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webuijsf:head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:body id=&amp;quot;body1&amp;quot; onLoad=&amp;quot;timeIt()&amp;quot; style=&amp;quot;-rave-layout: grid&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:form id=&amp;quot;form1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webuijsf:textField columns=&amp;quot;5&amp;quot; id=&amp;quot;clock&amp;quot;/&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webuijsf:form&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webuijsf:body&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webuijsf:html&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webuijsf:page&amp;gt;
&lt;br&gt;&lt;br&gt;But javascript never works!
&lt;br&gt;&lt;br&gt;Message: 'document.getElementById(...)' is null or not an object
&lt;br&gt;&lt;br&gt;Any help?
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-I-access-textField-component-using-javascript-in-netbeans6.5-tp21524398p25060262.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24362213</id>
	<title>Reference problem--&quot;jsf12-support library could not be found&quot;</title>
	<published>2009-07-06T13:22:26Z</published>
	<updated>2009-07-06T13:22:26Z</updated>
	<author>
		<name>GEOINT</name>
	</author>
	<content type="html">I am using NetBeans 6.5 with GlassFish v2ur2, JDK 6, and Java EE 5. &amp;nbsp;I have installed the plugins for Visual JSF. &amp;nbsp;I would like to work through the tutorial &amp;quot;Getting Started with Visual Web JSF Application Development&amp;quot; located at &lt;a href=&quot;http://www.netbeans.org/kb/docs/web/intro.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/kb/docs/web/intro.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;On &amp;quot;Try It&amp;quot; Step 2(i) after I click the Finish button for the GettingStarted example Web Application project I am getting a missing reference problem. &amp;nbsp;The Resolve Reference Problems IDE shows:
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;jsf12-support library could not be found&amp;quot;
&lt;br&gt;&lt;br&gt;How do I resolve this missing reference?&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Reference-problem--%22jsf12-support-library-could-not-be-found%22-tp24362213p24362213.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24298435</id>
	<title>Re: java.lang.NoClassDefFoundError: com/sun/rave/designtime/faces/FacetDescriptor: How do I fix this error?</title>
	<published>2009-07-01T15:56:14Z</published>
	<updated>2009-07-01T15:56:14Z</updated>
	<author>
		<name>rrugemalira</name>
	</author>
	<content type="html">Problem solved by removing:
&lt;br&gt;&lt;br&gt;ICEfaces JSF1.2 Design-Time 1.8.1- icefaces-dt.jar
&lt;br&gt;ICEfaces JSF1.2 Design-Time 1.8.1- icefaces-comps.jar and
&lt;br&gt;ICEfaces JSF1.2 Design-Time 1.8.1- icefaces-comps-dt.jar
&lt;br&gt;from Libraries
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;rrugemalira wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I'm using NetBeans 6.5.1 and I've upgraded to ICEfaces v1.8.1
&lt;br&gt;Suddenly, I'm encountering the &amp;nbsp;exception:
&lt;br&gt;javax.servlet.ServletException: java.lang.Exception: java.lang.NoClassDefFoundError: com/sun/rave/designtime/faces/FacetDescriptor
&lt;br&gt;&lt;br&gt;root cause
&lt;br&gt;java.lang.Exception: java.lang.NoClassDefFoundError: com/sun/rave/designtime/faces/FacetDescriptor
&lt;br&gt;&lt;br&gt;I'd appreciate any ideas on how to correct this quirk.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/java.lang.NoClassDefFoundError%3A-com-sun-rave-designtime-faces-FacetDescriptor%3A-How-do-I-fix-this-error--tp24293469p24298435.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24293469</id>
	<title>java.lang.NoClassDefFoundError: com/sun/rave/designtime/faces/FacetDescriptor: How do I fix this error?</title>
	<published>2009-07-01T10:01:47Z</published>
	<updated>2009-07-01T10:01:47Z</updated>
	<author>
		<name>rrugemalira</name>
	</author>
	<content type="html">I'm using NetBeans 6.5.1 and I've upgraded to ICEfaces v1.8.1
&lt;br&gt;Suddenly, I'm encountering the &amp;nbsp;exception:
&lt;br&gt;javax.servlet.ServletException: java.lang.Exception: java.lang.NoClassDefFoundError: com/sun/rave/designtime/faces/FacetDescriptor
&lt;br&gt;&lt;br&gt;root cause
&lt;br&gt;java.lang.Exception: java.lang.NoClassDefFoundError: com/sun/rave/designtime/faces/FacetDescriptor
&lt;br&gt;&lt;br&gt;I'd appreciate any ideas on how to correct this quirk.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/java.lang.NoClassDefFoundError%3A-com-sun-rave-designtime-faces-FacetDescriptor%3A-How-do-I-fix-this-error--tp24293469p24293469.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24150995</id>
	<title>Re: AJAX question</title>
	<published>2009-06-22T09:40:21Z</published>
	<updated>2009-06-22T09:40:21Z</updated>
	<author>
		<name>Glenn Holmer</name>
	</author>
	<content type="html">On Fri, 2009-06-19 at 14:43 -0400, Neil B. Cohen wrote:
&lt;br&gt;&amp;gt; I have been using Netbeans/VWP/Hibernate to build web apps for a while 
&lt;br&gt;&amp;gt; now. I've not done much with Javascript. Is it possible to incorporate 
&lt;br&gt;&amp;gt; AJAX technology into a VWP application? If so, can someone point me at 
&lt;br&gt;&amp;gt; some examples or tutorials? If not, does that mean I need to use only 
&lt;br&gt;&amp;gt; something like JMaki and javascript to build my application?
&lt;br&gt;&lt;br&gt;If I were you, I'd learn ICEfaces and forget about VWP.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.netbeans.org/community/releases/67/relnotes.html#uml-plugin&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/community/releases/67/relnotes.html#uml-plugin&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;____________________________________________________________
&lt;br&gt;Glenn Holmer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24150995&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gholmer@...&lt;/a&gt;
&lt;br&gt;Software Engineer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;phone: 414-908-1809
&lt;br&gt;Weyco Group, Inc. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;fax: 414-908-1601
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24150995&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24150995&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-question-tp24150740p24150995.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24150740</id>
	<title>AJAX question</title>
	<published>2009-06-19T11:43:23Z</published>
	<updated>2009-06-19T11:43:23Z</updated>
	<author>
		<name>Neil B. Cohen-3</name>
	</author>
	<content type="html">If this is the wrong place to ask this question, please redirect me...
&lt;br&gt;&lt;br&gt;I have been using Netbeans/VWP/Hibernate to build web apps for a while 
&lt;br&gt;now. I've not done much with Javascript. Is it possible to incorporate 
&lt;br&gt;AJAX technology into a VWP application? If so, can someone point me at 
&lt;br&gt;some examples or tutorials? If not, does that mean I need to use only 
&lt;br&gt;something like JMaki and javascript to build my application?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;nbc
&lt;br&gt;&lt;br&gt;NAME: &amp;nbsp; Neil B. Cohen (Verisign Inc.)
&lt;br&gt;PHONE: &amp;nbsp;703-948-4471
&lt;br&gt;DOMAIN: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24150740&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncohen@...&lt;/a&gt;
&lt;br&gt;*************************************************************
&lt;br&gt;* Murphy's Philosophy: Smile - tomorrow will be worse...
&lt;br&gt;*
&lt;br&gt;* O'Tooles Commentary: Murphy was an optimist!
&lt;br&gt;*************************************************************
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24150740&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24150740&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AJAX-question-tp24150740p24150740.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23364297</id>
	<title>Types of RAM</title>
	<published>2009-05-04T00:33:58Z</published>
	<updated>2009-05-04T00:33:58Z</updated>
	<author>
		<name>Crosby51</name>
	</author>
	<content type="html">SRAM (static RAM) is random access memory (RAM) that retains data bits in its memory as long as power is being supplied. Unlike dynamic RAM (DRAM), which stores bits in cells consisting of a capacitor and a transistor, SRAM does not have to be periodically refreshed. Static RAM provides faster access to data and is more expensive than DRAM. SRAM is used for a computer's cache memory and as part of the random access memory digital-to-analog converter on a video card.
&lt;br&gt;&lt;br&gt;Dynamic random access memory (DRAM) is the most common kind of random access memory (RAM) for personal computers and workstations. Memory is the network of electrically-charged points in which a computer stores quickly accessible data in the form of 0s and 1s. Random access means that the PC processor can access any part of the memory or data storage space directly rather than having to proceed sequentially from some starting place. DRAM is dynamic in that, unlike static RAM (SRAM), it needs to have its storage cells refreshed or given a new electronic charge every few milliseconds. Static RAM does not need refreshing because it operates on the principle of moving current that is switched in one of two directions rather than a storage cell that holds a charge in place. Static RAM is generally used for cache memory, which can be accessed more quickly than DRAM. 
&lt;br&gt;&lt;br&gt;DRAM stores each bit in a storage cell consisting of a capacitor and a transistor. Capacitors tend to lose their charge rather quickly; thus, the need for recharging. A variety of other RAM interfaces to the computer exist. These include: EDO RAM and SDRAM.
&lt;br&gt;&lt;br&gt;SDRAM (synchronous DRAM) is a generic name for various kinds of dynamic random access memory (DRAM) that are synchronized with the clock speed that the microprocessor is optimized for. This tends to increase the number of instructions that the processor can perform in a given time. The speed of SDRAM is rated in MHz rather than in nanoseconds (ns). This makes it easier to compare the bus speed and the RAM chip speed. &lt;b&gt;&lt;a href=&quot;http://www.intellixmedia.com/web-design.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Website Design&lt;/a&gt;&lt;/b&gt;&amp;nbsp;can convert the RAM clock speed to nanoseconds by dividing the chip speed into 1 billion ns (which is one second). For example, an 83 MHz RAM would be equivalent to 12 ns.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Development-f24581.html&quot; embed=&quot;fixTarget[24581]&quot; target=&quot;_top&quot; &gt;Visual Web - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Types-of-RAM-tp23364297p23364297.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23263928</id>
	<title>Maintaining deployed app</title>
	<published>2009-04-27T13:04:48Z</published>
	<updated>2009-04-27T13:04:48Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">I figure we're all here developing, deploying and maintaining web apps, so...
&lt;br&gt;&lt;br&gt;My dev system is not my server system (duh ;) ), so I deploy to the server remotely using the Glassfish admin web app. &amp;nbsp;Very cool.
&lt;br&gt;&lt;br&gt;However, I can't seem to figure out how to maintain the backing database. &amp;nbsp;I like to use Squirrel SQL for doing database maintainance, but the server refuses the connection. &amp;nbsp;I'm sure I have to open port 1527 on the router, but it seems I also have to tell the Derby and/or Glassfish server to allow an external host to connect. &amp;nbsp;So maybe some of you have some common means of:
&lt;br&gt;&lt;br&gt;1) &amp;nbsp;Backing up the database remotely, to my dev system's local drive. &amp;nbsp;Of course, I'll need to re-deploy/restore the database once my changes are made. &amp;nbsp;Setting up Squirrel to do this would be cool, but I'm open to other options.
&lt;br&gt;2) &amp;nbsp;Putting up a &amp;quot;Server will be/is unavailable&amp;quot; notice when I need to redeploy the app or update the database.
&lt;br&gt;&lt;br&gt;This seems pretty basic stuff, and maybe I've worked too many 20-hour days to figure it out on my own (I've tried). &amp;nbsp;A good URL will do, or SQL and/or Java snippets. &amp;nbsp;Whatever.
&lt;br&gt;&lt;br&gt;One other thing. &amp;nbsp;My server runs ubuntu hardy. &amp;nbsp;To start the database server, I use asadmin start-server on the command line. &amp;nbsp;No, I don't want that to be automated - the server is still 'beta'. &amp;nbsp;But is there a way to do this within the Glassfish admin web app? &amp;nbsp;I've seen stuff about JDBC connection pools, but I haven't set one up (to my knowledge, but maybe NB did when I wasn't looking), so I don't know if start/stop is a Glassfish console capability.
&lt;br&gt;&lt;br&gt;TIA,
&lt;br&gt;Dave&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Maintaining-deployed-app-tp23263928p23263928.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23233357</id>
	<title>Re: Table Pagination when Navigating to Page</title>
	<published>2009-04-25T08:38:00Z</published>
	<updated>2009-04-25T08:38:00Z</updated>
	<author>
		<name>Futaleufu_John</name>
	</author>
	<content type="html">The table &amp;quot;remembers&amp;quot; the last paginate setting. If you display all the rows in the table, navigate to another page, then navigate back to the first page, the table will display the rows based on the last paginate setting.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Dave_Curry wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;The page works properly (table only displays 5 rows, as I want) when it is the starting page, but when I navigate to it from a 'menu' page, the &amp;quot;paginateButton&amp;quot; setting (checked) seems to be ignored. &amp;nbsp;I get dozens(+++) of rows, and no pagination controls. =(
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;div class=&quot;signature&quot;&gt;Any ads or links to ads that appear in this post are not endorsed nor recommended by this poster.&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Table-Pagination-when-Navigating-to-Page-tp23229060p23233357.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23229157</id>
	<title>Re: Table Pagination when Navigating to Page</title>
	<published>2009-04-24T23:45:36Z</published>
	<updated>2009-04-24T23:45:36Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">Okay, temper's settled, so a bit more detail on the 'solution'.
&lt;br&gt;&lt;br&gt;I, uh, didn't really notice that no matter which menu button I clicked, I was seeing the SAME page, which does NOT have/need pagination. &amp;nbsp;&amp;lt;groan&amp;gt; &amp;nbsp;All the buttons returned 'case1'. &amp;nbsp;Get it now? &amp;nbsp;Change the handlers to return the correct 'case#', and things work fine.
&lt;br&gt;&lt;br&gt;Mmmmm, gotta love that humble pie. &amp;nbsp;Please have a good laugh at this...classic.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Table-Pagination-when-Navigating-to-Page-tp23229060p23229157.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23229129</id>
	<title>Re: Table Pagination when Navigating to Page</title>
	<published>2009-04-24T23:41:02Z</published>
	<updated>2009-04-24T23:41:02Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">Note to self - when you copy a button, CHANGE THE !@$$@@$@ HANDLER!!!
&lt;br&gt;never mind...
&lt;br&gt;&lt;img class='smiley' src='http://old.nabble.com/images/smiley/smiley_hurt.gif' /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Table-Pagination-when-Navigating-to-Page-tp23229060p23229129.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23229060</id>
	<title>Table Pagination when Navigating to Page</title>
	<published>2009-04-24T23:31:02Z</published>
	<updated>2009-04-24T23:31:02Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">NB6.0 (stop laughing)
&lt;br&gt;Hey, Futaleufu_John, thanks for your help...
&lt;br&gt;Took his advice on using a paginated table for 'key' fields, with a 'Select' button, and then GridPanels for grouping related fields together below the table. &amp;nbsp;Sweet!!! &amp;nbsp;except...
&lt;br&gt;&lt;br&gt;The page works properly (table only displays 5 rows, as I want) when it is the starting page, but when I navigate to it from a 'menu' page, the &amp;quot;paginateButton&amp;quot; setting (checked) seems to be ignored. &amp;nbsp;I get dozens(+++) of rows, and no pagination controls. =(
&lt;br&gt;&lt;br&gt;Surprised this isn't in any forums (yes, I looked). &amp;nbsp;Any ideas, gang?
&lt;br&gt;Dave&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Table-Pagination-when-Navigating-to-Page-tp23229060p23229060.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23196477</id>
	<title>Re: Displaying lots of data</title>
	<published>2009-04-23T06:04:59Z</published>
	<updated>2009-04-23T06:04:59Z</updated>
	<author>
		<name>Futaleufu_John</name>
	</author>
	<content type="html">For (1) you can configure the table for multiple pages. In the table's properties window, make sure the paginateButton checkbox is selected. If you want the user to have the option to display all rows, you can make sure the paginateButton checkbox is selected. (I don't recommend doing this if the table could potentially contain 100s or 1000s or records.) To set the number of rows to be displayed, set the table's row group component's rows attribute to 5 or 10 or whatever.
&lt;br&gt;&lt;br&gt;For (2), I recommend including a button or radio button column in the table and only displaying a few &amp;quot;key&amp;quot; fields from the table. When the user clicks the button or selects the radio button, the record's details can be displayed.
&lt;br&gt;&lt;br&gt;You may find the following links useful for handling buttons or radio buttons in a table component.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://blogs.sun.com/winston/entry/single_selectable_row_table_component&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.sun.com/winston/entry/single_selectable_row_table_component&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://blogs.sun.com/divas/category/NetBeans+Visual+Web+Pack&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.sun.com/divas/category/NetBeans+Visual+Web+Pack&lt;/a&gt;&amp;nbsp;(See &lt;b&gt;Table Component Sample Visual Web Project for NetBeans IDE 6.0&lt;/b&gt;&amp;nbsp;in this blog entry)
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Dave_Curry wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;NB6.0, VWP
&lt;br&gt;I have a derby table with 100 fields. &amp;nbsp;Likely to have hundreds of records. &amp;nbsp;Two issues:
&lt;br&gt;1) &amp;nbsp;How can I limit the displayed table component to only a few records and allow scrolling through the rest of the records? &amp;nbsp; Currently, the all records rendered, which is good, except the table automatically expands vertically to accommodate them - no scroll bars!(?)
&lt;br&gt;2) &amp;nbsp;Even a reasonable subset of fields, say 10 (+ 3 to uniquely identify the particular row), would fill the width of most of my users' screens. &amp;nbsp;But then I have the other 90 fields to display somewhere/how - what to do? &amp;nbsp;I don't want a single table component with 100 columns! &amp;nbsp;Users would go nuts scrolling right, right, right... &amp;nbsp;I suppose, if #1 above has an answer, I could add additional table components, each with its own subset of fields - as long as all the table components stay in synch with what is selected in the first table component. &amp;nbsp;Just stack them one atop the other. &amp;nbsp;But perhaps someone has a better way??? &amp;nbsp;
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;div class=&quot;signature&quot;&gt;Any ads or links to ads that appear in this post are not endorsed nor recommended by this poster.&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Displaying-lots-of-data-tp23195176p23196477.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23195176</id>
	<title>Displaying lots of data</title>
	<published>2009-04-23T04:40:13Z</published>
	<updated>2009-04-23T04:40:13Z</updated>
	<author>
		<name>Dave_Curry</name>
	</author>
	<content type="html">NB6.0, VWP
&lt;br&gt;I have a derby table with 100 fields. &amp;nbsp;Likely to have hundreds of records. &amp;nbsp;Two issues:
&lt;br&gt;1) &amp;nbsp;How can I limit the displayed table component to only a few records and allow scrolling through the rest of the records? &amp;nbsp; Currently, the all records rendered, which is good, except the table automatically expands vertically to accommodate them - no scroll bars!(?)
&lt;br&gt;2) &amp;nbsp;Even a reasonable subset of fields, say 10 (+ 3 to uniquely identify the particular row), would fill the width of most of my users' screens. &amp;nbsp;But then I have the other 90 fields to display somewhere/how - what to do? &amp;nbsp;I don't want a single table component with 100 columns! &amp;nbsp;Users would go nuts scrolling right, right, right... &amp;nbsp;I suppose, if #1 above has an answer, I could add additional table components, each with its own subset of fields - as long as all the table components stay in synch with what is selected in the first table component. &amp;nbsp;Just stack them one atop the other. &amp;nbsp;But perhaps someone has a better way??? &amp;nbsp;
&lt;br&gt;&lt;br&gt;I get the feeling that the InsertUpdateDelete tutorial, from which I've patterned my development, isn't the best approach for &amp;quot;real world&amp;quot; applications that can have a lot of data. &amp;nbsp;
&lt;br&gt;TIA,
&lt;br&gt;Dave&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Displaying-lots-of-data-tp23195176p23195176.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23140526</id>
	<title>Re: where to discuss netbeans icefaces issues? here or icefaces forum?</title>
	<published>2009-04-20T09:52:26Z</published>
	<updated>2009-04-20T09:52:26Z</updated>
	<author>
		<name>Ken Foust</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;HandyGeek wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;As obvious as the nose on my face.. thanks jakemonO..
&lt;br&gt;&lt;br&gt;jakemonO wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The ICEFaces forum has a toggle in your profile page &amp;quot;Include the message
&lt;br&gt;&amp;gt; contents within the notification email:&amp;quot; that should do the trick, although
&lt;br&gt;&amp;gt; I'd like to have a centralized NetBeans discussion area too, now that
&lt;br&gt;&amp;gt; ICEFaces is the officailly supported component suite for Netbeans Visual Web
&lt;br&gt;&amp;gt; dev.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; HandyGeek wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hello JakemonO,
&lt;br&gt;&amp;gt;&amp;gt; I for one, hope ICEFaces discussion will continue on this visualweb 
&lt;br&gt;&amp;gt;&amp;gt; list, as I want to continue using the visualweb functionality now 
&lt;br&gt;&amp;gt;&amp;gt; offered through ICEFaces.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I also find the ICEFaces web-based discussion list horribly 
&lt;br&gt;&amp;gt;&amp;gt; inconvenient. &amp;nbsp;I requested to be notified by email of new topics (like 
&lt;br&gt;&amp;gt;&amp;gt; nbusers and visualweb, etc), and all I get are emails with the subject 
&lt;br&gt;&amp;gt;&amp;gt; line of new topics. &amp;nbsp;Am I missing something? &amp;nbsp;I am much too busy to take 
&lt;br&gt;&amp;gt;&amp;gt; time to browse and find new discussion topics. &amp;nbsp;Any ideas?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Best, &amp;nbsp; /David
&lt;br&gt;&lt;br&gt;&lt;br&gt;ONe thing I would like to know is where all this is going. &amp;nbsp;ARe Visual Web users supposed to move from Woodstock to IceFaces? &amp;nbsp;Is Woodstock being depreciated?? &amp;nbsp;I don't want to screw around with two technologies.
&lt;br&gt;&lt;br&gt;thankx
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; jakemonO wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I am having an issue working through a netbeans VWP databinding tutorial
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; using ICEFaces instead of Woodstock, which I am to understand is being
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; EOL'ed for ICEFaces. (
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.icefaces.org/JForum/posts/list/10972.page&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.icefaces.org/JForum/posts/list/10972.page&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My issue is here ) A sa procedural matter, where should such issues be
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; discussed?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@visualweb.netbeans.org
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: users-help@visualweb.netbeans.org
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/where-to-discuss-netbeans-icefaces-issues--here-or-icefaces-forum--tp21150500p23140526.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23097744</id>
	<title>Re: VisualWebJSF Portlet can't work in Liferay+Tomcat?</title>
	<published>2009-04-17T06:36:59Z</published>
	<updated>2009-04-17T06:36:59Z</updated>
	<author>
		<name>yi.wang.info</name>
	</author>
	<content type="html">It's ok, the error is resolved!
&lt;br&gt;In liferay-portlet.xml: del &lt;b&gt;&amp;lt;instanceable&amp;gt;true&amp;lt;/instanceable&amp;gt;&lt;/b&gt;, add &lt;b&gt;&amp;lt;ajaxable&amp;gt;false&amp;lt;/ajaxable&amp;gt;&lt;/b&gt;&amp;nbsp;in &lt;b&gt;&amp;lt;portlet&amp;gt;&lt;/b&gt;.
&lt;br&gt;&lt;br&gt;But I have still the problem de reload!
&lt;br&gt;It's mean: I can't see my portlet until reload the page...
&lt;br&gt;( NetBeans6.5.1 + PortalPack3.0 + Liferay5.22 + Tomcat6.018 )
&lt;br&gt;Sorry for my english, thank you for your answer.
&lt;br&gt;:)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;yi.wang.info wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I create my Visual Web JSF Portlet Page in NetBeans6.5.1 ( with PortalPack3.0 ), but it work not very well...
&lt;br&gt;In the first time, there is nothing, the page is blocked, I get 
&lt;br&gt;&lt;b&gt;&lt;a href=&quot;http://localhost:8080/WebApplication1/theme/com/sun/webui/jsf/suntheme4_2-080320/javascri/bootstrap.js&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/WebApplication1/theme/com/sun/webui/jsf/suntheme4_2-080320/javascri/bootstrap.js&lt;/a&gt;&lt;br&gt;&amp;nbsp;405 - Method not allowed
&lt;br&gt;webui is not defined &lt;a href=&quot;http://localhost:8080/web/guest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/web/guest&lt;/a&gt;&amp;nbsp;Line 0&lt;/b&gt;&amp;nbsp;
&lt;br&gt;with Firebug 1.3.3, 
&lt;br&gt;after that, I need reload the page for display my portlet...
&lt;br&gt;Thanks for the answer!
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VisualWebJSF-Portlet-can%27t-work-in-Liferay%2BTomcat--tp23094401p23097744.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23094401</id>
	<title>VisualWebJSF Portlet can't work in Liferay+Tomcat?</title>
	<published>2009-04-17T02:37:08Z</published>
	<updated>2009-04-17T06:40:02Z</updated>
	<author>
		<name>yi.wang.info</name>
	</author>
	<content type="html">I create my Visual Web JSF Portlet Page in NetBeans6.5.1 ( with PortalPack3.0 ), but it work not very well...
&lt;br&gt;In the first time, there is nothing, the page is blocked, I get 
&lt;br&gt;&lt;b&gt;&lt;a href=&quot;http://localhost:8080/WebApplication1/theme/com/sun/webui/jsf/suntheme4_2-080320/javascri/bootstrap.js&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/WebApplication1/theme/com/sun/webui/jsf/suntheme4_2-080320/javascri/bootstrap.js&lt;/a&gt;&lt;br&gt;&amp;nbsp;405 - Method not allowed
&lt;br&gt;webui is not defined &lt;a href=&quot;http://localhost:8080/web/guest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/web/guest&lt;/a&gt;&amp;nbsp;Line 0&lt;/b&gt;&amp;nbsp;
&lt;br&gt;with Firebug 1.3.3, 
&lt;br&gt;after that, I need reload the page for display my portlet...
&lt;br&gt;Thanks for the answer!
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VisualWebJSF-Portlet-can%27t-work-in-Liferay%2BTomcat--tp23094401p23094401.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22909022</id>
	<title>Re: visual web JavaServer Faces..Login form</title>
	<published>2009-04-06T06:45:34Z</published>
	<updated>2009-04-06T06:45:34Z</updated>
	<author>
		<name>budrockz</name>
	</author>
	<content type="html">try &lt;a href=&quot;http://flazx.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://flazx.com/&lt;/a&gt;&amp;nbsp;for the tutorials on JSF. hv fun..
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Ken Foust wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;budrockz wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;i'm developing a web application using Visaual Web Javaserver Faces in NetBeans 6.5 Beta version. i'm new to JSF and J2EE, and i want to validate the username and password of the Login page of my web application. do i have to maintain a loginbean? if so, how can i do it in NetBeans? 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
I need to do the same thing and also connect it to mysql. &amp;nbsp;There must be a tutorial out there somewhere?
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Development-f24581.html&quot; embed=&quot;fixTarget[24581]&quot; target=&quot;_top&quot; &gt;Visual Web - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/visual-web-JavaServer-Faces..Login-form-tp19967660p22909022.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22896331</id>
	<title>Re: visual web JavaServer Faces..Login form</title>
	<published>2009-04-05T10:29:29Z</published>
	<updated>2009-04-05T10:29:29Z</updated>
	<author>
		<name>Ken Foust</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;budrockz wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;i'm developing a web application using Visaual Web Javaserver Faces in NetBeans 6.5 Beta version. i'm new to JSF and J2EE, and i want to validate the username and password of the Login page of my web application. do i have to maintain a loginbean? if so, how can i do it in NetBeans? 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
I need to do the same thing and also connect it to mysql. &amp;nbsp;There must be a tutorial out there somewhere?
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Development-f24581.html&quot; embed=&quot;fixTarget[24581]&quot; target=&quot;_top&quot; &gt;Visual Web - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/visual-web-JavaServer-Faces..Login-form-tp19967660p22896331.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22560883</id>
	<title>Cannot find symbol</title>
	<published>2009-03-17T07:58:17Z</published>
	<updated>2009-03-17T07:58:17Z</updated>
	<author>
		<name>666lawyer</name>
	</author>
	<content type="html">I am doing the tutorial one of: &amp;nbsp;&lt;a href=&quot;http://www.netbeans.org/kb/60/web/inserts-updates-deletes.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/kb/60/web/inserts-updates-deletes.html&lt;/a&gt;, 
&lt;br&gt;With postgresql and Netbeans 6,5, but when I have to add code after giving double click on the drag and drop list, where says ddAgente.getSelected () and form1 tells me cannot find symbol??? &amp;nbsp;
&lt;br&gt;&lt;br&gt;public void ddAgente_processValueChange(ValueChangeEvent vce) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Object selectedAgenteId = ddAgente.getSelected();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;agenteDataProvider.setCursorRow(agenteDataProvider.findFirst(&amp;quot;AGENTE.ID&amp;quot;, selectedAgenteId));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;getSessionBean1().getLineaRowSet().setObject(1, selectedAgenteId);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lineaDataProvider.refresh();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;form1.discardSubmittedValues(&amp;quot;save&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;} catch (Exception e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;error(&amp;quot;Cannot switch to agente &amp;quot; + selectedAgenteId);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;log(&amp;quot;Cannot switch to agente &amp;quot; + selectedAgenteId, e);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;Cannot find symbol????
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Development-f24581.html&quot; embed=&quot;fixTarget[24581]&quot; target=&quot;_top&quot; &gt;Visual Web - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cannot-find-symbol-tp22560883p22560883.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22507285</id>
	<title>hyperlink action auto repeated on dropdown change</title>
	<published>2009-03-13T16:56:21Z</published>
	<updated>2009-03-13T16:56:21Z</updated>
	<author>
		<name>gram</name>
	</author>
	<content type="html">page 1 - user selects a dropdown. hidden field gets set with dropdown value. 
&lt;br&gt;click on hyperlink1 - action sets request bean variable with the hidden field value and navigates to page 2 in new window. 
&lt;br&gt;&lt;br&gt;works fine the first time. 
&lt;br&gt;&lt;br&gt;however if the page1 dropdown value gets changed the hyperlink1 action is repeated - displays page 2 in new window with the new value. 
&lt;br&gt;&lt;br&gt;this continues as i keep changing the dropdown. 
&lt;br&gt;&lt;br&gt;Any ideas? 
&lt;br&gt;&lt;br&gt;appreciate any help. 
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/hyperlink-action-auto-repeated-on-dropdown-change-tp22507285p22507285.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22371896</id>
	<title>Re: SyncResolver.UPDATE_ROW_CONFLICT row 0 attempt to update or delete a row that has been updated or deleted by another user</title>
	<published>2009-03-06T04:52:17Z</published>
	<updated>2009-03-06T04:52:17Z</updated>
	<author>
		<name>pscamara</name>
	</author>
	<content type="html">Same problem! Did you solve this?
&lt;br&gt;&lt;br&gt;Please, i need some help!&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Development-f24581.html&quot; embed=&quot;fixTarget[24581]&quot; target=&quot;_top&quot; &gt;Visual Web - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SyncResolver.UPDATE_ROW_CONFLICT-row-0-attempt-to-update-or-delete-a-row-that-has-been-updated-or-deleted-by-another-user-tp14884434p22371896.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22117770</id>
	<title>Enabling / Disabling Layout panel visiblity</title>
	<published>2009-02-20T01:51:57Z</published>
	<updated>2009-02-20T01:51:57Z</updated>
	<author>
		<name>Taibur Rahman</name>
	</author>
	<content type="html">Hello, i am new in netbeans. i have a problem that i want that when i click on a radio button then the respective layout panel will appear. And when i switch over another radio button then the previous layout panel will disappear where a new respective layout panel will appear. please help me how can i do this........
&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;Taibur Rahman&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Development-f24581.html&quot; embed=&quot;fixTarget[24581]&quot; target=&quot;_top&quot; &gt;Visual Web - Development&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Enabling---Disabling-Layout-panel-visiblity-tp22117770p22117770.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21740642</id>
	<title>Re: How do I access textField component using javascript in netbeans6.5</title>
	<published>2009-01-29T18:58:48Z</published>
	<updated>2009-01-29T18:58:48Z</updated>
	<author>
		<name>freeborn</name>
	</author>
	<content type="html">You have to code like this
&lt;br&gt;&lt;br&gt;&lt;b&gt;var x = document.getElementById('form1:txt2').getProps().value;&lt;/b&gt;&lt;br&gt;document.getElementById('form1:txt1').setProps({value:x});
&lt;br&gt;&lt;br&gt;good luck.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;camel8160 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;i have the same problem, and follow the instructions and it functions if i try the following:
&lt;br&gt;&lt;br&gt;var x = &amp;quot;hello&amp;quot;;
&lt;br&gt;document.getElementById('form1:txt1').setProps({value:x});
&lt;br&gt;&lt;br&gt;&lt;br&gt;but i have problems if i use: 
&lt;br&gt;&lt;br&gt;var x = document.getElementById('form1:txt2');
&lt;br&gt;document.getElementById('form1:txt1').setProps({value:x});
&lt;br&gt;&lt;br&gt;it shows me in txt1 : &amp;quot;[object HTMLSpanElement]&amp;quot;
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;my mail is camel8160@hotmail.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-I-access-textField-component-using-javascript-in-netbeans6.5-tp21524398p21740642.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21737411</id>
	<title>Re: How do I access textField component using javascript in netbeans6.5</title>
	<published>2009-01-29T14:29:56Z</published>
	<updated>2009-01-29T14:29:56Z</updated>
	<author>
		<name>camel8160</name>
	</author>
	<content type="html">i have the same problem, and follow the instructions and it functions if i try the following:
&lt;br&gt;&lt;br&gt;var x = &amp;quot;hello&amp;quot;;
&lt;br&gt;document.getElementById('form1:txt1').setProps({value:x});
&lt;br&gt;&lt;br&gt;&lt;br&gt;but i have problems if i use: 
&lt;br&gt;&lt;br&gt;var x = document.getElementById('form1:txt2');
&lt;br&gt;document.getElementById('form1:txt1').setProps({value:x});
&lt;br&gt;&lt;br&gt;it shows me in txt1 : &amp;quot;[object HTMLSpanElement]&amp;quot;
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;my mail is camel8160@hotmail.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-I-access-textField-component-using-javascript-in-netbeans6.5-tp21524398p21737411.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21599624</id>
	<title>Re: NetBeans 6.0 beta 1 with the VWP, trying to retrieve blob and display in table</title>
	<published>2009-01-22T00:16:28Z</published>
	<updated>2009-01-22T00:16:28Z</updated>
	<author>
		<name>ccalmen</name>
	</author>
	<content type="html">Hi Chris;
&lt;br&gt;What does &amp;quot;DisplayImage&amp;quot; represents in your code?
&lt;br&gt;Can i have its full definition?&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NetBeans-6.0-beta-1-with-the-VWP%2C-trying-to-retrieve-blob-and-display-in-table-tp13071455p21599624.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21597582</id>
	<title>Visula Web Issue: No Design or Java View .. Missing</title>
	<published>2009-01-21T21:32:17Z</published>
	<updated>2009-01-21T21:32:17Z</updated>
	<author>
		<name>Vivekanandan</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&amp;nbsp; &amp;nbsp;I am trying to create a web page and am not able to see the Design / Java view of the page. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Instead of Design view, source view of the page opens when a &amp;quot;.jsp&amp;quot; file is created.
&lt;br&gt;&lt;br&gt;I am using NetBeans IDE 6.1 (Build 200901051526)
&lt;br&gt;&lt;br&gt;Can someone help with this issue?
&lt;br&gt;&lt;br&gt;Please see the image below.. 
&lt;br&gt;&lt;br&gt;&lt;img src=&quot;http://old.nabble.com/file/p21597582/visual%2Bdesigner.jpg&quot; border=&quot;0&quot; /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Visual-Web---Users-f24580.html&quot; embed=&quot;fixTarget[24580]&quot; target=&quot;_top&quot; &gt;Visual Web - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Visula-Web-Issue%3A-No-Design-or-Java-View-..-Missing-tp21597582p21597582.html" />
</entry>

</feed>
