Woodstock components examples for VWP NB 6.1 -- where to find?

View: New views
20 Messages — Rating Filter:   Alert me  
< Prev | 1 - 2 | Next >

Woodstock components examples for VWP NB 6.1 -- where to find?

by Oddvard M :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I am looking for a example source project for Woodstock components. In
https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
don't have the source for them. In
http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can somebody
please point me in the right direction?

Oddvard


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Khaja :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to
http://<host:port>/example/faces/index.jsp  you should be able to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

>Hi,
>
>I am looking for a example source project for Woodstock components. In
>https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
>don't have the source for them. In
>http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
>Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can somebody
>please point me in the right direction?
>
>Oddvard
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@...
>For additional commands, e-mail: users-help@...
>
>  
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Venkatesh Babu-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The example application also has links to the sources.
http://webdev2.sun.com/example/faces/index.jsp

If you want to download the entire example application locally to your
machine and run it yourself
you can take a look at the "Build it yourself" section

https://woodstock.dev.java.net/BuildYourself.htm

-Venky
Oddvard Myrnes wrote:

> Hi,
>
> I am looking for a example source project for Woodstock components. In
> https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
> don't have the source for them. In
> http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
> Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can somebody
> please point me in the right direction?
>
> Oddvard
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>  


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Tooltip on ImageHyperlink component (woodstock).

by Oddvard M :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I have a fractional page that I use with sevral other pages. On this
page, I have sevral Imagehypelink components (NB 6.1 J2EE 1.4 VWP UI:) and I
dont want to display
the 'text' property, but I want the tooltip to show when the cursor rests on
Image
object. This will not work without having some text displayd, and the
tooltip will only show when cursor rests over the 'text'. Is this a bug, or
is it supposed to work that way?

Oddvard


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


RE: Woodstock components examples for VWP NB 6.1 -- where to find?

by Oddvard M :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

