[jira] Commented: (TOBAGO-337) field value can't be setted or cleared if state changes from enabled to disabeld

2007-04-01 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12485775
 ] 

Guido Dubois commented on TOBAGO-337:
-

I have allready attached sample code - disabled.war - by creation of this 
issue...

 field value can't be setted or cleared if state changes from enabled to 
 disabeld
 

 Key: TOBAGO-337
 URL: https://issues.apache.org/jira/browse/TOBAGO-337
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.6 snap 
 (23.03.2007), tobago 1.0.11 snap (17.03.2007)
Reporter: Guido Dubois
 Fix For: 1.0.11

 Attachments: disabled.war


 if field state changes from enabled to disabled it is not possible to set or 
 clear the fields content

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



[jira] Reopened: (TOBAGO-337) field value can't be setted or cleared if state changes from enabled to disabeld

2007-03-31 Thread Guido Dubois (JIRA)

 [ 
https://issues.apache.org/jira/browse/TOBAGO-337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Guido Dubois reopened TOBAGO-337:
-


I think it is a bug...

Have a look at field date2. It is disabled and never changes the state. For 
this field it works correct, the field will be setted and cleared every time.

Change the value of field1 that its value never goes over 100,00. You see that 
the state of field4 and date1 doesn't change and they will be cleared and 
setted every time.

Now change the value of field1 that its value is allways over 100,00. For this 
case it works fine too. field4 and date1 are cleared and setted...

But if you enter:
- field1 = 110,00 :: the fields are setted and enabled
- field2 = 220,20 :: the fields are cleared
- field1 = 10,00 :: field4 and date are not setted and disabled, date2 is setted
- field1 = 110,00 ::  the fields are setted and enabled
- field2 = 20,20 :: the fields are cleared
- field1 = 120,00 ::  the fields are setted and still enabled

What I want to show, is that if the state changes from enable to disable, it 
works not correct. The field contents are not cleared or setted. In the case 
the state doesn't change, it works fine. So I think there is something wrong...

If I understand it correctly, the bean f:facet name=change is executed 
after the model is updated. If I change a model value in the according bean, 
this value has to be renderd. Or not...?




 field value can't be setted or cleared if state changes from enabled to 
 disabeld
 

 Key: TOBAGO-337
 URL: https://issues.apache.org/jira/browse/TOBAGO-337
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.6 snap 
 (23.03.2007), tobago 1.0.11 snap (17.03.2007)
Reporter: Guido Dubois
 Fix For: 1.0.11

 Attachments: disabled.war


 if field state changes from enabled to disabled it is not possible to set or 
 clear the fields content

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



[jira] Commented: (TOBAGO-335) f:convertNumber type=number and Double object in backing bean

2007-03-25 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483914
 ] 

Guido Dubois commented on TOBAGO-335:
-

correction:

public void setF1(Number f1) {
  this.f1double = null;
  if (f1 != null) {
this.f1double = f1.doubleValue();
  }
}

This doesn't works for empty fields.

Component: page:_idJsp30 
Severity : Error
Summary  : Exception setting property f3 of base with class 
de.ibs.bbg.SessionController, Bean: de.ibs.bbg.SessionController, property: f3, 
newValue:  null ,newValue class:  null  method parameter class: double, null 


 f:convertNumber type=number and Double object in backing bean
 -

 Key: TOBAGO-335
 URL: https://issues.apache.org/jira/browse/TOBAGO-335
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
Reporter: Guido Dubois

 If you need to clear an input field, the easiest way is to use an object type 
 like String, Date or Double. So you can set it simply to null and the field 
 will be cleared. But in case of Double there will be a problem with 
 f:convertNumber.
 In RI there is the same problem. See issue 
 https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=286 for more 
 details.
 This workaround helps:
 tx:in value=#{bbg.f3} label=field3 labelWidth=120px
   f:convertNumber type=number maxFractionDigits=2 pattern=#,##0.00 /
 /tx:in
 ...
 private Number f1;
 private Double f1double;
 ...  
 public Number getF1() {
   return f1double;
 }
 public void setF1(Number f1) {
   this.f1double = f1.doubleValue();
 }

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



[jira] Created: (TOBAGO-337) field value can't be setted or cleared if state changes from enabled to disabeld

2007-03-25 Thread Guido Dubois (JIRA)
field value can't be setted or cleared if state changes from enabled to disabeld


 Key: TOBAGO-337
 URL: https://issues.apache.org/jira/browse/TOBAGO-337
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.6 snap 
(23.03.2007), tobago 1.0.11 snap (17.03.2007)
Reporter: Guido Dubois


if field state changes from enabled to disabled it is not possible to set or 
clear the fields content

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



[jira] Created: (TOBAGO-335) f:convertNumber type=number and Double object in backing bean

2007-03-24 Thread Guido Dubois (JIRA)
f:convertNumber type=number and Double object in backing bean
-

 Key: TOBAGO-335
 URL: https://issues.apache.org/jira/browse/TOBAGO-335
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
Reporter: Guido Dubois


If you need to clear an input field, the easiest way is to use an object type 
like String, Date or Double. So you can set it simply to null and the field 
will be cleared. But in case of Double there will be a problem with 
f:convertNumber.

In RI there is the same problem. See issue 
https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=286 for more 
details.

This workaround helps:

tx:in value=#{bbg.f3} label=field3 labelWidth=120px
  f:convertNumber type=number maxFractionDigits=2 pattern=#,##0.00 /
/tx:in

...
private Number f1;
private Double f1double;
...  

