Orchestra with WebSphere

2009-01-15 Thread Kito Mann
Hello everyone, I'm about to experiment with Orchestra on WebSphere 6.1 -- any war stories? --- Kito D. Mann -- Author, JavaServer Faces in Action http://twitter.com/kito99 http://www.virtua.com - JSF/Java EE consulting, training, and mentoring http://www.JSFCentral.com - JavaServer Faces FAQ,

Exception on Integration JBoss Seam + JSF + TRINIDAD

2009-01-15 Thread mr.vikash
Hi I am trying to integrate JBoss Seam with JSF aand Trinidad. When I am working with JBoss Seam and Trinidad or JBoss Seam with JSF, in both case my project is working fine, but when i am trying to integrate all these three in single project it cought an exception. I followed the suggestions

RE: Using Ajax with MyFaces

2009-01-15 Thread Shasi Mitra Yarram
Madhav, i actually have a page which has three tables in it. I get data to table 1 from db which is very fast. Table 2 and table 3 should be populated from webservice calls. As the webservice calls are very slow it is takingĀ a long time for the page to get loaded.So somebody suggested to load

Re: setting UTF-8 encoding

2009-01-15 Thread Guy Bashan
You can also try to solve it on the tomcat level by setting the connector property: URIEncoding=UTF-8 For exmaple: Connector port=8080 protocol=HTTP/1.1 connectionTimeout=2 redirectPort=8443 URIEncoding=UTF-8 / Guy. On Thu, Jan 15, 2009 at 9:16 AM, Hasan

RE: Using Ajax with MyFaces

2009-01-15 Thread Madhav Bhargava
What you can do is the following: When the page loads show a loading gif using a status component from ajax4jsf which will then change to data table when the div in which the table is contained gets some data to be displayed. Either you can enclose the other 2 data tables in a4j:outputPanel or

Retrive through uicomponent binding backing bean object

2009-01-15 Thread Pierandrea Cercato
I have an HtmlInputTextArea. It has as value a property of an object of an arrayList. h:inputTextarea cols=30 binding=#{translationsBean.inputCountry} immediate=false value=#{translation.localTranslation} Is it possible *through binding* of the component... public HtmlInputTextarea

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Simon Lessard
Hi, May I inquire what your use case is? There's a way to do it, but it's very, very funky: 1. ValueExpression valueExpr = component.getValueExpression(value); 2. String expressionString = valueExpr.getExpressionString(); 3. Parse the string the remove the last element of the EL 4. Recreate a

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Pierandrea Cercato
Hi Simon, Actually i'm using an a4j ajax functionallity. I've a table and an onchange event on a textarea fire this onchange method: public String change() { HashSetInteger keys = new HashSetInteger(); int rowKey = getRepeater().getRowIndex(); keys.add(rowKey);

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Simon Lessard
Hi, Wouldn't that logic fit better in the set method of the object itself? Regards, ~ Simon On Thu, Jan 15, 2009 at 10:45 AM, Pierandrea Cercato cerca...@gmail.comwrote: Hi Simon, Actually i'm using an a4j ajax functionallity. I've a table and an onchange event on a textarea fire this

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Pierandrea Cercato

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Pierandrea Cercato

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Pierandrea Cercato
I'm limited by the a4j component

Re: Static/high level change of javascript location

2009-01-15 Thread Anton Gavazuk
Hi, look on https://weblets.dev.java.net/ - it could help 2009/1/12 rekyl stale.kle...@accenture.com: I've been trying to use an alternative javascript location using the component attribute 'javascriptLocation'. I got it working with the following code: f:attribute

Re: Retrive through uicomponent binding backing bean object

2009-01-15 Thread Pierandrea Cercato
I've found a solution: Translation translationChanged = (Translation) context.getApplication().evaluateExpressionGet(context, #{translation}, Translation.*class*); I could have used a more generalized approach like you were suggesting: ValueExpression expression =

Re: Exception on Integration JBoss Seam + JSF + TRINIDAD

2009-01-15 Thread Matthias Wessendorf
org.ajax4jsf.application.AjaxViewHandler there were some issues with ajax4jsf. there is no need to use that lib. Trinidad has all you need. the Trinidad wiki: http://wiki.apache.org/myfaces/Trinidad has some guides on seam and trinidad. -M On Thu, Jan 15, 2009 at 2:12 AM, mr.vikash

Input components with disabled=true

2009-01-15 Thread Luca Graf
Hello together, I got an problem with input components like h:selectBooleanCheckbox when i use the attribute disabled=true. My scenario is that i have two checkboxes. The second is initially set to disabled=true. Now the user should only get access to the second if he changed the value of the

[tomahawk] t:schedule

2009-01-15 Thread j haley
I have an application where users can choose their time zone. I need to apply this time zone change to tomahawk's schedule (t:schedule). I am at a loss on how to approach this. Note, wanted to point out that my users will be using multiple time zone, I can choose on zone from all users.

Tomahawk Sandbox InputSuggest

2009-01-15 Thread pdt_p
Hi.. I have problem with combining Trinidad selectonechoice partial trigger with SandBox InputSuggest. What I am trying to do is everytime the selectonechoice value changes, update the list of InputSuggest. My Jsp code is quite simple: [code]