[jira] Commented: (MYFACES-370) inputCalendar - popup - styles and other properties - problem

2005-09-08 Thread JIRA
[ 
http://issues.apache.org/jira/browse/MYFACES-370?page=comments#action_12322918 
] 

Tomáš Havelka commented on MYFACES-370:
---

Hi,

I found this problem too.  I went through all imlpemented classes of this 
component and found out where the problem is. HtmlCalendarRenderer renders all 
correctly but problem is that JavaScript popcalendar.js is added to page header 
and other custom calendar properties are render right on the place where 
calendar component is rendered. What I want to tell is that popcalendar.js 
script includes method jscalendarInit() which is called right in page header 
but additional attributes are rendered later.

Tom

> inputCalendar - popup - styles and other properties - problem
> -
>
>  Key: MYFACES-370
>  URL: http://issues.apache.org/jira/browse/MYFACES-370
>  Project: MyFaces
> Type: Bug
>   Components: Tomahawk
> Reporter: Balaji Kalyansundaram
> Assignee: Martin Marinschek

>
> Hi
> In popup inputCalendar, I was able to change the popupDateFormat but other 
> properties like "...class", "popupTodayString", ... does not get set by the 
> passed values. I can only see the default styles and text in the pop-up. But 
> these properties can be changed in the in-line(normal) calendar.
> I browsed through the mailing list for users and developers, but could not 
> find anyone reporting this.
> Has anyone faced this problem???
> I want to confirm if there is a solution for this, before submitting it as a 
> BUG. 
> Thanks
> Balaji

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-370) inputCalendar - popup - styles and other properties - problem

2005-09-19 Thread Tomas Havelka (JIRA)
[ 
http://issues.apache.org/jira/browse/MYFACES-370?page=comments#action_12329817 
] 

Tomas Havelka commented on MYFACES-370:
---

Hi,

it's still doesn't work form me. I have my own HtmlCalendarRenderer instead 
which fix this problem.
Please report what changed in version of myfaces 1.1.0 that should fix the 
problem described above.

Thx a lot

Tom

> inputCalendar - popup - styles and other properties - problem
> -
>
>  Key: MYFACES-370
>  URL: http://issues.apache.org/jira/browse/MYFACES-370
>  Project: MyFaces
> Type: Bug
>   Components: Tomahawk
> Reporter: Balaji Kalyansundaram
> Assignee: Martin Marinschek
>  Fix For: Nightly Build

>
> Hi
> In popup inputCalendar, I was able to change the popupDateFormat but other 
> properties like "...class", "popupTodayString", ... does not get set by the 
> passed values. I can only see the default styles and text in the pop-up. But 
> these properties can be changed in the in-line(normal) calendar.
> I browsed through the mailing list for users and developers, but could not 
> find anyone reporting this.
> Has anyone faced this problem???
> I want to confirm if there is a solution for this, before submitting it as a 
> BUG. 
> Thanks
> Balaji

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-370) inputCalendar - popup - styles and other properties - problem

2005-09-19 Thread Martin Marinschek (JIRA)
[ 
http://issues.apache.org/jira/browse/MYFACES-370?page=comments#action_12329820 
] 

Martin Marinschek commented on MYFACES-370:
---

Don't get me wrong - this isn't fixed in 1.1.0, just in the nightly build or in 
SVN head.

please check again!


regards,

Martin

> inputCalendar - popup - styles and other properties - problem
> -
>
>  Key: MYFACES-370
>  URL: http://issues.apache.org/jira/browse/MYFACES-370
>  Project: MyFaces
> Type: Bug
>   Components: Tomahawk
> Reporter: Balaji Kalyansundaram
> Assignee: Martin Marinschek
>  Fix For: Nightly Build

>
> Hi
> In popup inputCalendar, I was able to change the popupDateFormat but other 
> properties like "...class", "popupTodayString", ... does not get set by the 
> passed values. I can only see the default styles and text in the pop-up. But 
> these properties can be changed in the in-line(normal) calendar.
> I browsed through the mailing list for users and developers, but could not 
> find anyone reporting this.
> Has anyone faced this problem???
> I want to confirm if there is a solution for this, before submitting it as a 
> BUG. 
> Thanks
> Balaji

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-370) inputCalendar - popup - styles and other properties - problem

2005-09-19 Thread Tomas Havelka (JIRA)
[ 
http://issues.apache.org/jira/browse/MYFACES-370?page=comments#action_12329827 
] 

Tomas Havelka commented on MYFACES-370:
---

Sorry of disturbing u again, but in last lately night build is perhaps missing 
some class StringEscapeUtils.

And last suggestion. When popup calendar renders text like "Today is ", 
when date comes from localized month names array 'jscalendarMonthName', so 
javascript goes render something like ... + 
jscalendarMonthName[jscalendarMonthNow].substring(0,3) + ... as the month name, 
but it works just in non diacritic languages such as english, but when some 
other non-english character apperas in month name it goes wrong output because 
of character replacing by its appropriate entity (for example á for 
character á from czech language) and js substring function.

With regards 
Tom

> inputCalendar - popup - styles and other properties - problem
> -
>
>  Key: MYFACES-370
>  URL: http://issues.apache.org/jira/browse/MYFACES-370
>  Project: MyFaces
> Type: Bug
>   Components: Tomahawk
> Reporter: Balaji Kalyansundaram
> Assignee: Martin Marinschek
>  Fix For: Nightly Build

>
> Hi
> In popup inputCalendar, I was able to change the popupDateFormat but other 
> properties like "...class", "popupTodayString", ... does not get set by the 
> passed values. I can only see the default styles and text in the pop-up. But 
> these properties can be changed in the in-line(normal) calendar.
> I browsed through the mailing list for users and developers, but could not 
> find anyone reporting this.
> Has anyone faced this problem???
> I want to confirm if there is a solution for this, before submitting it as a 
> BUG. 
> Thanks
> Balaji

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-370) inputCalendar - popup - styles and other properties - problem

2005-09-20 Thread Martin Marinschek (JIRA)
[ 
http://issues.apache.org/jira/browse/MYFACES-370?page=comments#action_12329977 
] 

Martin Marinschek commented on MYFACES-370:
---

I think the problem with StringEscapeUtils should already be fixed.

Can you open the last problem as a new issue?

I am not quite sure how we will handle this correctly, have you got any idea?

regards,

Martin

> inputCalendar - popup - styles and other properties - problem
> -
>
>  Key: MYFACES-370
>  URL: http://issues.apache.org/jira/browse/MYFACES-370
>  Project: MyFaces
> Type: Bug
>   Components: Tomahawk
> Reporter: Balaji Kalyansundaram
> Assignee: Martin Marinschek
>  Fix For: Nightly Build

>
> Hi
> In popup inputCalendar, I was able to change the popupDateFormat but other 
> properties like "...class", "popupTodayString", ... does not get set by the 
> passed values. I can only see the default styles and text in the pop-up. But 
> these properties can be changed in the in-line(normal) calendar.
> I browsed through the mailing list for users and developers, but could not 
> find anyone reporting this.
> Has anyone faced this problem???
> I want to confirm if there is a solution for this, before submitting it as a 
> BUG. 
> Thanks
> Balaji

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira