Re: java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id')

2015-11-20 Thread l.pe...@senat.fr
wrote: java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id') at org.apache.myfaces.shared.renderkit.html.HtmlResponseWriterImpl.writeAttribute(HtmlResponseWriterImpl.java:816) Searched google and found the following: http://myfaces.apache.org/shared11/myfaces-share

Re: java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id')

2015-11-19 Thread l.pe...@senat.fr
lement is closed (attribute 'id') at org.apache.myfaces.shared.renderkit.html.HtmlResponseWriterImpl.writeAttribute(HtmlResponseWriterImpl.java:816) Searched google and found the following: http://myfaces.apache.org/shared11/myfaces-shared-core/xref/org/apache/myfaces/shared/renderki

Re: java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id')

2015-11-18 Thread l.pe...@senat.fr
On 17/11/2015 13:11, l.pe...@senat.fr wrote: On 17/11/2015 01:21, Howard W. Smith, Jr. wrote: On Mon, Nov 16, 2015 at 2:59 PM, l.pe...@senat.fr <l.pe...@senat.fr> wrote: java.lang.IllegalStateException: Must be called before the start element is closed (attribu

Re: java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id')

2015-11-17 Thread l.pe...@senat.fr
On 17/11/2015 01:21, Howard W. Smith, Jr. wrote: On Mon, Nov 16, 2015 at 2:59 PM, l.pe...@senat.fr <l.pe...@senat.fr> wrote: java.lang.IllegalStateException: Must be called before the start element is closed (attribu

java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id')

2015-11-16 Thread l.pe...@senat.fr
'/error.xhtml' will be shown. java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id') at org.apache.myfaces.shared.renderkit.html.HtmlResponseWriterImpl.writeAttribute(HtmlResponseWriterImpl.java:816

Re: java.lang.IllegalStateException: Must be called before the start element is closed (attribute 'id')

2015-11-16 Thread Howard W. Smith, Jr.
On Mon, Nov 16, 2015 at 2:59 PM, l.pe...@senat.fr <l.pe...@senat.fr> wrote: > java.lang.IllegalStateException: Must be called before the start element > is closed (attribute 'id') > at > org.apache.myfaces.shared.renderkit.html.HtmlResponseWriterI

Setting the class Attribute for Custom Tags

2015-06-17 Thread William Lucy
For native JSF tags, setting the class attribute performs as you'd expect; however, in user-defined tags, setting the class attribute results in the exception java.lang.IllegalArgumentException: Component property class is not writable Which is how we've behaved traditionally; using

Re: h:inputFile required attribute don't work

2015-04-29 Thread Mike Kienenberger
My apologies for the late reply. Any chance you can create an issue for this in our JIRA issue tracker and submit a patch with a fix? On Tue, Apr 14, 2015 at 10:37 AM, Vojtěch Zavřel vojtech.zav...@aura.cz wrote: Hi, it seems to me, that the required attribute of h:inputFile is not working

h:inputFile required attribute don't work

2015-04-14 Thread Vojtěch Zavřel
Hi, it seems to me, that the required attribute of h:inputFile is not working. The reason is, that there is always an instance of javax.servlet.http.Part in submitted value and there should be something like part.getSize() = 0 in getConvertedValue() or maybe overriden isEmpty method

Component unsing 2 inputs for 1 bean (as binding-attribute) containing 2 attributes

2014-07-09 Thread Martin Gruschi
...@chello.at schrieb: I've already tried this, which resulted in f:convertNumber is nested inside a composite component but does not have a for attribute. I forgot to mention that I need to use JSF 2.0. Martin Martin Schacherlmartin.schach...@iteratec.at schrieb: AFAIR you'll need to insert

Composite with 2 outputs on 1 attribute

2014-07-07 Thread pluenl
I want to build a Composite handling a Bean with 2 members internally: Bean with Bigdecimal value and String unit as Attribute for the Composite: composite:interface composite:attribute name=id required=true/ composite:attribute name=bean required=true type=a.x.Y/ /composite:interface

AW: Composite with 2 outputs on 1 attribute

2014-07-07 Thread Martin Schacherl
-Ursprüngliche Nachricht- Von: plu...@chello.at [mailto:plu...@chello.at] Gesendet: Montag, 7. Juli 2014 13:06 An: users@myfaces.apache.org Betreff: Composite with 2 outputs on 1 attribute I want to build a Composite handling a Bean with 2 members internally: Bean with Bigdecimal value

Re: AW: Composite with 2 outputs on 1 attribute

2014-07-07 Thread pluenl
I've already tried this, which resulted in f:convertNumber is nested inside a composite component but does not have a for attribute. I forgot to mention that I need to use JSF 2.0. Martin Martin Schacherl martin.schach...@iteratec.at schrieb: AFAIR you'll need to insert

Re: AW: Composite with 2 outputs on 1 attribute

2014-07-07 Thread pluenl
/composite:implementation my:compOut id=beanId bean=#{bean} f:convertNumber pattern=#,##0.00 locale=de for=unit/ /my:compOut plu...@chello.at schrieb: I've already tried this, which resulted in f:convertNumber is nested inside a composite component but does not have a for attribute. I forgot to mention

Re: f:selectItem escape attribute doesn't work ?

2012-08-31 Thread Mike Kienenberger
Have you tried tracing what is happening through the debugger? My guess is that there's a bug in the t:selectOneRadio renderer. It seems like it would be straightforward to determine the cause and submit a patch. You might even be able to find the problem by examining the t:selectOneRadio encoding

Re: f:selectItem escape attribute doesn't work ?

2012-08-31 Thread Leonardo Uribe
Hi I checked the problem and it seems to be a typo error. Instead escape use escapeItem: t:selectOneRadio id=idRadioJSF layout=spread f:selectItem itemValue=1 itemLabel=#{controller.formatLabel('test')} escapeItem=false / /t:selectOneRadio

f:selectItem escape attribute doesn't work ?

2012-08-08 Thread Patrick Meyer
Hi,   I would like to format selectItem label with html tags in  selectOneRadio component. But the label is not rendered as HTML. What I'm doing wrong?   lt;t:selectOneRadio id=idRadioJSF layout=spread gt;     lt;f:selectItem itemValue=1 itemLabel=#{controller.formatLabel('test')}

Fwd: f:selectItem escape attribute doesn't work ?

2012-08-08 Thread Patrick Meyer
One more time as text email. Hi,   I would like to format selectItem label with html tags in  selectOneRadio component. But the label is not rendered as HTML. What I'm doing wrong?   t:selectOneRadio id=idRadioJSF layout=spread     f:selectItem itemValue=1

Re: ui:debug rendered attribute / display dependent upon project stage

2012-03-28 Thread Grzegorz Szymański
I have the same problem with mojarra. The problem is in the implementation of UIDebug and setting the default value for the attribute rendered. public UIDebug() { super(); this.setTransient(true); this.setRendered(true); this.setRendererType(null); } The value

Re: Question using rendered attribute within fixed rows

2011-08-21 Thread Alf Felis
and org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer in production environment. Regards, Volker 2011/8/17 Alf Felisalf.fe...@gmx.de: Hi all, I have a question using the rendered attribute within a fixed row. The test page below always shows 2 warnings: WARN

[Trinidad] disabled attribute and form submit does not work correctly

2011-06-15 Thread Detlef Grittner
I am loading a page with a tr:inputNumberSpinbox component, whose disabled attribute is intially set to true. With a tr:selectOneRadio I trigger the disabled flag and the value 1 will set it to false. This is done with PPR and autoSubmit in the tr:selectOneRadio. This part of xhtml page

Re: [Trinidad] disabled attribute and form submit does not work correctly

2011-06-15 Thread Walter Mourão
://arcadian.com.br http://oriens.com.br On Wed, Jun 15, 2011 at 11:23 AM, Detlef Grittner detlef.gritt...@sohard.de wrote: I am loading a page with a tr:inputNumberSpinbox component, whose disabled attribute is intially set to true. With a tr:selectOneRadio I trigger the disabled flag

Re: [Trinidad] disabled attribute and form submit does not work correctly

2011-06-15 Thread Detlef Grittner
Hi, adding the partialTriggers to the enclosing form does not change the behavior. And I have tried another control tr:selectOneRadio, it shows the same faulty behavior regarding the disabled attribute. Just for the record (I forgot to add the versions in the original post), I am running

ui:debug rendered attribute / display dependent upon project stage

2010-12-26 Thread Timm Linder
with PrimeFaces 2.2-RC2 and Spring 3.0.5 and its SpringBeanFacesELResolver). Thanks! -- View this message in context: http://old.nabble.com/ui%3Adebug-rendered-attribute---display-dependent-upon-project-stage-tp30536641p30536641.html Sent from the MyFaces - Users mailing list archive at Nabble.com.

MyFaces 1.2 : attribute valueChangeListener

2010-07-29 Thread ABOUSSOROR El Arbi
/UIComponent.html So when I use the tag selectOneMenu with the attribute valueChangeListener the listener is added to the selectOneMenu component, wright ? h:selectOneMenu value=#{flightController.selectedFlightCode} onchange=submit() valueChangeListener

Re: MyFaces 1.2 : attribute valueChangeListener

2010-07-29 Thread Jakob Korherr
Hi, You can only add one ValueChangeListener via the valueChangeListener attribute on the tag. If you want to add more than one you have to add f:valueChangeListener / tags as children to your h:selectOneMenu /. Here you can find the documentation of f:valueChangeListener/: http

Re: [MyFaces] Get rid of ALT attribute is missing warnings for images

2010-07-26 Thread schneidc
Thanks for the tipp, adding alt attributes to the images helped. Jakob Korherr wrote: Hi, j_id2 is the clientId of the h:graphicImage component. However this id does not have to be rendered for images, thus you don't find it in the HTML. Just set the alt attribute on the image

[MyFaces] Get rid of ALT attribute is missing warnings for images

2010-07-22 Thread schneidc
Hi, I always get this kind of warnings when browsing through the pages of my application: [22.07.10 10:12:46:578 CEST] 3c0b HtmlImageRend W org.apache.myfaces.shared_impl.renderkit.html.HtmlImageRendererBase encodeEnd ALT attribute is missing for : j_id12 The strange thing for me

Re: [MyFaces] Get rid of ALT attribute is missing warnings for images

2010-07-22 Thread Jakob Korherr
Hi, j_id2 is the clientId of the h:graphicImage component. However this id does not have to be rendered for images, thus you don't find it in the HTML. Just set the alt attribute on the image and the warning will be gone. This attribute should IMO always be set (especially when thinking about

Re: Table Header issue with height attribute and sortable columns

2010-07-08 Thread Michael Kurz
with height attribute and sortable columns I am having following issue with tables. Create a table with height attribute (so that headers are fixed), sortable columns and enough data for scrollbars to appear. Now load the page, scroll down the table (the header will stay but data will scroll

Table Header issue with height attribute and sortable columns

2010-07-07 Thread Ravi Kapoor
I am having following issue with tables. Create a table with height attribute (so that headers are fixed), sortable columns and enough data for scrollbars to appear. Now load the page, scroll down the table (the header will stay but data will scroll) and once scrolled down, click on a sortable

Is blocking attribute working on commandButton ?

2010-05-17 Thread Jakub Kahovec
Hello, I'm using Trinidad 1.2.13 and I've been trying to make blocking attribute working on commandButton tag but it doesn't seem to be doing anything. I've searched through the mailing list but haven't found a clear answer for that. Then I went into the source code and observed

[TRINIDAD] Is blocking attribute working on commandButton ?

2010-05-17 Thread Jakub Kahovec
Hello, I'm using Trinidad 1.2.13 and I've been trying to make blocking attribute working on commandButton tag but it doesn't seem to be doing anything. I've searched through the mailing list but haven't found a clear answer for that. Then I went into the source code and observed

Re: [Trinidad] Regarding PartialTriggers attribute

2010-04-13 Thread Stephen Connolly
On 12 February 2010 14:54, preeti agarwal preetiagarwa...@gmail.com wrote: Hi For our Application we wanted to raise partialTriggers based on three components. Accidentally till now we were using commas to separate them and it worked fine. tr:panelGroupLayout id=panelGroup#{count}

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-22 Thread Helmut Swaczinna
The value of tc:attribute is *relative* to the enclosing naming container (page or subview). So value=panel (or box) should be correct. When you want to use an absolute id, you must preceed the concatenated id with an extra colon, e.g. :page:panel. When you see the value changing in the model,

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-20 Thread Udo Schnurpfeil
You may have a type problem. Maybe the itemValue allows only Strings. When you don't set immediate=true you will see an error in that case. You can also use tc:selectItems with a class model. With that integer value should work. The value for tc:attribute is the clientId of the component: This

[TOBAGO] SelectOneChoice and Rendered attribute

2010-03-19 Thread fernando
Hello, Here I am with another newbie question (I guess I'll start a blog devoted for Tobago learning). I have the following problem: I have a SelectOneChoice with specific values. When I change this value, I want to make a few fields from the form to appear or disappear... I tried:

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-19 Thread Helmut Swaczinna
Hi Fernando, add a command tag to the selectOneChoice and enclose the selectOneChoice and date within a panel: tc:panel id=panel tx:selectOneChoice ... f:facet name=change tc:command tc:attribute name=renderedPartially

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-19 Thread fernando
Helmut, Can I do it with the tc:box they are inside? Regards, Fernando Augusto Hi Fernando, add a command tag to the selectOneChoice and enclose the selectOneChoice and date within a panel: tc:panel id=panel tx:selectOneChoice ... f:facet name=change

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-19 Thread Helmut Swaczinna
I think, yes, this should work too. Helmut Am 19.03.2010 15:58, schrieb ferna...@osmanager.com.br: Helmut, Can I do it with the tc:box they are inside? Regards, Fernando Augusto Hi Fernando, add a command tag to the selectOneChoice and enclose the selectOneChoice and date within a panel:

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-19 Thread Fernando Augusto
Hello, I´ve seen that the AJAX part works and the value changes, but the tx:date keeps hidden even with the right value... Any other newbie mistake in the code? Regards, Fernando Augusto Helmut Swaczinna escreveu: I think, yes, this should work too. Helmut Am 19.03.2010 15:58, schrieb

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-19 Thread Fernando Augusto
Well... Getting deeper in the problem, I've seen that the problem is in the ajax return, for it does not change the content of the box (or panel). I guess it is something related with the value passed as tc:attribute value. I've seen in a few tutorials and codes around, that addressing

[Trinidad] Regarding PartialTriggers attribute

2010-02-12 Thread preeti agarwal
Hi For our Application we wanted to raise partialTriggers based on three components. Accidentally till now we were using commas to separate them and it worked fine. tr:panelGroupLayout id=panelGroup#{count} partialTriggers=link#{count},h_anchors#{count},expandAll We use : Trinidad

Re: [Trinidad] Regarding PartialTriggers attribute

2010-02-12 Thread Andrew Robinson
You cannot mix strings an EL in partialTriggers, the JSP tag will not allow it (I know, not cool). You have to either use a space-separated string or EL that points to a string array. There are no other options. I would suggest filing a JIRA ticket to fix this and then use an EL function to

[Trinidad] commandButton doesn't fire (missing onclick attribute)

2010-01-09 Thread schneidc
a similar problem a few days ago and there I forgot to add the RessourceServlet. Well this time I didn't forget about that, as the JS libraries are there, but for some reason when I had a look at the generated HTML, none of the buttons has an onclick attribute. Ok this is the reason why it doesn't

Re: [Trinidad] commandButton doesn't fire (missing onclick attribute)

2010-01-09 Thread Michael Kurz
a look at the generated HTML, none of the buttons has an onclick attribute. Ok this is the reason why it doesn't fire, but how to come that the attribute is missing? Thanks Simon

Re: [Trinidad] commandButton doesn't fire (missing onclick attribute)

2010-01-09 Thread schneidc
-%28missing-onclick-attribute%29-tp27086633p27087689.html Sent from the MyFaces - Users mailing list archive at Nabble.com.

'action' attribute of Tomahawk schedule is not working properly.

2009-12-08 Thread Nishtha
appointment edit page, it's link(action attribute) stops working. Web.xml has the below settings : [ filter filter-nameMyFacesExtensionsFilter/filter-name filter-classorg.apache.myfaces.webapp.filter.ExtensionsFilter/filter-class init-param param

Why is t:checkbox ignoring my id attribute?

2009-11-18 Thread laredotornado
does not use the id attribute from the checkbox, instead, generating ... input id=tourSelection:0 type=checkbox name=tourSelection value=domeTour onclick=toggleTourView(this); / What am I doing wrong? - Dave -- View this message in context: http://old.nabble.com/Why-is-t%3Acheckbox-ignoring-my

t:inputCalendar not working with attribute renderAsPopup=true

2009-11-16 Thread laredotornado
Hi, I'm using Tomahawk 1.1.9 with JBoss 5.1 (Java 1.6) on a Mac 10.5.6. If I try and output a t:inputCalendar element with the attribute 'renderAsPopup=true', like below ... t:inputCalendar id=domeTourPref3 size=14

tr:column width may not be used, when headerText attribute is not there.

2009-09-03 Thread IKiris
. When headerText attribute of tr:column in a tr:table is not there, depending on the values of contents under the columns the width can be ignored and it can be split equally, or some other way depending on the data's length. Solution: Have headerText attribute

Re: t:selectManyMenu does not have size attribute

2009-08-28 Thread Joe ONeil
use the style attribute i.e.select multiple=multiple size=1 class=aaa style=width:150px I use this alot on unfilled dynamic list boxes and dropdowns Dave-53 wrote:  t:selectManyMenu does not have size attribute, and it is set to 1   select  multiple=multiple size=1 class=aaa   Thanks

t:selectManyMenu does not have size attribute

2009-08-27 Thread Dave
 t:selectManyMenu does not have size attribute, and it is set to 1   select  multiple=multiple size=1 class=aaa   Thanks, Dave

Re: Table's data not displayed upon setting binding attribute with tr:table

2009-08-02 Thread ganilb
Spring, Seam or Orchestra, then value is the best option. It allows you to save page state between request without much effort. -- View this message in context: http://www.nabble.com/Table%27s-data-not-displayed-upon-setting-%22binding%22-attribute-with-tr%3Atable-tp24700023p24779514.html Sent

Re: Table's data not displayed upon setting binding attribute with tr:table

2009-07-31 Thread Richard Yee
Are you initializing your _table attribute in your managed bean to a new CoreTable() when the managed bean is constructed? I use tr:table a lot and haven't had the problem you describe. I also checked and I do have both value and binding attributes set so you are correct in your previous email

rendered attribute gives exception

2009-06-24 Thread rachel321
We have upgraded to Myfaces 1.2.7 and now am getting an EL exception for the commandLink rendered attribute when the value is a function. Am I missing an additional change or do i need to configure an additional resolver? This worked fine in MyFaces 1.1 - javax.el.ELException - /WEB-INF

MyFaces 1.2.6 immediate attribute on command button - required validation

2009-06-22 Thread Karma Yogi
All, I have been using the immediate attribute on all my cancel command buttons since MyFaces 1.1 and have had no issues with its usage. I am attempting to upgrade to Myfaces 1.2.6 and suddenly all my cancel command buttons do not work as intended. This is the behavior that I notice. 1) All

Re: MyFaces 1.2.6 immediate attribute on command button - required validation

2009-06-22 Thread Gerhard Petracek
://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2009/6/22 Karma Yogi karmayog...@gmail.com All, I have been using the immediate attribute on all my cancel command buttons since MyFaces 1.1 and have had

Re: MyFaces 1.2.6 immediate attribute on command button - required validation

2009-06-22 Thread Karma Yogi
Thanks for your response Gerhard. I too tested this with a plain and simple page and after some tests, this is what I have been able to conclude. The immediate attribute stops working when 1) A EL based JSP include page is used within a facet of a component. I have a custom built tabbed pane

Re: MyFaces 1.2.6 immediate attribute on command button - required validation

2009-06-22 Thread Gerhard Petracek
Thanks for your response Gerhard. I too tested this with a plain and simple page and after some tests, this is what I have been able to conclude. The immediate attribute stops working when 1) A EL based JSP include page is used within a facet of a component. I have a custom built tabbed

trinidad: can name attribute be removed for mobile?

2009-06-15 Thread Dave
To reduce http response size, can all components' name attributes be removed since they are the same as id attributes. In our app, since many levels of subview and table/iterators, id/name can be very long, over 100 characters.   Removing name attributes can reduce response size by 20%.   Thanks

jsf component id/name are the same, remove name attribute?

2009-06-14 Thread Dave
For jsf, the generated id/name for a component are the same. for example,   div id=panelLayout:menuNavigation:table1:0:nodeLabel name=panelLayout:menuNavigation:table1:0:nodeLabel   ... /div   it is too long, especially for mobile devices. Is it ok to remove name attribute? it would reduce

help whit org.xml.sax.SAXParseException: Attribute id was already specified for element t:selectBooleanCheckbox.

2009-05-20 Thread alvaro tovar
/core; prefix=c% this error appear org.xml.sax.SAXParseException: Attribute id was already specified for element t:selectBooleanCheckbox. thanks

Re: help whit org.xml.sax.SAXParseException: Attribute id was already specified for element t:selectBooleanCheckbox.

2009-05-20 Thread alvaro tovar
) h:outputText value=#{item.ownerName}/ but when i include %...@taglib uri=http://java.sun.com/jsp/jstl/core; prefix=c% this error appear org.xml.sax.SAXParseException: Attribute id was already specified for element t:selectBooleanCheckbox. thanks

