<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-24580</id>
	<title>Nabble - Visual Web - Users</title>
	<updated>2009-10-26T05:11:02Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Visual-Web---Users-f24580.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Visual-Web---Users-f24580.html" />
	<subtitle type="html">A general discussion list for the modules end users.</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;</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;</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;</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</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;</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;
</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;</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-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;</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?</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;
</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.</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;</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;</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-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</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;</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.</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;</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</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;</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</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;
</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;
</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;</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-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;</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-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;
</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;</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?</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;</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>

<entry>
	<id>tag:old.nabble.com,2006:post-21524706</id>
	<title>Re: How do I access textField component using javascript in netbeans6.5</title>
	<published>2009-01-17T22:14:21Z</published>
	<updated>2009-01-17T22:14:21Z</updated>
	<author>
		<name>freeborn</name>
	</author>
	<content type="html">problem solved.
&lt;br&gt;&lt;br&gt;for someone may not know, In netbeans 6.5 you will have to use the following code
&lt;br&gt;&lt;br&gt;&lt;b&gt;document.getElementById(txt).setProps({value: &amp;quot;hello&amp;quot;});&lt;/b&gt;&lt;br&gt;&lt;br&gt;For more information goto
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://webdev2.sun.com/woodstock-tlddocs/webuijsf/tld-summary.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webdev2.sun.com/woodstock-tlddocs/webuijsf/tld-summary.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;hope this help
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-I-access-textField-component-using-javascript-in-netbeans6.5-tp21524398p21524706.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21524398</id>
	<title>How do I access textField component using javascript in netbeans6.5</title>
	<published>2009-01-17T21:02:41Z</published>
	<updated>2009-01-17T21:02:41Z</updated>
	<author>
		<name>freeborn</name>
	</author>
	<content type="html">I write a simple javascript function as the following
&lt;br&gt;&lt;br&gt;&lt;b&gt;document.getElementById('form1:textField1').value = &amp;quot;hello&amp;quot;;&lt;/b&gt;&lt;br&gt;&lt;br&gt;But the textfield shows nothing in netbeans 6.5.
&lt;br&gt;The above code works fine in netbeans 5.5.1.
&lt;br&gt;&lt;br&gt;I already added binding property to both form1 and textfield1.
&lt;br&gt;&lt;br&gt;How to access textfield using javascript in netbeans 6.5 ?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-I-access-textField-component-using-javascript-in-netbeans6.5-tp21524398p21524398.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21430703</id>
	<title>Re: Weird problem with Firefox 3.05 on Windows</title>
	<published>2009-01-12T23:32:29Z</published>
	<updated>2009-01-12T23:32:29Z</updated>
	<author>
		<name>freeborn</name>
	</author>
	<content type="html">Thanks a lot for your response.
&lt;br&gt;My problem was solved by upgrading woodstock component.
&lt;br&gt;This is a bug of woodstock component come with netbeans.
&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;krysP wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I don't see this using FF 3.0.5 in a simple test with 6.5 and woodstock 
&lt;br&gt;4.2 version however I don't know exactly what you have in your project. 
&lt;br&gt;I'm not sure if upgrading your woodstock version will solve issue as 
&lt;br&gt;was similarly posted in this thread on old Creator forum: 
&lt;br&gt;&lt;a href=&quot;http://forums.sun.com/thread.jspa?forumID=427&amp;threadID=5344303&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.sun.com/thread.jspa?forumID=427&amp;threadID=5344303&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Another alternative would be to migrate to ICEfaces
&lt;br&gt;&lt;a href=&quot;http://www.netbeans.org/community/news/newsletter/2008-12-22.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/community/news/newsletter/2008-12-22.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;/krys
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Weird-problem-with-Firefox-3.05-on-Windows-tp21413675p21430703.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21427306</id>
	<title>Re: Weird problem with Firefox 3.05 on Windows</title>
	<published>2009-01-12T17:00:22Z</published>
	<updated>2009-01-12T17:00:22Z</updated>
	<author>
		<name>krysP</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I don't see this using FF 3.0.5 in a simple test with 6.5 and woodstock 