public Number getF1() {
  return f1double;
}

public void setF1(Number f1) {
  this.f1double = f1.doubleValue();
}


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



[jira] Commented: (TOBAGO-335) f:convertNumber type=number and Double object in backing bean

2007-03-24 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483836
 ] 

Guido Dubois commented on TOBAGO-335:
-

annotation: If the input field is disabled, there is no problem with Double

 f:convertNumber type=number and Double object in backing bean
 -

 Key: TOBAGO-335
 URL: https://issues.apache.org/jira/browse/TOBAGO-335
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
Reporter: Guido Dubois

 If you need to clear an input field, the easiest way is to use an object type 
 like String, Date or Double. So you can set it simply to null and the field 
 will be cleared. But in case of Double there will be a problem with 
 f:convertNumber.
 In RI there is the same problem. See issue 
 https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=286 for more 
 details.
 This workaround helps:
 tx:in value=#{bbg.f3} label=field3 labelWidth=120px
   f:convertNumber type=number maxFractionDigits=2 pattern=#,##0.00 /
 /tx:in
 ...
 private Number f1;
 private Double f1double;
 ...  
 public Number getF1() {
   return f1double;
 }
 public void setF1(Number f1) {
   this.f1double = f1.doubleValue();
 }

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



[jira] Commented: (TOBAGO-335) f:convertNumber type=number and Double object in backing bean

2007-03-24 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483839
 ] 

Guido Dubois commented on TOBAGO-335:
-

If using simple type double, the field is initially preset with 0,00 (assumed 
pattern=#,##0.00) and it seems that you can't clear the field...

 f:convertNumber type=number and Double object in backing bean
 -

 Key: TOBAGO-335
 URL: https://issues.apache.org/jira/browse/TOBAGO-335
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
Reporter: Guido Dubois

 If you need to clear an input field, the easiest way is to use an object type 
 like String, Date or Double. So you can set it simply to null and the field 
 will be cleared. But in case of Double there will be a problem with 
 f:convertNumber.
 In RI there is the same problem. See issue 
 https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=286 for more 
 details.
 This workaround helps:
 tx:in value=#{bbg.f3} label=field3 labelWidth=120px
   f:convertNumber type=number maxFractionDigits=2 pattern=#,##0.00 /
 /tx:in
 ...
 private Number f1;
 private Double f1double;
 ...  
 public Number getF1() {
   return f1double;
 }
 public void setF1(Number f1) {
   this.f1double = f1.doubleValue();
 }

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



[jira] Created: (TOBAGO-329) tx:date ... disabled=true allows opening the datepicker

2007-03-21 Thread Guido Dubois (JIRA)
tx:date ... disabled=true allows opening the datepicker
--

 Key: TOBAGO-329
 URL: https://issues.apache.org/jira/browse/TOBAGO-329
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.10
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.6 snap, tobago 
1.0.11 snap
Reporter: Guido Dubois


It is possible to open the datepicker and modify the disabled field.

like [TOBAGO-209] for readonly...


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



[jira] Commented: (TOBAGO-322) tabs after a rendered=false tab are not accessible if switch type is tabReload

2007-03-20 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482364
 ] 

Guido Dubois commented on TOBAGO-322:
-

After installation of last nightly build (1.0.11) tabs do not work correct. My 
tab arrangement is like this one of the demo app. At the begin the head tab 0 
is shown. I am able to move to the other sub tabs. But you see that the 
oldIndex is allways 0. If I go back, I can move from 2 to 1. But it is 
not possible to move to the tab 0.

I can move to the head tab 1. But there I can't move to any other sub tabs 
and I can't go back to the 0 head tab.

I swiched from attribute state to selectedIndex but I get no change to the 
better.

I will attach a log for this behaviour...


 tabs after a rendered=false tab are not accessible if switch type is tabReload
 --

 Key: TOBAGO-322
 URL: https://issues.apache.org/jira/browse/TOBAGO-322
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Themes
Affects Versions: 1.0.10
Reporter: Bernd Bohmann
 Assigned To: Bernd Bohmann
 Fix For: 1.0.11




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



[jira] Commented: (TOBAGO-322) tabs after a rendered=false tab are not accessible if switch type is tabReload

2007-03-15 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12481349
 ] 

Guido Dubois commented on TOBAGO-322:
-

I tried to find a workaround but I found nothing what can help to solve the 
problem. Have you an idea?

 tabs after a rendered=false tab are not accessible if switch type is tabReload
 --

 Key: TOBAGO-322
 URL: https://issues.apache.org/jira/browse/TOBAGO-322
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Themes
Affects Versions: 1.0.10
Reporter: Bernd Bohmann
 Assigned To: Bernd Bohmann
 Fix For: 1.0.11




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



[jira] Commented: (TOBAGO-322) tabs after a readonly tab are not accessible if switch type is tabReload

2007-03-14 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12480931
 ] 

Guido Dubois commented on TOBAGO-322:
-

:-$

How to get a readonly tab?

 tabs after a readonly tab are not accessible if switch type is tabReload
 

 Key: TOBAGO-322
 URL: https://issues.apache.org/jira/browse/TOBAGO-322
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Themes
Affects Versions: 1.0.10
Reporter: Bernd Bohmann
 Assigned To: Bernd Bohmann
 Fix For: 1.0.11




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



[jira] Created: (TOBAGO-314) tc:button tag with attribute defaultCommand in Firefox