[Tobago] How to use markup-attribute on columns

2009-03-24 Thread Roland Asmann
Hi all, I'm trying to get the markup-attribute on the column to work, but it keeps on ignoring everything I do... Could someone please give me some pointers? I currently have the following in my JSP: tc:column markup=hierarchiebezeichner2 label= align=left I'm using a seperate JAR

Re: [Tobago] How to use markup-attribute on columns

2009-03-24 Thread Volker Weber
the markup-attribute on the column to work, but it keeps on ignoring everything I do... Could someone please give me some pointers? I currently have the following in my JSP: tc:column markup=hierarchiebezeichner2 label= align=left I'm using a seperate JAR with the theme, so I have defined

Re: [Tobago] How to use markup-attribute on columns

2009-03-24 Thread Roland Asmann
-attribute on the column to work, but it keeps on ignoring everything I do... Could someone please give me some pointers? I currently have the following in my JSP: tc:column markup=hierarchiebezeichner2 label= align=left I'm using a seperate JAR with the theme, so I have defined

Re: [Tobago] How to use markup-attribute on columns

2009-03-24 Thread Roland Asmann
? hierarchiebezeichner2 vs hierarchie_bezeichner_2 markup on column should work on 1.0.12 afaik. Regards, Volker 2009/3/24 Roland Asmann roland.asm...@cfc.at: Hi all, I'm trying to get the markup-attribute on the column to work, but it keeps on ignoring everything I do... Could