&lt;br&gt;4.2 version however I don't know exactly what you have in your project. 
&lt;br&gt;I'm not sure if upgrading your woodstock version will solve issue as 
&lt;br&gt;was similarly posted in this thread on old Creator forum: 
&lt;br&gt;&lt;a href=&quot;http://forums.sun.com/thread.jspa?forumID=427&amp;threadID=5344303&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.sun.com/thread.jspa?forumID=427&amp;threadID=5344303&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Another alternative would be to migrate to ICEfaces
&lt;br&gt;&lt;a href=&quot;http://www.netbeans.org/community/news/newsletter/2008-12-22.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/community/news/newsletter/2008-12-22.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;/krys
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Weird-problem-with-Firefox-3.05-on-Windows-tp21413675p21427306.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21413675</id>
	<title>Weird problem with Firefox 3.05 on Windows</title>
	<published>2009-01-12T04:42:31Z</published>
	<updated>2009-01-12T04:42:31Z</updated>
	<author>
		<name>freeborn</name>
	</author>
	<content type="html">I created a simple Visual JSF Project with several pages.
&lt;br&gt;The problem is every time I go to new page it shows only blank page.
&lt;br&gt;I have to refresh page every time I change page.
&lt;br&gt;This kind of problem happen only on Windows (I test on XP)
&lt;br&gt;but working fine on Linux (Ubuntu).
&lt;br&gt;The browser I use on both OS is Firefox 3.05.
&lt;br&gt;&lt;br&gt;IE 6 is working fine on XP. 
&lt;br&gt;&lt;br&gt;Any suggestion?
&lt;br&gt;&lt;br&gt;Thank in Advance</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Weird-problem-with-Firefox-3.05-on-Windows-tp21413675p21413675.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21342996</id>
	<title>Re: How to Bind an Entity Bean to a DropDownList</title>
	<published>2009-01-07T15:44:17Z</published>
	<updated>2009-01-07T15:44:17Z</updated>
	<author>
		<name>FromDotNetToJava</name>
	</author>
	<content type="html">After poking around (NB team there is very poor documentation for this) I crafted a solution...