2007-03-09 Thread Guido Dubois (JIRA)
tc:button tag with attribute defaultCommand in Firefox
--

 Key: TOBAGO-314
 URL: https://issues.apache.org/jira/browse/TOBAGO-314
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap (06.02.2007 
04:51), tobago 1.0.10 snap (07.03.2007 5:00), Firefox 2.0.0.2
Reporter: Guido Dubois


In a popup box I use the attribute defaultCommand=true like this:

tc:button id=popupCloseButton label=#{overviewBundle.ok} width=115 
defaultCommand=true

The first time I open the popup box by clicking a button it works fine. Then I 
close the box and wants to open the box again. I only see the progress bar and 
no box will be opened. If I use the refresh button of the browser I get the 
box. Then I close and if  I wants to go to another page I get the same effect - 
progess bar and no page.

In IE it works correct.

Netscape 8.1.2 crashes when changing tabpane (4 panes) - changing from 0 to 1 
and 1 to 0 is ok - changing from 0 to 2 break down

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



[jira] Commented: (TOBAGO-273) Having a tc:command tag for change in tc:in would be useful

2007-03-08 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12479331
 ] 

Guido Dubois commented on TOBAGO-273:
-

Hello Bernd,

it works fine, but I have a site with tabpanes. If I click to another tab the 
change action is executed (the value for the second field is calculated and 
set) but the pane doesn't change. The tabchange event is consumed...

Is it possible to extend the functionality that the tab change anyway?

Another thing:
The page is completly submited for this behaviour. So the page will be reloaded 
every time. That's in some cases with many fields very slow. Is it possible to 
do this with an XMLHttpRequest that only the value for the second field is 
calculated and reloaded?

 Having a tc:command tag for change in tc:in would be useful
 ---

 Key: TOBAGO-273
 URL: https://issues.apache.org/jira/browse/TOBAGO-273
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Core
Affects Versions: 1.0.10
 Environment: All
Reporter: Helmut Swaczinna
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 With a tc:command tag for change in tc:in it would be possible to execute 
 some server side
 action when the user changes the content of a input field.

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



[jira] Commented: (TOBAGO-286) target and tip attributes for tc:menuitem and tc:tree nodes

2007-03-01 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-286?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12476899
 ] 

Guido Dubois commented on TOBAGO-286:
-

That's it! Thanks...

 target and tip attributes for tc:menuitem and tc:tree nodes
 ---

 Key: TOBAGO-286
 URL: https://issues.apache.org/jira/browse/TOBAGO-286
 Project: MyFaces Tobago
  Issue Type: Improvement
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, tobago 1.0.9 - 
 same in tobago 1.0.10 snap (15.02.2007 5:10)
Reporter: Guido Dubois
 Assigned To: Udo Schnurpfeil
 Fix For: 1.0.10


 The tc:menuitem and tc:tree (tree nodes) should support a target  and a 
 tip attribute to open a browser window and show a tooltip

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



[jira] Commented: (TOBAGO-305) Deutsch Umlaut will not be rendered correct for tc:out tag with attribute [escape=false]

2007-02-28 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12476706
 ] 

Guido Dubois commented on TOBAGO-305:
-

Hello Volker,

thanks for your answer. I know that it works without escape=false. But in 
some cases I use #160; for nbsp; or lt;bgt;for boldlt;/bgt; or lt;br 
/gt; for newline. Than I have to use escape=false.


For uuml; I get the following error in eclipse.
The entity uuml was referenced, but not declared. 
bbg_tobagoPRJ/trunk/WebContent/bbg-resource/html/standard/standard/property/overview.properties.xml
 

The properties.xml file is not well formed with this element.  In the browser 
the character is not rendered.


 Deutsch Umlaut will not be rendered correct for tc:out tag with attribute 
 [escape=false]
 

 Key: TOBAGO-305
 URL: https://issues.apache.org/jira/browse/TOBAGO-305
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap 
 (06.02.2007 04:51), tobago 1.0.10 snap (26.02.2007 5:00)
Reporter: Guido Dubois

 The deutsch Umlaut will not be rendered correct.
 tc:out value=#{overviewBundle.text}
 escape=false /
 bundle:
   entry key=textBruttobetrag in EUR (abzügl. Sparerfreibetrag und 
 Werbungskosten)/entry
 result looks like this:
 Bruttobetrag in EUR (abz�parerfreibetrag und Werbungskosten)
 uuml; is not possible and #252; has the same effect

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



[jira] Commented: (TOBAGO-273) Having a tc:command tag for change in tc:in would be useful

2007-02-28 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12476709
 ] 

Guido Dubois commented on TOBAGO-273:
-

It works! Thanks. 

The only thing: In one case I want to use this in a popup box. When I change 
the value of the first field, I am able now to update the content of another 
field. But the cursor jumps into the first editable field of the background 
form.

 Having a tc:command tag for change in tc:in would be useful
 ---

 Key: TOBAGO-273
 URL: https://issues.apache.org/jira/browse/TOBAGO-273
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Core
Affects Versions: 1.0.10
 Environment: All
Reporter: Helmut Swaczinna
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 With a tc:command tag for change in tc:in it would be possible to execute 
 some server side
 action when the user changes the content of a input field.

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



[jira] Commented: (TOBAGO-286) target and tip attributes for tc:menuitem and tc:tree nodes

2007-02-28 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-286?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12476789
 ] 

Guido Dubois commented on TOBAGO-286:
-

Hello Udo,

it doesn't work. The PDF doc in the example is opened in the same window. I 
used the nightly build from 28.02.2007 5:**

