Re: [MyFaces][Tomahwak][Sandbox]

2008-08-21 Thread Ernst Fastl
t; mode. > > For example: > periodicalUpdate="5000">. > periodicalUpdate="5000">. > > Thanks, > Guy. > > -Original Message- > From: Ernst Fastl [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 21, 2008 10:14 PM > To: MyFaces Discussi

Re: [MyFaces][Tomahwak][Sandbox]

2008-08-21 Thread Ernst Fastl
Yes, if two different pprPanelGroups trigger on the same input-element both of them are refreshed with one AJAX request. On 8/21/08, Guy Bashan <[EMAIL PROTECTED]> wrote: > Hi, > > > > I think I have already asked this question, but got no replay: > > Is there a way autorefreshing 2 differen regio

[ORCHESTRA] How to set ConversationContext timeout

2008-07-30 Thread Ernst Fastl
Hi there! We are using myfaces-orchestra-core 1.1 and have troubles with the default ConversationContext timeout of 30 min. We would like the conversationContexts to timeout with the HTTP Session (meaning a value of -1 right ?) The ConversationScope supports a timeout property for individual conv

Re: PPR and regilar HTML

2008-05-20 Thread Ernst Fastl
modify the component tree manually since it breaks state saving in this case regards Ernst On 5/20/08, Ernst Fastl <[EMAIL PROTECTED]> wrote: > the problem here is that html as well as f:verbatim results in transient > compoents which are not available after restore view anymore. >

Re: PPR and regilar HTML

2008-05-20 Thread Ernst Fastl
the problem here is that html as well as f:verbatim results in transient compoents which are not available after restore view anymore. In the facelets 1.1.14 there is a parameter to enable build of the tree before restore: facelets.BUILD_BEFORE_RESTORE true with that parameter it works in m

Re: iframe and saveState

2008-03-30 Thread Ernst Fastl
Be aware that t:saveState also does no "magic" to not use memory for things you store there. Generally you have 2 types of state saving in JSF: server-side and client-side. server-side saves the state in the HTTP Session of the user, client-side serializes and encodes the state and sends it back to

Re: Custom scrollable data table component?

2008-03-25 Thread Ernst Fastl
Sounds cool. You may be able to utilize the drag&drop support from the dojo-toolkit. are you planning to open-source that table? kind regards Ernst On Thu, Mar 20, 2008 at 4:20 AM, Hoc Nguyen Thanh <[EMAIL PROTECTED]> wrote: > Hi all, > > My customer needs a scrollable data table which is con

Re: JSF dropdown results in Out Of Memory

2007-10-25 Thread Ernst Fastl
Try adding for instance -Xmx 1024 to your Servlet container Java startup options in order to allow your JVM to allocate more memory. btw. do you really have 14.000 entries in one dropdown? could you use a pageable datatable instead and fetch only parts of those 14.000 at a time? cheers Ernst

Re: pprPanelGroup - can it submit only a single form element?

2007-10-25 Thread Ernst Fastl
Hello Tara, Currently the pprPanelGroup only supports full form submissions. Using a datascroller to only show for instance 10 rows per page should help to speed up the process. I don't know if thats possible in your case. If you need to display all the rows at once you could update both totals

Re: help, with ppr and multiple selectonemenu nested

2007-09-27 Thread Ernst Fastl
Generally your code looks fine as far as I can see. 2 questions 1) is the third panelGroup rendered from the beginning? 2) which version of the tomahawk-sandbox are you using? kind regards Ernst On 9/26/07, alvaro tovar <[EMAIL PROTECTED]> wrote: > hi all, i can't make this, if some one have a

Re: t:pprPanelGroup

2007-08-21 Thread Ernst Fastl
nelGroup breaking posting of > UTF8 encoded text? > > regards, > michał > > On 15/08/07, Ernst Fastl <[EMAIL PROTECTED]> wrote: > > Hi Michal, > > > > Sounds lilke a good workaround to me. We are currently working > > on JavaScript execution within P

Re: t:pprPanelGroup

