Re: help : displaying Images that are stored outside the Web application

2006-11-08 Thread Dennis Sinelnikov
Craig St Jean wrote: When using JSPs or PHP this would be accomplished by setting the content-type and then outputting the contents of the picture. I could then have something like img src="displayimage.jsp?image=whatever.png". I'm not sure exactly how to do it in Tapestry but I would assume it

Re: users want to load same page with different entities in parallel. How?

2006-11-08 Thread Sam Gendler
Yeah, it is easy to do it with session state that I control. My concern is purely with components that have their own persistent fields, so I can't make them 'conversation-aware' without some amount of hacking. This bothers my sense of elegance. Sure, it is doable, especially since every tap co

Re: users want to load same page with different entities in parallel. How?

2006-11-08 Thread Daniel Tabuenca
Storing data to the client is always an option but for larger amounts of data this becomes a problem due to large amount of data that needs to be encoded in the urls of every link or in hidden fields of a form. I think what you are looking for is a way to scope the session data so that you can hav

Re: users want to load same page with different entities in parallel. How?

2006-11-08 Thread Sam Gendler
ok, some investigation into the version of contrib:Table that comes with tacos shows that you can specify that a table stores its persistent state to the client on a page or app basis, so it would appear that that is solved for the table component. Are there other components in the core libraries

users want to load same page with different entities in parallel. How?

2006-11-08 Thread Sam Gendler
Say I have a page to edit an entity, and that includes a table component. When the page is rendered, various bits of state about components of the page are stored in the session, especially for the table component, since it stores current page and various other things in the session. Now, my user

Re: help : displaying Images that are stored outside the Web application

2006-11-08 Thread Craig St Jean
When using JSPs or PHP this would be accomplished by setting the content-type and then outputting the contents of the picture. I could then have something like img src="displayimage.jsp? image=whatever.png". I'm not sure exactly how to do it in Tapestry but I would assume it would be somethi

Re: need help with design of a component

2006-11-08 Thread edward pedersson
could you send some javascript with the data implying the id's e.g var idsToUpdate = []; function addToIdsToUpdate(andId) { idsToUpdate.push(anId) } some data addToIdsToUpdate("someData"); may not be what you are after though On 08/11/06, Andy Pahne <[EMAIL PROTECTED]> wrote: H

help : displaying Images that are stored outside the Web application

2006-11-08 Thread sunilmanu
Hi, I am a newbie to Tapestry. I need help on how to display the Images stored outside the Web application. Say my application HTML path --> c:/jboss/deploy/webapps/TapestryApp/Home.html But Images are stored outside--> : c:/appImages/test1.jpeg How can I load the Image dynamically in the SRC

need help with design of a component

2006-11-08 Thread Andy Pahne
Hi, I am thinking about a component with a specific behaviour, but have no idea how to implement it. I am using 4.1.1-SNAPSHOT. I need to display a list of items. Most of the data about the items is stored in a local relational database, but some other data about the items is retrieved in a rem

Re: @DropdownDatePicker not working in IE with lastest snapshot

2006-11-08 Thread andyhot
Christian Dutaret wrote: > the widget is not rendered at all under IE6. I get the error message : > could > not locate implementation for "dropdowndatepicker" in "dojowidget" > registered to namespace "dojo". > Works OK with firefox 2.0 > > Anyone experiencing the same? what's your djConfig ? --

@DropdownDatePicker not working in IE with lastest snapshot

2006-11-08 Thread Christian Dutaret
the widget is not rendered at all under IE6. I get the error message : could not locate implementation for "dropdowndatepicker" in "dojowidget" registered to namespace "dojo". Works OK with firefox 2.0 Anyone experiencing the same?

How to handle image upload in FCKeditorTA

2006-11-08 Thread jake123
Hi, I have a question about the image upload functionallity in FCKeditorTA. Does anybody know if it is posible to configure this to take a image location from the local browser instead of Image URL? Can I control the other tabs in the dialog box also? I don't want my clients to have the ability to

Re: Notification of stale session?

2006-11-08 Thread Peter Stavrinides
There are many ways to do this, the most common and simplest is using a simple pageValidate, but if you need something more complex for whatever reason, you can also wire a listener using hivemind or even use your web.xml file i.e. web.xml com.test.application.SessionListener

Re: OGNL Notation for accessing List Element

2006-11-08 Thread Micha Roon
I have one page (Home.html) with its Class (Home.java) and in the class I have the two methods public String getName(String which){ return which;} public void setName(String which){return;} In the html I have just one tag for the test: jwcid="@Insert" value="ognl:name['titi']" I have atta

Notification of stale session?

2006-11-08 Thread Kevin Whitley
Is there some way to receive notification that a session has become stale? I'm looking for something like the javax.servlet interface HttpSessionBindingListener. I have various resources associated with a session and I'd like to free them up when the session times out not waiting for som