tc:menuItem immediate=true label=#{overviewBundle.menu_table2}
  link=/pdf/V5300_Tab2_Pauschalkuerzungen.pdf target=_blank /

In the tc:link tag it works correct. The PDF doc is opened in a new window. 
That's what I want...

  tc:link  immediate=true label=#{overviewBundle.menu_table2}
  link=/pdf/V5300_Tab2_Pauschalkuerzungen.pdf target=_blank /


 target and tip attributes for tc:menuitem and tc:tree nodes
 ---

 Key: TOBAGO-286
 URL: https://issues.apache.org/jira/browse/TOBAGO-286
 Project: MyFaces Tobago
  Issue Type: Improvement
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, tobago 1.0.9 - 
 same in tobago 1.0.10 snap (15.02.2007 5:10)
Reporter: Guido Dubois
 Assigned To: Udo Schnurpfeil
 Fix For: 1.0.10


 The tc:menuitem and tc:tree (tree nodes) should support a target  and a 
 tip attribute to open a browser window and show a tooltip

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



[jira] Created: (TOBAGO-305) Deutsch Umlaut will not be rendered correct for tc:out tag with attribute [escape=false]

2007-02-26 Thread Guido Dubois (JIRA)
Deutsch Umlaut will not be rendered correct for tc:out tag with attribute 
[escape=false]


 Key: TOBAGO-305
 URL: https://issues.apache.org/jira/browse/TOBAGO-305
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap (06.02.2007 
04:51), tobago 1.0.10 snap (26.02.2007 5:00)
Reporter: Guido Dubois


The deutsch Umlaut will not be rendered correct.

tc:out value=#{overviewBundle.text}
escape=false /

bundle:
  entry key=textBruttobetrag in EUR (abzügl. Sparerfreibetrag und 
Werbungskosten)/entry

result looks like this:
Bruttobetrag in EUR (abz�parerfreibetrag und Werbungskosten)

uuml; is not possible and #252; has the same effect

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



[jira] Commented: (TOBAGO-273) Having a tc:command tag for change in tc:in would be useful

2007-02-26 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12476015
 ] 

Guido Dubois commented on TOBAGO-273:
-

I tried this with the nightly build from 26.02.2007 5:11. I can't see any 
effect. Is it already included in this build?

Perhaps I made it not right. Could you give a small howto example?

Thanks, Guido

 Having a tc:command tag for change in tc:in would be useful
 ---

 Key: TOBAGO-273
 URL: https://issues.apache.org/jira/browse/TOBAGO-273
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Core
Affects Versions: 1.0.10
 Environment: All
Reporter: Helmut Swaczinna
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 With a tc:command tag for change in tc:in it would be possible to execute 
 some server side
 action when the user changes the content of a input field.

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



[jira] Commented: (TOBAGO-273) Having a tc:command tag for change in tc:in would be useful

2007-02-26 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12476016
 ] 

Guido Dubois commented on TOBAGO-273:
-

One thing more: Is it possible to implement the same behaviour for tx:in tag?

 Having a tc:command tag for change in tc:in would be useful
 ---

 Key: TOBAGO-273
 URL: https://issues.apache.org/jira/browse/TOBAGO-273
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Core
Affects Versions: 1.0.10
 Environment: All
Reporter: Helmut Swaczinna
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 With a tc:command tag for change in tc:in it would be possible to execute 
 some server side
 action when the user changes the content of a input field.

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



[jira] Commented: (TOBAGO-276) Popup - background shading in Mozilla browser - Firefox / Netscape

2007-02-21 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-276?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474666
 ] 

Guido Dubois commented on TOBAGO-276:
-

Yes it works. The only thing I have done, is to set opacity to 0.75 to get 
darker background like Michael's advice

 Popup - background shading in Mozilla browser - Firefox / Netscape
 --

 Key: TOBAGO-276
 URL: https://issues.apache.org/jira/browse/TOBAGO-276
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, firefox 2.0.0.1, netscape 8.1.2, tomcat 
 5.5.20, myfaces 1.1.4, tobago 1.0.9 - same error in tobago 1.0.10 snap 
 (06.02.2007 5:13)
Reporter: Guido Dubois
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 The background shading when opening a popup box like datePicker doesn't work. 
 If loading of the next page takes a moment
 the background lightening works.

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



[jira] Commented: (TOBAGO-287) Error using on rendered attribute in tc:out tag

2007-02-21 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474933
 ] 

Guido Dubois commented on TOBAGO-287:
-

I know that this form works. But why we habe a standard? It's only an advice 
that there is something what's not working like defined in the standard...

 Error using  on rendered attribute in tc:out tag
 --

 Key: TOBAGO-287
 URL: https://issues.apache.org/jira/browse/TOBAGO-287
 Project: MyFaces Tobago
  Issue Type: Bug
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap 
 (06.02.2007 04:51), tobago 1.0.10 snap (16.02.2007 5:11)
Reporter: Guido Dubois

 Get error by using  on rendered attribute in tc:out tag. Using and 
 instead works...
   tc:out value=Fallgruppe :: #{basicController.fallGruppe}
 rendered=#{(navigation.currentPage == 'overview/ekaw')  true} 
 /
 2007-02-16 23:16:44 ERROR - 
 org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/bbg].[jsp]:704
  - Servlet.service() for servlet jsp threw exception
 org.apache.jasper.JasperException: /overview/header.jspx(41,70) The entity 
 name must immediately follow the '' in the entity reference.

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



[jira] Commented: (TOBAGO-269) set attribute rendered from ui:debug tag with initParam in facelets