Re: tomahawk 1.1.8 tabChangeLisener attribute in tabbedPane lost

2009-02-12 Thread Leonardo Uribe
wrote: Hi, sorry, I can not speak english.. I migrating from tomahawk 1.1.6 to 1.1.8 and see, that the tabChangeListener attribute is lost after a save / restore. What I'm doing wrong. Are there changes in the configuration of tomahawk (web.xml)? Thanks for a help Torsten

tomahawk 1.1.8 tabChangeLisener attribute in tabbedPane lost

2009-02-11 Thread Dipl.-Ing. Torsten Liermann
Hi, sorry, I can not speak english.. I migrating from tomahawk 1.1.6 to 1.1.8 and see, that the tabChangeListener attribute is lost after a save / restore. What I'm doing wrong. Are there changes in the configuration of tomahawk (web.xml)? Thanks for a help Torsten

RE: escape attribute does not work with output Label

2009-01-09 Thread j haley
I am using Tomahawk for JSF 1.2. I just double checked and my jar is called tomahawk12-1.1.8.jar. In addition, My code assist that triggers off of the tld file shows me that the escape attribute is available. I'm assuming that this is a bug. In addition, I have the same problem

[Trinidad] CoreCommandNavigationItem.setIcon() and image ALT attribute

2009-01-08 Thread Jean-Paul DZISIAK
a ALT=' ' attribute to the IMG associated with this icon. How can I achieve this ? Do I have to subclass the renderer and how to do it ? Help would be very appreciated ! Jean-Paul,