Thanks a lot :-)

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[mailto:Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 10:53 AM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to
http://<host:port>/example/faces/index.jsp  you should be able to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

>Hi,
>
>I am looking for a example source project for Woodstock components. In
>https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
>don't have the source for them. In
>http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
>Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
somebody

>please point me in the right direction?
>
>Oddvard
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@...
>For additional commands, e-mail: users-help@...
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Tooltip on ImageHyperlink component (woodstock).

by Venkatesh Babu-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Oddvard

I just tried this out.. It looks like the browser only displays the
tooltip if there is some text present for the hyperlink.
 From the generated html source code, i see that the tooltip is being
correctly assigned to the hyperlink.
But unless a text is presented for the hyperlink, the tooltip is not
being shown.

<a id="form1:imageHyperlink1" style="position: absolute; left: 264px; top: 120px;" onclick="return hyperlink_submit(this, 'form1', null);" href="#" title="This is a long tooltip for this image hyperlink">
  <img id="form1:imageHyperlink1_image" src="/WebApplication31/resources/108_0872.JPG" alt="" border="0" height="50" width="50">
</a>


But if you are using the latest version of the woodstock components this
is no longer seen.
I am able to see the tooltip even without any text for the imageHyperlink.

-Venky

Oddvard Myrnes wrote:

> Hi,
>
> I have a fractional page that I use with sevral other pages. On this
> page, I have sevral Imagehypelink components (NB 6.1 J2EE 1.4 VWP UI:) and I
> dont want to display
> the 'text' property, but I want the tooltip to show when the cursor rests on
> Image
> object. This will not work without having some text displayd, and the
> tooltip will only show when cursor rests over the 'text'. Is this a bug, or
> is it supposed to work that way?
>
> Oddvard
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>  

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Louis Polycarpou :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Khaja,

Is there a full, buildable source package for the components for these
examples?  Were these built in NetBeans and, if so, where can I obtain
the full project(s)?

Thanks,
Louis

Khaja wrote:

> You can download example.war file  from
> https://woodstock.dev.java.net/Download.htm and deploy it.
>
> Go to http://<host:port>/example/faces/index.jsp  you should be able
> to see
> source for all the examples.
>
> Alternatively,
> Go to
> http://webdev2.sun.com/example/faces/index.jsp
>
> Khaja
>
>
>
>
> Oddvard Myrnes wrote:
>
>> Hi,
>>
>> I am looking for a example source project for Woodstock components. In
>> https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
>> don't have the source for them. In
>> http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source
>> for
>> Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
>> somebody
>> please point me in the right direction?
>>
>> Oddvard
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@...
>> For additional commands, e-mail: users-help@...
>>
>>  
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Khaja :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Yes these examples were built using Netbeans,and there are full  source
packages available for building yourself,
You need to have an account on java.net, register for account , you can
checkout the source for these examples

For more information on this refer to

https://woodstock.dev.java.net/BuildYourself.htm

-Khaja

Louis Polycarpou wrote:

> Khaja,
>
> Is there a full, buildable source package for the components for these
> examples?  Were these built in NetBeans and, if so, where can I obtain
> the full project(s)?
>
> Thanks,
> Louis
>
> Khaja wrote:
>
>> You can download example.war file  from
>> https://woodstock.dev.java.net/Download.htm and deploy it.
>>
>> Go to http://<host:port>/example/faces/index.jsp  you should be able
>> to see
>> source for all the examples.
>>
>> Alternatively,
>> Go to
>> http://webdev2.sun.com/example/faces/index.jsp
>>
>> Khaja
>>
>>
>>
>>
>> Oddvard Myrnes wrote:
>>
>>> Hi,
>>>
>>> I am looking for a example source project for Woodstock components. In
>>> https://woodstock.dev.java.net/Preview.htm I can see the examples,
>>> but I
>>> don't have the source for them. In
>>> http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are
>>> source for
>>> Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
>>> somebody
>>> please point me in the right direction?
>>>
>>> Oddvard
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@...
>>> For additional commands, e-mail: users-help@...
>>>
>>>  
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@...
>> For additional commands, e-mail: users-help@...
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


RE: Woodstock components examples for VWP NB 6.1 -- where to find?

by Oddvard M :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Dear Agadi,

Are these examples for VWP?

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[mailto:Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 10:53 AM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to
http://<host:port>/example/faces/index.jsp  you should be able to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

>Hi,
>
>I am looking for a example source project for Woodstock components. In
>https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
>don't have the source for them. In
>http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
>Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
somebody

>please point me in the right direction?
>
>Oddvard
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@...
>For additional commands, e-mail: users-help@...
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Cathy Mucci :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Oddvard,

These examples were not written using NetBeans. 

Perhaps there are some tutorials that you could benefit from? You might want to start here:
https://woodstock.dev.java.net/Documentation.htm

Is there an example for a  particular component or set of components that you are looking for? 
Cathy


Oddvard Myrnes wrote:
Dear Agadi,

Are these examples for VWP?

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 10:53 AM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to
http://<host:port>/example/faces/index.jsp  you should be able to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

  
Hi,

I am looking for a example source project for Woodstock components. In
https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
don't have the source for them. In
http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
    
somebody
  
please point me in the right direction?

Oddvard


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...



    


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

  


-- 
Cathy Mucci		
QE, Projects Woodstock and Lockhart
Developer, Tools, & Services Organization 
Sun Microsystems, Inc.
781-442-3521                 

RE: Woodstock components examples for VWP NB 6.1 -- where to find?

by Oddvard M :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Dear Catherine,
 
YES, in perticulat the table component. In VWP (which many use) there sem to be no advanced examples that I can learn from. Can you help?
 
Oddvard
-----Original Message-----
From: Catherine.Mucci@... [mailto:Catherine.Mucci@...]
Sent: Monday, May 12, 2008 5:06 PM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to find?

Oddvard,

These examples were not written using NetBeans. 

Perhaps there are some tutorials that you could benefit from? You might want to start here:
https://woodstock.dev.java.net/Documentation.htm

Is there an example for a  particular component or set of components that you are looking for? 
Cathy


Oddvard Myrnes wrote:
Dear Agadi,

Are these examples for VWP?

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 10:53 AM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to
http://<host:port>/example/faces/index.jsp  you should be able to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

  
Hi,

I am looking for a example source project for Woodstock components. In
https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
don't have the source for them. In
http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
    
somebody
  
please point me in the right direction?

Oddvard


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...



    


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

  


-- 
Cathy Mucci		
QE, Projects Woodstock and Lockhart
Developer, Tools, & Services Organization 
Sun Microsystems, Inc.
781-442-3521                 

Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Khaja :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

No, these are not written using VWP.
If you are intersted in  using VWP try looking at these see if it helps

http://www.netbeans.org/kb/60/web/helloweb.html

-Khaja

Oddvard Myrnes wrote:
Dear Agadi,

Are these examples for VWP?

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 10:53 AM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to
http://<host:port>/example/faces/index.jsp  you should be able to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

  
Hi,

I am looking for a example source project for Woodstock components. In
https://woodstock.dev.java.net/Preview.htm I can see the examples, but I
don't have the source for them. In
http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are source for
Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
    
somebody
  
please point me in the right direction?

Oddvard


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...



    


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

  


RE: Woodstock components examples for VWP NB 6.1 -- where to find?

by Oddvard M :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Khaja,

I have downloaded the example module from CVS and are trying to buils it.
However the packages in com.sun.data are not there, and I get uresolved in
project. How can I fix it?

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[mailto:Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 1:22 PM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


Yes these examples were built using Netbeans,and there are full  source
packages available for building yourself,
You need to have an account on java.net, register for account , you can
checkout the source for these examples

For more information on this refer to

https://woodstock.dev.java.net/BuildYourself.htm

-Khaja

Louis Polycarpou wrote:

> Khaja,
>
> Is there a full, buildable source package for the components for these
> examples?  Were these built in NetBeans and, if so, where can I obtain
> the full project(s)?
>
> Thanks,
> Louis
>
> Khaja wrote:
>
>> You can download example.war file  from
>> https://woodstock.dev.java.net/Download.htm and deploy it.
>>
>> Go to http://<host:port>/example/faces/index.jsp  you should be able
>> to see
>> source for all the examples.
>>
>> Alternatively,
>> Go to
>> http://webdev2.sun.com/example/faces/index.jsp
>>
>> Khaja
>>
>>
>>
>>
>> Oddvard Myrnes wrote:
>>
>>> Hi,
>>>
>>> I am looking for a example source project for Woodstock components. In
>>> https://woodstock.dev.java.net/Preview.htm I can see the examples,
>>> but I
>>> don't have the source for them. In
>>> http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are
>>> source for
>>> Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
>>> somebody
>>> please point me in the right direction?
>>>
>>> Oddvard
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@...
>>> For additional commands, e-mail: users-help@...
>>>
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@...
>> For additional commands, e-mail: users-help@...
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Woodstock components examples for VWP NB 6.1 -- where to find?

by Khaja :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You need do get the dependant jar files copied .You can get the those jar files from
example.war file that you downloaded from

https://woodstock.dev.java.net/Download.htm

Place the jars copied from WEB-INF/lib folder of  example (you may not want the localization jars) under
lib folder of  example netbeans project,  and modify the path in the build file accordingly.The path you
want to change should be seen under components home resources section  of build.xml.

-Khaja






Oddvard Myrnes wrote:
Khaja,

I have downloaded the example module from CVS and are trying to buils it.
However the packages in com.sun.data are not there, and I get uresolved in
project. How can I fix it?

Oddvard

-----Original Message-----
From: Agadi.Khajamainuddeen@...
[Agadi.Khajamainuddeen@...]
Sent: Monday, May 12, 2008 1:22 PM
To: users@...
Subject: Re: Woodstock components examples for VWP NB 6.1 -- where to
find?


Yes these examples were built using Netbeans,and there are full  source
packages available for building yourself,
You need to have an account on java.net, register for account , you can
checkout the source for these examples

For more information on this refer to

https://woodstock.dev.java.net/BuildYourself.htm

-Khaja

Louis Polycarpou wrote:

  
Khaja,

Is there a full, buildable source package for the components for these
examples?  Were these built in NetBeans and, if so, where can I obtain
the full project(s)?

Thanks,
Louis

Khaja wrote:

    
You can download example.war file  from
https://woodstock.dev.java.net/Download.htm and deploy it.

Go to http://<host:port>/example/faces/index.jsp  you should be able
to see
source for all the examples.

Alternatively,
Go to
http://webdev2.sun.com/example/faces/index.jsp

Khaja




Oddvard Myrnes wrote:

      
Hi,

I am looking for a example source project for Woodstock components. In
https://woodstock.dev.java.net/Preview.htm I can see the examples,
but I
don't have the source for them. In
http://www.javapassion.com/handsonlabs/jsfwoodstock/ there are
source for
Netbeans 5.5 but will not run in 6.1, and they are not for VWP. Can
somebody
please point me in the right direction?

Oddvard


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...



        
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

      
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

    


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

  


RE: Woodstock components examples for VWP NB 6.1 -- where to find?

by Oddvard M :: Rate this Message: