Re: tobago partial rendering question

2010-04-14 Thread Michael Kakuschky
Hello Volker, thanks for the response. Yes I target the panel. I use now actionListener and return null as return value. I also preset the value of string1 so that the value is always already initialized. But nervertheless the string2 is set to the new value (I debug that) but after rendering t

How to activate an tc:tab element to be on top in tobago

2010-04-14 Thread Michael Kakuschky
Hello, is there a way to activate an tc:tab element within an action so that it comes to the top of a tc:tabGroup ? Thanks for your help Michael

Re: tobago partial rendering question

2010-04-14 Thread Michael Kakuschky
rds, Volker 2010/4/14 Michael Kakuschky : Hello Volker, thanks for the response. Yes I target the panel. I use now actionListener and return null as return value. I also preset the value of string1 so that the value is always already initialized. But nervertheless the string2 is set to t

[TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-21 Thread Michael Kakuschky
Hello, I have a strange problem selecting the correct item of tx:selectOneChoice boxes if the itemValue of the tc:selectItem item is an Integer. Storing the selected values works fine as aspected. I will find the correct values in mybackend database What does not work is that after rerend

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-22 Thread Michael Kakuschky
alue in getActive() but String in select items. Try you don't need a converter! Regards, Volker 2010/4/21 Michael Kakuschky : Hello, I have a strange problem selecting the correct item of tx:selectOneChoice boxes if the itemValue of the tc:selectItem item

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-22 Thread Michael Kakuschky
ng in select items. Try you don't need a converter! Regards, Volker 2010/4/21 Michael Kakuschky: Hello, I have a strange problem selecting the correct item of tx:selectOneChoice boxes if the itemValue of the tc:selectItem item is an Integer. Sto

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-27 Thread Michael Kakuschky
er #1 or #4, for an enterprise application I would prefer #5... Regards, Udo Am 22.04.10 22:33, schrieb Michael Kakuschky: Hello Udo, hello Volker, both together (using braces for EL expression and long data type for getter and setter) helped to get the tx:selectOneChoice working like expected :-)

[TOBAGO] TYPE ERROR: value NOT instanceof SelectItem

2010-05-09 Thread Michael Kakuschky
Hello, I have a problem with my application sinced I moved my eclipse environment from a Windows XP system to and Windows 7 system. Compiling works fine and also a lot of my jsf tobago pages. But if i run the app on my development system some pages using tx:selectOneChoice Elements are produ

Re: [TOBAGO] TYPE ERROR: value NOT instanceof SelectItem

2010-05-10 Thread Michael Kakuschky
Regards, Volker 2010/5/9 Michael Kakuschky: Hello, I have a problem with my application sinced I moved my eclipse environment from a Windows XP system to and Windows 7 system. Compiling works fine and also a lot of my jsf tobago pages. But if i run the app on my development system some

Re: [TOBAGO] TYPE ERROR: value NOT instanceof SelectItem

2010-05-10 Thread Michael Kakuschky
selectItems value in jsf1.2 there must be a Problem in the tobago1.0/jsf1.2 combination. Regards, Volker 2010/5/10 Michael Kakuschky: Hello Volker, for testing I produce a very cutted version of my page where is just one selectItem in it, this is the one where the logs came from. If I

[Tobago] FileUpload from popup supported?

2010-09-21 Thread Michael Kakuschky
Hello, I use a form in a popup to submit some data. It worked fine until I add the tx:file component to the form. If I submit the form with a file selected I receive the data but it seems that it corrupts somehow the memory and I got some strange Java exceptions about (existing) methods that c

Re: [Tobago] FileUpload from popup supported?

2010-09-22 Thread Michael Kakuschky
n example in the addressbook demo. If you still have problems with the Java exceptions, please sent it, with the Tobago version and the way you chose (jar or filter). Regards, Udo An example you can find in the Am 21.09.10 09:56, schrieb Michael Kakuschky: Hello, I use a form in a popup to

Re: [Tobago] FileUpload from popup supported?

2010-09-23 Thread Michael Kakuschky
he way you chose (jar or filter). Regards, Udo An example you can find in the Am 21.09.10 09:56, schrieb Michael Kakuschky: Hello, I use a form in a popup to submit some data. It worked fine until I add the tx:file component to the form. If I submit the form with a file selected I receive the d

[tobago] Validation in Popups

2010-09-23 Thread Michael Kakuschky
Hello, I have a form in a popup. Now it works fine and I add some validators to it. I checked that they are executed and throws the ValidatorException if the input does not match the requirements. In case of exceptions the action behind the popup form is not executed but unfortunately the pop

Re: [tobago] Validation in Popups

2010-09-28 Thread Michael Kakuschky
Am 28.09.2010 15:12, schrieb Udo Schnurpfeil: Hello Michael, please try to put the form outside of the command tag, which opens the popup. This should solve your problems. The background is: The popup must be inside the form to consider it was already active. Regards, Udo Am 23.0

Re: [tobago] Validation in Popups

2010-10-04 Thread Michael Kakuschky
Does nobody has an working example for validation in popus? Regards Michael Am 29.09.2010 08:57, schrieb Michael Kakuschky: Hello Udo, thanks for the answer but my form is already around the tc:button which I used to open the popup. Here is a snippset of my original version. The popup works

Re: [tobago] Validation in Popups

2010-10-12 Thread Michael Kakuschky
obago 1.0.x: If you need validation inside a popup, you should not close the popup via popupClose attribute, but rerender the popup content partial and, on success, close the popup via hidden button and javascript. something like this should work, if you set the #{myController.closePopup} value in

Re: [tobago] Validation in Popups

2010-10-12 Thread Michael Kakuschky
alidation inside a popup, you should not close the popup via popupClose attribute, but rerender the popup content partial and, on success, close the popup via hidden button and javascript. something like this should work, if you set the #{myController.closePopup} value in your newItem action. Tob

[tobago] tc:input und tx:input components not updated

2010-10-13 Thread Michael Kakuschky
Hello, I downgraded my tobago (1.0.30) application from myfaces 1.2.8 to myfaces 1.1.8 to get the popup validation working - It works now thanks for the help. Now I got another problem. Since the downgrade the tc:in and tx:in elements not updated with the attributes of the underlaying control

Re: [tobago] tc:input und tx:input components not updated

2010-10-13 Thread Michael Kakuschky
Since I downgraded my tobago (1.0.30) application from myfaces 1.2.8 to myfaces 1.1.8 to get popups validation working I have also some problems with the subforms on non popup pages. It seems that the scope of the Forms follows other rules with myfaces 1.1.8 than 1.2.8. In some cases the val

[tobago] tc:form scopes not working with myfaces 1.1.8

2010-10-13 Thread Michael Kakuschky
Hello, Excuse sending another time but the subject was not right. Since I downgraded my tobago (1.0.30) application from myfaces 1.2.8 to myfaces 1.1.8 to get popups validation working I have also some problems with the subforms on non popup pages. It seems that the scope of the Forms follows o

[tobago] tx:in update problem

2010-10-16 Thread Michael Kakuschky
Hello, I stripped down my tx:in update problem. In a simple JSP page I have have to forms. If I click the button in the first form I want to update the tx:in element in the second form. The update does only works if the readonly attribute of the tc:in element is set to "true". But them I'm not

[tobago] How to use tc:tree control for navigation

2010-10-22 Thread Michael Kakuschky
Hello, how to use the tc:tree control to navigate to pages? Is it possible? And if yes how I can set the outcome? Thanks & regards Michael

[tobago] rowIndex is less than -1

2011-01-27 Thread Michael Kakuschky
Hello, sometimes after reloading data to a tc:sheet element and using the page selector I got the following error message Caused by: java.lang.IllegalArgumentException: rowIndex is less than -1 at javax.faces.component.UIData.setRowIndex(UIData.java:239) at org.apache.myfaces.to

[tobago] rowIndex is less than -1

2011-05-31 Thread Michael Kakuschky
Hello I'm using at many places the tc:sheet component. If the content of the underlaying List did changed I got many times the following error message. It seems that if the count of records in the underlaying List is less than before, the component comes in trouble. I'm using tobago 1.0.30 w