2007-02-20 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-269?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474382
 ] 

Guido Dubois commented on TOBAGO-269:
-

Hi Volker,

if you are wondering about it, perhaps it is really a facelets problem. 
ui:debug comes with the facelets taglib. I will have a look there and if I 
found nothing about it, I will post there.

Thanks...

 set attribute rendered from ui:debug tag with initParam in facelets
 -

 Key: TOBAGO-269
 URL: https://issues.apache.org/jira/browse/TOBAGO-269
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Facelets
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, facelets 
 1.1.11, tobago 1.0.9 - same error in tobago 1.0.10 snap (05.02.2007 4:59)
Reporter: Guido Dubois

 I want to set the rendered attribute of the ui:debug tag with an initParam 
 from the web.xml file
   context-param
 param-namedebugMode/param-name
 param-valuefalse/param-value
   /context-param
 ---
   ui:debug hotkey=m rendered=#{initParam['debugMode']} /
 This doesn't work. The tag is allways rendered. If I replace the EL 
 expression to false than it is not rendered.
 The tag tc:out escape=false value=...#{initParam['debugMode']}... / 
 reflects ...false So the EL expression is correct and will be found

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



[jira] Created: (TOBAGO-295) gridlayout - components which have rendered attribute false are included in calculation of space

2007-02-20 Thread Guido Dubois (JIRA)
gridlayout - components which have rendered attribute false are included in 
calculation of space


 Key: TOBAGO-295
 URL: https://issues.apache.org/jira/browse/TOBAGO-295
 Project: MyFaces Tobago
  Issue Type: Bug
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap (06.02.2007 
04:51), tobago 1.0.10 snap (16.02.2007 5:11)
Reporter: Guido Dubois


I have to insert a tc:box in some cases into a cell of the grid. In the case 
the box have not to be rendered, the height of the box is included in the 
calculation of vertical space (horizontally I don't know). The box is not 
rendered but you get a not wanted vertical blank space. For tx:in it's the 
same...

I think that components which won't be rendered have not to be included in 
calculation...

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



[jira] Commented: (TOBAGO-295) gridlayout - components which have rendered attribute false are included in calculation of space

2007-02-20 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-295?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474553
 ] 

Guido Dubois commented on TOBAGO-295:
-

Hi Volker,

it's my mistake. I have only defined one row in gridLayout for the alternate 
cells. After I added one row for each cell, even if the cell isn't rendered, it 
works fine...

Thanks for your help!

 gridlayout - components which have rendered attribute false are included 
 in calculation of space
 

 Key: TOBAGO-295
 URL: https://issues.apache.org/jira/browse/TOBAGO-295
 Project: MyFaces Tobago
  Issue Type: Bug
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap 
 (06.02.2007 04:51), tobago 1.0.10 snap (16.02.2007 5:11)
Reporter: Guido Dubois

 I have to insert a tc:box in some cases into a cell of the grid. In the 
 case the box have not to be rendered, the height of the box is included in 
 the calculation of vertical space (horizontally I don't know). The box is not 
 rendered but you get a not wanted vertical blank space. For tx:in it's the 
 same...
 I think that components which won't be rendered have not to be included in 
 calculation...

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



[jira] Commented: (TOBAGO-287) Error using on rendered attribute in tc:out tag

2007-02-20 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474566
 ] 

Guido Dubois commented on TOBAGO-287:
-

This doesn't work with the above envirenment...

tc:cell spanX=6 rendered=#{!(rkeController.formTyp2A  true)} /

2007-02-20 22:13:01 ERROR - 
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/bbg].[jsp]:704 
- Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: /overview/ekawtabkeekvorjahr.jspx(32,63) The 
entity name must immediately follow the '' in the entity reference.


 Error using  on rendered attribute in tc:out tag
 --

 Key: TOBAGO-287
 URL: https://issues.apache.org/jira/browse/TOBAGO-287
 Project: MyFaces Tobago
  Issue Type: Bug
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap 
 (06.02.2007 04:51), tobago 1.0.10 snap (16.02.2007 5:11)
Reporter: Guido Dubois

 Get error by using  on rendered attribute in tc:out tag. Using and 
 instead works...
   tc:out value=Fallgruppe :: #{basicController.fallGruppe}
 rendered=#{(navigation.currentPage == 'overview/ekaw')  true} 
 /
 2007-02-16 23:16:44 ERROR - 
 org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/bbg].[jsp]:704
  - Servlet.service() for servlet jsp threw exception
 org.apache.jasper.JasperException: /overview/header.jspx(41,70) The entity 
 name must immediately follow the '' in the entity reference.

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



[jira] Commented: (TOBAGO-273) Having a tc:command tag for change in tc:in would be useful

2007-02-20 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474574
 ] 

Guido Dubois commented on TOBAGO-273:
-

Yes, thats a functionality I need too (urgently).

I have an input field tx:in. If the value changed (lost focus) I want to 
invoke a bean method to validate the value and if it's fine, I want to 
calculate a second value and display in another tx:in disabled=true field.

I have tried to get working Ajax4jsf with tobago to solve this problem. But 
Ajax4jsf doesn't work together with the tobago renderer.

@Volker Weber: Have you a quick workaround for this behaviour?

 Having a tc:command tag for change in tc:in would be useful
 ---

 Key: TOBAGO-273
 URL: https://issues.apache.org/jira/browse/TOBAGO-273
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Core
Affects Versions: 1.0.10
 Environment: All