&lt;br&gt;&lt;br&gt;First off, let me say that I am not using the non-stylable WoodCrap DrowDownList component. Rather, I am implementing a Standard DropDownList.
&lt;br&gt;&lt;br&gt;I pulled my lookup table values in ServletListener.contextInitialized() and stored those values as an arraylist of SelectItems in the ServletContext to save on Session bloat:
&lt;br&gt;&lt;br&gt;&amp;lt;code&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ServletContext sc = event.getServletContext();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Global Db data cache in VM
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Coordinate coordinate = new Coordinate();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; coordinate.Initialize();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Countries
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; List list = (List&amp;lt;Lookup&amp;gt;) coordinate.getCountryLookups(); // see entity manager above
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ArrayList CountryAL = new ArrayList();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i = 0; i &amp;lt; list.size(); i++) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lookup lookup = (Lookup) list.get(i);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CountryAL.add(new SelectItem(lookup.getLookupid().toString(), lookup.getValue()));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sc.setAttribute(&amp;quot;countries&amp;quot;, CountryAL);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sc.setAttribute(&amp;quot;default country&amp;quot;, &amp;quot;237&amp;quot;);
&lt;br&gt;&amp;lt;/code&amp;gt;
&lt;br&gt;&lt;br&gt;Secondly, I created get properties in my page fragment:
&lt;br&gt;&lt;br&gt;&amp;lt;code&amp;gt;
&lt;br&gt;public ArrayList getCountries() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FacesContext fc = FacesContext.getCurrentInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return (ArrayList) fc.getExternalContext().getApplicationMap().get(&amp;quot;countries&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; public String getDefaultCountry() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FacesContext fc = FacesContext.getCurrentInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return (String) fc.getExternalContext().getApplicationMap().get(&amp;quot;default country&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;lt;/code&amp;gt;
&lt;br&gt;&lt;br&gt;Lastly, I did the binding using the page fragment design object tree view...
&lt;br&gt;1. select the DDL &amp;gt; right click &amp;gt; Property Bindings &amp;gt; select DefaultCountry as the binding target.
&lt;br&gt;2. expand the DDL. You now see the f:selectItems name (mine is called ddlCountryItems).
&lt;br&gt;3. select the Items name &amp;gt; right click &amp;gt; Property Bindings &amp;gt; select countries as the binding target.
&lt;br&gt;&lt;br&gt;If NB acts buggy save, close, reopen, clean and build.
&lt;br&gt;&lt;br&gt;Compile and life should be all good. I hope this really does help out someone.&lt;div class=&quot;signature&quot;&gt;Thanks,
&lt;br&gt;&lt;br&gt;Chris&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-Bind-an-Entity-Bean-to-a-DropDownList-tp21324496p21342996.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21324496</id>
	<title>How to Bind an Entity Bean to a DropDownList</title>
	<published>2009-01-06T20:02:00Z</published>
	<updated>2009-01-06T20:02:00Z</updated>
	<author>
		<name>FromDotNetToJava</name>
	</author>
	<content type="html">Environment: NB 6.1, Vista OS, MySql 5.1, GlassFish.
&lt;br&gt;&lt;br&gt;Over the past day I have sought clear direction as to how to bind a JPA entity bean to a dropdownlist. I examined the following Nabble links for assistance:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/Visual-Web-Designer%3A-Bind-an-EJB3-entity-bean-to-a-dropdown-list-td14888317.html#a14920128&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Visual-Web-Designer%3A-Bind-an-EJB3-entity-bean-to-a-dropdown-list-td14888317.html#a14920128&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/Dropdown-list-of-user-tp11783679p11801513.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Dropdown-list-of-user-tp11783679p11801513.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Here is what I have done thus far:
&lt;br&gt;&lt;br&gt;&lt;b&gt;&amp;lt;entity bean&amp;gt;&lt;/b&gt;&lt;br&gt;I used the IDE to auto-gen the POJO entity which is a simple lookup table in the Db:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;id &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;unsigned int,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;domain &amp;nbsp; &amp;nbsp; varchar(50)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;value &amp;nbsp; &amp;nbsp; &amp;nbsp; varchar(255)
&lt;br&gt;&lt;b&gt;&amp;lt;/entity bean&amp;gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&amp;lt;in an entity manager&amp;gt;&lt;/b&gt;&lt;br&gt;public List getCountryLookups() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Query query = _EM.createNamedQuery(&amp;quot;Lookup.findByDomain&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; query.setParameter(&amp;quot;domain&amp;quot;, &amp;quot;Country&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return query.getResultList();
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;b&gt;&amp;lt;/in an entity manager&amp;gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&amp;lt;entended an ObjectListDataProvider&amp;gt;&lt;/b&gt;&lt;br&gt;public class CountriesDataProvider extends ObjectListDataProvider {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; private static ArrayList _ArrayList;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; public CountriesDataProvider() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (_ArrayList == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FacesContext fc = FacesContext.getCurrentInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _ArrayList = new ArrayList();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _ArrayList.add((List&amp;lt;Lookup&amp;gt;) fc.getExternalContext().getApplicationMap().get(&amp;quot;countries&amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setList(_ArrayList);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;b&gt;&amp;lt;/entended an ObjectListDataProvider&amp;gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&amp;lt;getter and setter in page fragment&amp;gt;&lt;/b&gt;&lt;br&gt;private CountriesDataProvider _Countries = new CountriesDataProvider();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public CountriesDataProvider getCountries() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return _Countries;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;b&gt;&amp;lt;/getter and setter in page fragment&amp;gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;Now this is where things get hazy... I have binded the dropdownlist to the getcountries property - but the rendering didn't work.
&lt;br&gt;&lt;br&gt;So my questions are:
&lt;br&gt;&lt;br&gt;1. Bind to the selectItems node?
&lt;br&gt;2. Is there a better method for binding an entity bean to the ddl?&lt;div class=&quot;signature&quot;&gt;Thanks,
&lt;br&gt;&lt;br&gt;Chris&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-Bind-an-Entity-Bean-to-a-DropDownList-tp21324496p21324496.html" />
</entry>

</feed>