escape attribute does not work with output Label

2009-01-08 Thread j haley
Escape attribute with output Label does not work. If I use this same label with outputText, it works fine. Any ideas? Labell.req3rdParty=Requires 3suprd/sup Party Does not renders super script properly - Renders the same if escape is true or falseh:outputLabel for=requires3rdPartya escape

[Trinidad] CoreCommandNavigationItem.setIcon() and image ALT attribute

2009-01-08 Thread Jean-Paul DZISIAK
a ALT=' ' attribute to the IMG associated with this icon. How can I achieve this ? Do I have to subclass the renderer and how to do it ? Help would be very appreciated ! Jean-Paul,

Re: escape attribute does not work with output Label

2009-01-08 Thread Richard Yee
What version of Tomahawk are you using? From the tag documentation, http://myfaces.apache.org/tomahawk-project/tomahawk/tagdoc/t_outputLabel.html, there is no 'escape' attribute for the tag. It looks like you should file an enhancement request in Jira. -R On Thu, Jan 8, 2009 at 5:39 AM, j haley

RE: escape attribute does not work with output Label

2009-01-08 Thread j haley
I'm using MyFaces 1.2.5 and Tomahawk 1.1.8. I'm a little confused with the link you sent. From that, I see that outputLabel does not support the escape attribute, but the following MyFaces and Tomahawk docs says that it does. http://myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc

Re: escape attribute does not work with output Label

2009-01-08 Thread Richard Yee
That explains it. You are using the Tomahawk 1.1.8 version for JSF 1.1 and you are looking at the tag documentation for the JSF 1.2 version. There is a feature difference between the JSF1.1 and JSF1.2 versions. The escape attribute is not present in Tomahawk JSF 1.1. I'd suggest that you

Re: JSF1.2 user-defined components how to extendx parent's attribute

2008-11-27 Thread Leonardo Uribe
because the javax.faces.el Deprecated. when I completed that I find my user-defined component's attribute where extends from parent component like id can not use. I must rewrite a id attribute in my Tag class,like this: public myComponentTag extends UIComponentELTag { private ValueExpression

JSF1.2 user-defined components how to extendx parent's attribute

2008-11-26 Thread bengan
user-defined component's attribute where extends from parent component like id can not use. I must rewrite a id attribute in my Tag class,like this: public myComponentTag extends UIComponentELTag { private ValueExpression id = null; public void setId(ValueExpression id){ super.setId

update tomahawk-1.1.3 to tomahawk-1.1.7 - ERROR- Attribute rendered invalid for tag navigationMenuItem according to TLD

2008-11-10 Thread Mali123
Hi I've upgrade to tomahawk1.1.3 to tomahawk-1.1.7, im getting the following error when, Attribute rendered invalid for tag navigationMenuItem according to TLD it's saying TLD issue,so i extract the tomahawk-1.1.7 jar and locate the tomahaw.tld in META-INF folder,i found

