[ 
https://issues.apache.org/jira/browse/TOMAHAWK-1515?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12894411#action_12894411
 ] 

Leonardo Uribe commented on TOMAHAWK-1515:
------------------------------------------

Hi Oliver

Checking again it is not related to MYFACES-2840. It seems to be a problem 
related to the params sended by the javascript part on ajax request, that when 
it is parsed by tomcat show this warning.

I tried some demos for ajax part (only jsf 2.0) and the request params are 
correct. To see what was sent use firebug. I'll try it to see what happen.

regards,

Leonardo

> f:ajax event not triggered inside t:calendar
> --------------------------------------------
>
>                 Key: TOMAHAWK-1515
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1515
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: Calendar, JSF2
>    Affects Versions: 1.1.10-SNAPSHOT
>         Environment: Win XP, JDK 1.6.0.20, Tomcat 6.0.24, MyFaces 2.0.1 - 
> Snapshots (api + impl), Tomahawk20-1.1.10 Snapshot
>            Reporter: Oliver Bayer
>            Assignee: Leonardo Uribe
>             Fix For: 1.1.10-SNAPSHOT
>
>
> I've modified the tomahawk 2.0 example so that I have a birthday input field 
> (t:calendar) and an age input field (t:inputText). If someone puts in a 
> birthday date the ajax event should be triggered and calculate the age.
> If I use a calendar the ajax event isn't working whereas with a simple 
> inputText it's working (see code snippets below).
> Not working example with t:calendar:
> <t:inputCalendar id="birthday" 
>                       monthYearRowClass="yearMonthHeader" 
>                       weekRowClass="weekHeader" 
>                       popupButtonStyleClass="standard_bold"
>                       currentDayCellClass="currentDayCell" 
>                       value="#{testBean.birthday}" 
>                       renderAsPopup="true"
>                       
> popupTodayString="#{example_messages['popup_today_string']}"
>                       popupDateFormat="dd.MM.yyyy" 
>                       
> popupWeekString="#{example_messages['popup_week_string']}"
>                       forceId="true">
>               <f:ajax event="valueChange" render="age"/>
> </t:inputCalendar>
> <t:inputText id="age" 
>               value="#{testBean.age}" 
>               title="Age" 
> />
> Working example with t:inputText:
> <t:inputText id="birthday" 
>               value="#{testBean.birthday}" 
>               title="#{lbl.edit_data_title_personal_birthday}">
>       <f:ajax event="valueChange" render="age"/>
> </t:inputText>
> <t:inputText id="age" 
>               value="#{testBean.age}" 
>               title="Age" 
> />
> Is this a bug or am I misunderstanding the f:ajax use case?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to