Reporter: Helmut Swaczinna

 With a tc:command tag for change in tc:in it would be possible to execute 
 some server side
 action when the user changes the content of a input field.

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



[jira] Commented: (TOBAGO-276) Popup - background shading in Mozilla browser - Firefox / Netscape

2007-02-18 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-276?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12474038
 ] 

Guido Dubois commented on TOBAGO-276:
-

This works for me too! Thanks...

 Popup - background shading in Mozilla browser - Firefox / Netscape
 --

 Key: TOBAGO-276
 URL: https://issues.apache.org/jira/browse/TOBAGO-276
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, firefox 2.0.0.1, netscape 8.1.2, tomcat 
 5.5.20, myfaces 1.1.4, tobago 1.0.9 - same error in tobago 1.0.10 snap 
 (06.02.2007 5:13)
Reporter: Guido Dubois

 The background shading when opening a popup box like datePicker doesn't work. 
 If loading of the next page takes a moment
 the background lightening works.

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



[jira] Commented: (TOBAGO-275) tx:date tag - datePicker and Opera

2007-02-16 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12473779
 ] 

Guido Dubois commented on TOBAGO-275:
-

Sorry, I haben't seen that you wrote a comment. Here are the error messages...

JavaScript - 
http://localhost:8080/bbg/faces/overview/intro.jspx;jsessionid=D593FD7D91C1336D3D3F2FFE547DC909
Timeout thread: delay 10 ms
Error:
name: EvalError
message: Statement on line 254: Illegal use of eval
Backtrace:
  Line 254 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
results.push(iterator(value, index));
  Line 223 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
iterator(value, index++);
  Line 416 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
iterator(this[i]);
  Line 227 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
this._each((function (value)
{
  try
{
  iterator(value, index++);
}
  catch (e)
{
  if (e != $continue)
throw e;
}
}
));
  Line 255 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
this.each((function (value,index)
{
  results.push(iterator(value, index));
}
));
  Line 162 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
return this.extractScripts().map(eval);
  Line 888 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
html.evalScripts();
  At unknown location
[statement source code not available]

JavaScript - 
http://localhost:8080/bbg/faces/overview/intro.jspx;jsessionid=D593FD7D91C1336D3D3F2FFE547DC909
Timeout thread: delay 10 ms
Error:
name: EvalError
message: Statement on line 254: Illegal use of eval
Backtrace:
  Line 254 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
results.push(iterator(value, index));
  Line 223 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
iterator(value, index++);
  Line 416 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
iterator(this[i]);
  Line 227 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
this._each((function (value)
{
  try
{
  iterator(value, index++);
}
  catch (e)
{
  if (e != $continue)
throw e;
}
}
));
  Line 255 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
this.each((function (value,index)
{
  results.push(iterator(value, index));
}
));
  Line 162 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
return this.extractScripts().map(eval);
  Line 888 of linked script 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/prototype.js
html.evalScripts();
  At unknown location
[statement source code not available]


 tx:date tag - datePicker and Opera
 

 Key: TOBAGO-275
 URL: https://issues.apache.org/jira/browse/TOBAGO-275
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, opera 9.10, tomcat 5.5.20, myfaces 1.1.4, 
 tobago 1.0.9 - same error in tobago 1.0.10 snap (06.02.2007 5:13)
Reporter: Guido Dubois

 I get javascript error in Opera when clicking on the date picker icon from 
 the tx:date tag.
 By the way Opera reports some CSS errors.

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



[jira] Commented: (TOBAGO-275) tx:date tag - datePicker and Opera

2007-02-16 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12473780
 ] 

Guido Dubois commented on TOBAGO-275:
-

and here the CSS error messages...

CSS - http://www.lindt.de/WebRoot/Site/BO/BackofficeStyle.css
Linked-in stylesheet
Expected ruleset
Line 285:
  padding:0 !important;
  -^
CSS - http://www.lindt.de/WebRoot/Site/BO/BackofficeStyle.css
Linked-in stylesheet
Expected ruleset
Line 286:
  margin:0 !important;
  ^
CSS - http://www.lindt.de/WebRoot/Site/BO/BackofficeStyle.css
Linked-in stylesheet
Expected ruleset
Line 291:
}
  ---^
CSS - http://www.lindt.de/WebRoot/Lindt/BO/BackofficeStyle.css
Linked-in stylesheet
Expected ruleset
Line 285:
  padding:0 !important;
  -^
CSS - http://www.lindt.de/WebRoot/Lindt/BO/BackofficeStyle.css
Linked-in stylesheet
Expected ruleset
Line 286:
  margin:0 !important;
  ^
CSS - http://www.lindt.de/WebRoot/Lindt/BO/BackofficeStyle.css
Linked-in stylesheet
Expected ruleset
Line 291:
}
  ---^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
Linked-in stylesheet
Invalid value for property: display
Line 442:
display: -moz-box; 
  ^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
Linked-in stylesheet
Declaration syntax error
Line 79:
   filter:alpha(opacity=50);
  --^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
Linked-in stylesheet
Invalid value for property: scrollbar-shadow-color
Line 473:
scrollbar-shadow-color: #0;
  -^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
Linked-in stylesheet
Invalid value for property: padding-top
Line 578:
padding-top: -1px;
  ^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
Linked-in stylesheet
Invalid value for property: display
Line 442:
display: -moz-box; 
  ^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
Linked-in stylesheet
Declaration syntax error
Line 79:
   filter:alpha(opacity=50);
  --^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
Linked-in stylesheet
Invalid value for property: scrollbar-shadow-color
Line 473:
scrollbar-shadow-color: #0;
  -^