Re: [TRINIDAD] autoSubmit attribute in selectBooleanCheckbox

2008-10-18 Thread Andrew Robinson
Yes, any event broadcast by a component that has a partialTriggers attribute should run the PPR code. On Thu, Oct 16, 2008 at 9:00 PM, Amaris Nieves [EMAIL PROTECTED] wrote: In the documentation of PPR it mentions that partialTriggers will be fired with ValueChangeEvent. Then if I have

[TRINIDAD] autoSubmit attribute in selectBooleanCheckbox

2008-10-16 Thread Amaris Nieves
In the documentation of PPR it mentions that partialTriggers will be fired with ValueChangeEvent. Then if I have a *tr:selectBooleanCheckbox id=check* with the autoSubmit attribute set to true and I have a partialTrigger on an inputText equal to check (*tr:inputText partialTrigger=check*) isn't

Immediate attribute in PanelChoice?

2008-09-18 Thread awirjadi
, and I intend it as it is), thus forbidding the panelChoice to show the selected showDetailItem (until some values are typed in the inputBox). Is there anyway we can force the panelChoice to bypass the inputText validation? I know that panelChoice has no immediate attribute. I tried to set

Re: [Trinidad] How to add a new attribute to tr:table tag

2008-09-17 Thread Max Starets
This question belongs to the user list. Original Message Subject: Re: [Trinidad] How to add a new attribute to tag Date: Wed, 17 Sep 2008 09:46:16 -0400 From: Max Starets [EMAIL PROTECTED

Blocking attribute on commandButton and commandLink

2008-07-31 Thread Dhaliwal, Balvindar
Hello, To follow-up on TRINIDAD-1157 (Blocking attribute of commandButton does not work), is there any update available? When the commandButton is clicked, I would expect subsequent clicks to be synchronised (ie wait until previous requests have completed). This is not happening and I am geeting

[Trinidad] commandNavigationItem with useWindow attribute set to true does not open new window?

2008-07-29 Thread Richard Yee
Hi, I'm using a tr:commandNavigationItem inside a nodeStamp facet of a tr:navigationPane. When I set the useWindow attribute to true, a new window is not opening up and the view is displayed in the existing window as expected. I am using the following libraries: Trinidad 1.0.6 MyFaces 1.1.5 I

Re: [Trinidad] commandNavigationItem with useWindow attribute set to true does not open new window?

2008-07-29 Thread Richard Yee
Correction, The Trinidad version that I am using is 1.0.5 Thanks, Richard On 7/29/08, Richard Yee [EMAIL PROTECTED] wrote: Hi, I'm using a tr:commandNavigationItem inside a nodeStamp facet of a tr:navigationPane. When I set the useWindow attribute to true, a new window is not opening up

non-serializable attribute

2008-07-28 Thread murthy gandikota
On Windows XP I get the exception   org.apache.jasper.JasperException: setAttribute: Non-serializable attribute.   The same exception is not throws on Linux.   I am using the following jars:   myfaces-1.1.jar myfaces-all-1.1.jar myfaces-components-1.1.jar myfaces-impl-1.1.5.jar myfaces-jsf-api-1.1

Re: non-serializable attribute

2008-07-28 Thread murthy gandikota
Found the solution.   There was a distributable/ tag in the web.xml which was causing the problem.   I wonder why it didn't matter on linux.   Thanks Murthy --- On Mon, 7/28/08, murthy gandikota [EMAIL PROTECTED] wrote: From: murthy gandikota [EMAIL PROTECTED] Subject: non-serializable attribute

t:panelTab onclick attribute doesn’t seem to work

2008-07-27 Thread mahendan
Hi All, I am using tomahawak 1.1.6 with facelets and I am trying to call a custom javascript function when the user clicks on tab2. This is what i got: script type=text/javascript !-- function hello() { alert(Hello); } -- /script

[Trinidad] question about the binding attribute when a parent copmonent is setting rendered to false

2008-07-22 Thread Justin mcKay
I have a question about the binding attribute when a parent copmonent is setting rendered to false. Say I have a panelGroupLayout tag that has the rendered attribute set to false. Then a child to that panelGroupLayout is an inputText tag that has the attribute binding set to a backing bean

Re: [Trinidad] question about the binding attribute when a parent copmonent is setting rendered to false

2008-07-22 Thread Andrew Robinson
the component 2b) set the binding expression using the component (you setter called here) -Andrew On Tue, Jul 22, 2008 at 4:43 PM, Justin mcKay [EMAIL PROTECTED] wrote: I have a question about the binding attribute when a parent copmonent is setting rendered to false. Say I have