2007-08-15 Thread Ernst Fastl
Hi Michal, Sounds lilke a good workaround to me. We are currently working on JavaScript execution within PPR regions. Once that is solved we will address the issue you have. I hope we will be able to do so before the next release. best wishes Ernst On 8/14/07, Michał 'Gandalf' Stawicki <[EMAIL

Re: Tomahawk Sandbox

2007-08-12 Thread Ernst Fastl
Try using tomahawk 1.1.7 as well. If the problem still occurs increase the log-level of the org.apache.myfaces package in your logging configuration to debug and check for messages that resources could not be served or found. regards Ernst On 8/10/07, Lyn Büsching <[EMAIL PROTECTED]> wrote: > H

Re: how to stop Ajax poll call through java script

2007-07-13 Thread Ernst Fastl
Looks as if the form with the search criteria was not submitted at all. Are your search inputs within the same as the dataTable and dataScroller ? On 7/13/07, ayan <[EMAIL PROTECTED]> wrote: What about my dataScroller problem??? anybody who knows how to get around with it? Is there any other w

Re: pprPanelGroup ajax-request error

2007-06-27 Thread Ernst Fastl
e i to follow for using the ppr? 3.which jars version (tomhw, sandb,myFacs )? regards, Sam Ernst Fastl wrote: > > Hi, > > When an error occurs during processing a PPR request the PPR engine > submits the form in order to enable the application to show a proper > error page. &

Re: pprPanelGroup ajax-request error

2007-06-25 Thread Ernst Fastl
Hi, When an error occurs during processing a PPR request the PPR engine submits the form in order to enable the application to show a proper error page. Have you checked your server log for any exceptions which occur during the partial requests? regards Ernst On 6/25/07, samju <[EMAIL PROTECT

Re: JSF and AJAX without custom components?

2007-06-05 Thread Ernst Fastl
n upgrade. I haven't tested it for thread-safety yet but everything I have seen with other frameworks leads me to believe all is well. Thanks, Stan Ernst Fastl wrote: > Hi, > > I can understand you don't like to write your own component for > soving this problem (although seeing the

Re: JSF and AJAX without custom components?

2007-05-30 Thread Ernst Fastl
Hi, I can understand you don't like to write your own component for soving this problem (although seeing the stuff you posted I guess you are skilled enough for that). Anyway, have you tried the existing solutions like PPRPanelGroup from the tomahawk sandbox or Ajax4JSF? regards Ernst On 5/26

Re: [COMMUNITY] Ernst Fastl - Committer

2007-05-30 Thread Ernst Fastl
Thank you all for this warm welcome and all the support I got from you which enabled me to do this patches in the first place. I'm happy to be a part of this great community. kind regards Ernst On 5/29/07, Martin Marinschek <[EMAIL PROTECTED]> wrote: Welcome Ernst! regards, Martin On 5/29/

Re: JavaScript oamSubmit rendered only if commandButton is in component tree

2007-05-21 Thread Ernst Fastl
I fear at the moment you would have to put at least a dummy commandlink () in your page. Thats how I currently work around this problem. I would also appreciate to always have that function available. I think we should propose that on [EMAIL PROTECTED] you might be interested in following that

Re: and datascroller

2007-05-21 Thread Ernst Fastl
of methods when you go to server (Request - Response). Thank you very much!!! ----- Mensaje original De: Ernst Fastl <[EMAIL PROTECTED]> Para: MyFaces Discussion Enviado: sábado, 19 de mayo, 2007 15:52:11 Asunto: Re: and datascroller Thanks for the detailed information, I will try to rep

Re: and datascroller

2007-05-19 Thread Ernst Fastl
15 / 5 = 3 pages. click last buttom --> you go to page 5 of 3 (15 results) Thanks for all!!! ----- Mensaje original De: Ernst Fastl <[EMAIL PROTECTED]> Para: MyFaces Discussion Enviado: martes, 15 de mayo, 2007 23:20:28 Asunto: Re: and datascroller Seems to work fine for me

Re: and datascroller

2007-05-15 Thread Ernst Fastl
Seems to work fine for me on: http://example.irian.at/example-sandbox-20070514/pprPanelGroupDataScroller.jsf what exactly do you mean? On 5/11/07, Angel Miralles Arevalo <[EMAIL PROTECTED]> wrote: Hi everybody, can anybody tell me why, when you have a datatable with datascroller inside label

Re: Sandbox behaviour!!

2007-05-15 Thread Ernst Fastl
sounds familiar try using s:loadBundle instead of f:loadBundle for your messages regards Ernst On 5/15/07, Angel Miralles Arevalo <[EMAIL PROTECTED]> wrote: Hi everybody, can anybody explain me, what are functionalities for sandbox components? For example if you put a message from a ".prope

Re: does not work in cell

2007-05-01 Thread Ernst Fastl
Hi, This is indeed an issue with the current implementation and we are working on that problem. For the time being you might want to put the whole dataTable into a pprPanelGroup like in http://example.irian.at/example-sandbox-20070501/pprPanelGroupDataScroller.jsf regards Ernst On 4/30/07, Da

Re: myfaces supports ajax framework

2007-04-25 Thread Ernst Fastl
there are quite some AJAX components in the tomahawk sandbox. go to: http://www.irian.at/myfaces.jsf look for the link named » MyFaces Sandbox Examples latest build there take a look at the Partial Page Rendering examples cheers Ernst On 4/25/07, deepraj <[EMAIL PROTECTED]> wrote: anyone

Re: does not submit using Ajax

2007-04-24 Thread Ernst Fastl
Hi dave, For JavaScript debugging I can recommend using Firefox together with the firebug plugin http://www.mozilla-europe.org/en/products/firefox/ and https://addons.mozilla.org/de/firefox/addon/1843 what partialTriggers or partialTriggerPattern do you have defined and which components are t

Re: latest build: resource src/dom/__package__.js not found

2007-04-23 Thread Ernst Fastl
hi dave! This is a known issue which will hopefully be fixed soon. In order to have the oamSubmit-function available you need to have at least one of the components on the page which renders it. As a workaround you could place a dummy commandLink on your page like: that should solve your probl

Re: Tree2 and PPRPanelGroup

2007-03-08 Thread Ernst Fastl
Hi, I have had exactly this combination working, do you use a partialTriggerPattern which covers the crosses rendered by the tree (if unsure check the generated html and look at the ids of the crosses) regards Ernst On 3/7/07, Oellien, F (Frank) <[EMAIL PROTECTED]> wrote: Hello, Is it possib

Re: ERROR: Value is not a valid option

2007-02-24 Thread Ernst Fastl
Hi, I have had a similar problem recently. Generally happens if the application is not able to find the selected value in the List of selectItems. This can be due to 2 possible situations: 1. The list is not available during validation -> try using a to ensure it is 2. The values of the select

Re: Problem using PPR together with a tabbedPanel client side

2007-02-21 Thread Ernst Fastl
> myFaces_panelTabbedPane_subHeaderCell_first > myFaces_panelTabbedPane_subHeaderCell_active" > >  > class="myFaces_panelTabbedPane_subHeaderCell > myFaces_panelTabbedPane_subHeaderCell_inactive">  > > class="myFaces_panelTabbedPane_subHeaderCell > myFaces

Re: Problem using PPR together with a tabbedPanel client side

2007-02-12 Thread Ernst Fastl
Hi, So if I understood you correctly you are using a t:panelTabbedPane with serverSideTabSwitch="false" right? Inside you have a dropdown-menu which triggers a partial update of a contained panel group. If you do not touch the drop-down and click on a tab it stays on the client-side, but if you

Re: Anyone used and ?

2007-02-10 Thread Ernst Fastl
It is not about stability, it is about the lack of support for embedded javascript. Other frameworks as e.g. AjaxAnywhere solve this by parsing the generated output for script-tags, which IMHO not the cleanest solution, but a working one. The problem with this solution is, that it would not cover

Re: Question about creating a dropdown list with dynamic values

2006-10-31 Thread Ernst Fastl
You could write a method: List retval = new ArrayList(); for(A a:list) retval.add(new SelectItem(a.getAttr1() + a.getAttr2() ) ) return retval; and use this as value for a selecItems-component hope that helps Ernst On 10/31/06, ying lcs <[EMAIL PROTECTED]> wrote: i have a list of object ,