CSS - 
http://localhost:8080/bbg/org/apache/myfaces/tobago/renderkit/html/speyside/standard/style/style.css
Linked-in stylesheet
Invalid value for property: padding-top
Line 578:
padding-top: -1px;
  ^


 tx:date tag - datePicker and Opera
 

 Key: TOBAGO-275
 URL: https://issues.apache.org/jira/browse/TOBAGO-275
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, opera 9.10, tomcat 5.5.20, myfaces 1.1.4, 
 tobago 1.0.9 - same error in tobago 1.0.10 snap (06.02.2007 5:13)
Reporter: Guido Dubois

 I get javascript error in Opera when clicking on the date picker icon from 
 the tx:date tag.
 By the way Opera reports some CSS errors.

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



[jira] Created: (TOBAGO-287) Error using on rendered attribute in tc:out tag

2007-02-16 Thread Guido Dubois (JIRA)
Error using  on rendered attribute in tc:out tag
--

 Key: TOBAGO-287
 URL: https://issues.apache.org/jira/browse/TOBAGO-287
 Project: MyFaces Tobago
  Issue Type: Bug
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap (06.02.2007 
04:51), tobago 1.0.10 snap (16.02.2007 5:11)
Reporter: Guido Dubois


Get error by using  on rendered attribute in tc:out tag. Using and 
instead works...

  tc:out value=Fallgruppe :: #{basicController.fallGruppe}
rendered=#{(navigation.currentPage == 'overview/ekaw')  true} /

2007-02-16 23:16:44 ERROR - 
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/bbg].[jsp]:704 
- Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: /overview/header.jspx(41,70) The entity name 
must immediately follow the '' in the entity reference.


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



[jira] Created: (TOBAGO-288) Error changing value in tx:date tag

2007-02-16 Thread Guido Dubois (JIRA)
Error changing value in tx:date tag
-

 Key: TOBAGO-288
 URL: https://issues.apache.org/jira/browse/TOBAGO-288
 Project: MyFaces Tobago
  Issue Type: Bug
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.5 snap (06.02.2007 
04:51), tobago 1.0.10 snap (16.02.2007 5:11)
Reporter: Guido Dubois


If you change the value of an tx:date field in your form so that all is fine 
(no errors on this field) and you have another field getting an error (e.g. 
required) you will fallback to the form site. Normally the changed  temporary 
value has to be reflected in the tx:date field (that works with other tags). 
But what you get to see is the stored original backing bean value.

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



[jira] Commented: (TOBAGO-194) Tooltip in tree and treeListbox

2007-02-15 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12473366
 ] 

Guido Dubois commented on TOBAGO-194:
-

How does it works. Have you an example. I use Tobago 1.0.10 snap, the new demo 
app with tree in menu mode. How to add a tip there? 

 Tooltip in tree and treeListbox
 ---

 Key: TOBAGO-194
 URL: https://issues.apache.org/jira/browse/TOBAGO-194
 Project: MyFaces Tobago
  Issue Type: Improvement
Reporter: Volker Weber
 Assigned To: Volker Weber
 Fix For: 1.0.9


 treeListbox and tree nodes should support tip attribute

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



[jira] Created: (TOBAGO-286) target and tip attributes for tc:menuitem and tc:tree nodes

2007-02-15 Thread Guido Dubois (JIRA)
target and tip attributes for tc:menuitem and tc:tree nodes
---

 Key: TOBAGO-286
 URL: https://issues.apache.org/jira/browse/TOBAGO-286
 Project: MyFaces Tobago
  Issue Type: Improvement
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, tobago 1.0.9 - 
same in tobago 1.0.10 snap (15.02.2007 5:10)
Reporter: Guido Dubois


The tc:menuitem and tc:tree (tree nodes) should support a target  and a 
tip attribute to open a browser window and show a tooltip


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



[jira] Created: (TOBAGO-277) Attribute required for tx:selectBooleanCheckbox

2007-02-09 Thread Guido Dubois (JIRA)
Attribute required for tx:selectBooleanCheckbox
---

 Key: TOBAGO-277
 URL: https://issues.apache.org/jira/browse/TOBAGO-277
 Project: MyFaces Tobago
  Issue Type: New Feature
Affects Versions: 1.0.9
Reporter: Guido Dubois


How about an attribute required for the tag tx:selectBooleanCheckbox like 
in h:selectBooleanCheckbox in MyFaces. A use case is e.g Accepting LAW - 
the checkbox has to be checked to continue

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



[jira] Created: (TOBAGO-275) tx:date tag - datePicker and Opera

2007-02-07 Thread Guido Dubois (JIRA)
tx:date tag - datePicker and Opera


 Key: TOBAGO-275
 URL: https://issues.apache.org/jira/browse/TOBAGO-275
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, opera 9.10, tomcat 5.5.20, myfaces 1.1.4, 
tobago 1.0.9 - same error in tobago 1.0.10 snap (06.02.2007 5:13)
Reporter: Guido Dubois


I get javascript error in Opera when clicking on the date picker icon from the 
tx:date tag.

By the way Opera reports some CSS errors.

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



[jira] Created: (TOBAGO-276) Popup - background shading in Mozilla browser - Firefox / Netscape

2007-02-07 Thread Guido Dubois (JIRA)
Popup - background shading in Mozilla browser - Firefox / Netscape
--

 Key: TOBAGO-276
 URL: https://issues.apache.org/jira/browse/TOBAGO-276
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 1.0.9
 Environment: winxp prof, firefox 2.0.0.1, netscape 8.1.2, tomcat 
