I made a composite component and declared a custom namespace in my taglib like this:
[...]
<namespace>http://www.#####.info/components</namespace>
<composite-library-name>composites</composite-library-name>
[...]
Now when I use that namespace:
xmlns:wb="http://www.#####.info/components"
Everything 'works Runtime' but Eclipse wont show any Code assist like when I use the 'default' namespace:
xmlns:wbcomposites="http://java.sun.com/jsf/composite/composites"
Is this a normal Eclipse behaviour or did I do something wrong ?
Edit:
For example when i write:
<wb:
And then press [STRG] + [SPACE] the code assist shows me that there are no components. I think this behaviour would make the "user" think that he has done something wrong ...
I hope there is a way to fix this from my side..