I've read a lot of things on the Internet about packaging JSF2 composite component in a JAR file.
Does somebody know where I can find what MUST be the structure of JAR ... |
For my composite component which is packaged in JAR I've used a <cc:interface> with a simple <cc:attribute> and, of course a <cc:implementation>.
In Development stage, I've a javax.faces.view.facelets.TagException which complains about cc:interface ... |
----- Any ads or links to ads that appear in this post are not endorsed nor recommended by this poster. -- View this message in context: http://www.nabble.com/JSF-component-width-tp23168848p23174212.html Sent from the Netbeans ... |
I'm new to jsp and the like, but I followed the netbeans tutorial and all was going well. Then I linked page 1 to page 2 using page navigation. When I ... |
readystateprint Joined: 20 Aug 2009 Posts: 1 Posted: Thu Aug 20, 2009 11:10 am Post subject: Writing a simple Composite Component with JSF 2.0 Posted by driscoll on ... |
Hi there, I am developping a quite large application which uses woodstock components. Since woodstock is no longer supported I consider to go the whole hog and switch to JSF 2 ... |
Has anyone else seen an error "The Library prefix cannot be empty!" in the create Composite Component wizard. I have a JSF 2 web app, with the JSF 2.0 library and ... |
|
I have a JSF web application that was created in NetBeans 6.5.1 using the VWP and is hosted on a Tomcat 6 server. I am having a problem when the application ... |
I select to create a new JSF Composite Component and get the dialog to enter the file name, etc. The last thing it asks for is a Prefix and there is ... |
Hi everyone! I'm using netbeans 6.8 and jsf2 an i wonder how to make netbeans show code completion for my composite components. Does anyone have some ideas? |
|
import java.io.IOException; import javax.faces.component.FacesComponent; import javax.faces.component.UIComponentBase; import javax.faces.context.FacesContext; import javax.faces.context.ResponseWriter; @FacesComponent(value = "mycustom") public class TestComponent extends UIComponentBase{ @Override public String getFamily() { return "custom"; } @Override public void ... |
|
I just wanted to report that the Netbeans Editor does not offer the following attributes in intellisense and even gives an error when using composite components: - rendered - id Is this already a known issue or shall i open a bug request? The code is executed properly but the editor does not like an expression like this: |
However, if I build it via my own ant build, or zip it up and renamed to jar, only firstTag can be recognised, and not secondTag. In fact, if i unzip the jar created using netbeans Java Class Library project, and jar it back, the problem will arise. Funny thing is, even when netbeans ide does not recognise the tags for ... |
|
Hello, This is my first page in JSF. Just wanted to know how can we see components of JSF in palette in netbeans. When i chose JSF framework in Netbeans while creating web application, only few components were visible in palette like Metadata, JSF Form, JSF Form from Entity, JSF Data table, JSF data table from entity. Where are all other ... |