5.5.20, myfaces 1.1.4, tobago 1.0.9 - same error in tobago 1.0.10 snap 
(06.02.2007 5:13)
Reporter: Guido Dubois


The background shading when opening a popup box like datePicker doesn't work. 
If loading of the next page takes a moment
the background lightening works.

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



[jira] Commented: (TOBAGO-266) Attribute labelWidth and facelets

2007-02-06 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12470623
 ] 

Guido Dubois commented on TOBAGO-266:
-

It works fine now! Thanks...

 Attribute labelWidth and facelets
 -

 Key: TOBAGO-266
 URL: https://issues.apache.org/jira/browse/TOBAGO-266
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Facelets
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, facelets 
 1.1.11, tobago 1.0.9 - same error in tobago 1.0.10 snap (05.02.2007 4:59)
Reporter: Guido Dubois
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 - The attribute labelWidth has no effect with facelets. Even if you set a 
 value the renderer takes the standard of 120px.

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



[jira] Commented: (TOBAGO-263) tc:style tag with facelets

2007-02-05 Thread Guido Dubois (JIRA)

[ 
https://issues.apache.org/jira/browse/TOBAGO-263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12470264
 ] 

Guido Dubois commented on TOBAGO-263:
-

It works fine! Thanks...

 tc:style tag with facelets
 

 Key: TOBAGO-263
 URL: https://issues.apache.org/jira/browse/TOBAGO-263
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Facelets
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, facelets 
 1.1.11, tobago 1.0.10 snap (29.01.2007 5:00)
Reporter: Guido Dubois
 Assigned To: Bernd Bohmann
 Fix For: 1.0.10


 I get the following error by using tag tc:style with facelets. with jsp it 
 works fine...
 /layout/overview.jspx @31,39 
 tc:style Tag Library supports namespace: 
 http://myfaces.apache.org/tobago/component, 
 but no tag was defined for name: style

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



[jira] Created: (TOBAGO-266) Attribute labelWidth and facelets

2007-02-05 Thread Guido Dubois (JIRA)
Attribute labelWidth and facelets
-

 Key: TOBAGO-266
 URL: https://issues.apache.org/jira/browse/TOBAGO-266
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Facelets
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, facelets 
1.1.11, tobago 1.0.9 - same error in tobago 1.0.10 snap (05.02.2007 4:59)
Reporter: Guido Dubois


- The attribute labelWidth has no effect with facelets. Even if you set a value 
the renderer takes the standard of 120px.

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



[jira] Created: (TOBAGO-267) Attribute escape for labels

2007-02-05 Thread Guido Dubois (JIRA)
Attribute escape for labels
---

 Key: TOBAGO-267
 URL: https://issues.apache.org/jira/browse/TOBAGO-267
 Project: MyFaces Tobago
  Issue Type: New Feature
Affects Versions: 1.0.9
Reporter: Guido Dubois


Is it possible to add a new attribute in combination with label ui components 
like escape in the component tc:out value=abclt;br /gt;xyz escape=false 
/ that you are able to define a multiline labels?

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



[jira] Created: (TOBAGO-268) TLD file for facelet-extension for code completition in eclipse

2007-02-05 Thread Guido Dubois (JIRA)
TLD file for facelet-extension for code completition in eclipse
---

 Key: TOBAGO-268
 URL: https://issues.apache.org/jira/browse/TOBAGO-268
 Project: MyFaces Tobago
  Issue Type: Wish
  Components: Facelets
Affects Versions: 1.0.9
Reporter: Guido Dubois


Where to get a TLD file for  
...xmlns:tx=http://myfaces.apache.org/tobago/facelet-extension;... that code 
completition in eclipse works?

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



[jira] Created: (TOBAGO-269) set attribute rendered from ui:debug tag with initParam in facelets

2007-02-05 Thread Guido Dubois (JIRA)
set attribute rendered from ui:debug tag with initParam in facelets
-

 Key: TOBAGO-269
 URL: https://issues.apache.org/jira/browse/TOBAGO-269
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Facelets
Affects Versions: 1.0.9
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, facelets 
1.1.11, tobago 1.0.9 - same error in tobago 1.0.10 snap (05.02.2007 4:59)
Reporter: Guido Dubois


I want to set the rendered attribute of the ui:debug tag with an initParam 
from the web.xml file

  context-param
param-namedebugMode/param-name
param-valuefalse/param-value
  /context-param

---

  ui:debug hotkey=m rendered=#{initParam['debugMode']} /

This doesn't work. The tag is allways rendered. If I replace the EL expression 
to false than it is not rendered.


The tag tc:out escape=false value=...#{initParam['debugMode']}... / 
reflects ...false So the EL expression is correct and will be found

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



[jira] Created: (TOBAGO-263) tc:style tag with facelets

2007-01-31 Thread Guido Dubois (JIRA)
tc:style tag with facelets


 Key: TOBAGO-263
 URL: https://issues.apache.org/jira/browse/TOBAGO-263
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Facelets
Affects Versions: 1.0.10
 Environment: winxp prof, tomcat 5.5.20, myfaces 1.1.4, facelets 
1.1.11, tobago 1.0.10 snap (29.01.2007 5:00)
Reporter: Guido Dubois


I get the following error by using tag tc:style with facelets. with jsp it 
works fine...

/layout/overview.jspx @31,39 
tc:style Tag Library supports namespace: 
http://myfaces.apache.org/tobago/component, 
but no tag was defined for name: style

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



<    1   2