escape attribute inside the selectItem component is not evaluated

2008-07-14 Thread [EMAIL PROTECTED]
value of the selectItem and the HtmlRenderUtils.renderLabel method has not a parameter for the escape attribute. Same problem is by using the t:selectOneRadio ... component. To fix the problem i've done this: HtmlRadioRendererBase.renderGroupOrItemRadio() Line ~199 : // label element after

Re: escape attribute inside the selectItem component is not evaluated

2008-07-14 Thread [EMAIL PROTECTED]
for myfaces core 1.1.x, but it is implemented in core 1.2.x Dennis Byrne added this attribute in r415043 with the message added ... for binary compatibility with the RI. So it would appear to be a case where Sun's implementation was not compliant with the specification (how the hell did

Re: escape attribute inside the selectItem component is not evaluated

2008-07-14 Thread [EMAIL PROTECTED]
added this attribute in r415043 with the message added ... for binary compatibility with the RI. So it would appear to be a case where Sun's implementation was not compliant with the specification (how the hell did it ever pass the TCK with an extra method in the API?!), and myfaces

Re: escape attribute inside the selectItem component is not evaluated

2008-07-14 Thread Ryan Lubke
And there is no escape property documented for SelectItem here: http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/index.html I'll see what can be done about correcting the javadocs there. Dennis Byrne added this attribute in r415043 with the message added ... for binary

Re: escape attribute inside the selectItem component is not evaluated

2008-07-14 Thread Ryan Lubke
documented for SelectItem here: http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/index.html I'll see what can be done about correcting the javadocs there. Dennis Byrne added this attribute in r415043 with the message added ... for binary compatibility with the RI. So it would appear

[Trinidad] Label is empty for required attribute?

2008-06-16 Thread Christian Beutenmueller
realised, that the label Attribute in the _attribute Map of the Component instance is set to and not null, and therefore the UIXEditable._getLabel() returns the value. Versions: Trinidad 1.0.8, Facelets 1.1.14, MyFaces 1.1.5, Java 5, Tomcat 5.5.25 Any Ideas? Should I file a bug report? greets

How to format text in the title attribute of t:outputText?

2008-05-15 Thread Paul Spencer
I am including a Double in the title of t:outputText. The problem the default formating is undesired. The tag: t:outputText value=#{tripSummary.columnValue.idleSeconds.sum} title=Mean idle time is #{tripSummary.columnValue.idleSeconds.mean} minutes f:convertNumber

RE: How to format text in the title attribute of t:outputText?

2008-05-15 Thread Stephen Friedrich
Create a getter in the backing bean that does the formatting (using java.text.DecimalFormat)? If you don't want to change the backing bean, then create an EL function that does the formatting. I am including a Double in the title of t:outputText. The problem the default formating is

  1   2   3   4   5   6   >