Re: [Wicket-user] Including wicket page from JSP?

2007-05-26 Thread Nino Saturnino Martinez Vazquez Wael
We tried that, but the including jsp, does some pageprocessing and that gives on the included page. That just might what you mention about conficting html... Bruno Borges wrote: You can do it with a runtime include jsp:include page=/site/MyBookmarkablePage / But watch out for conflicts

Re: [Wicket-user] Including wicket page from JSP?

2007-05-26 Thread Nino Saturnino Martinez Vazquez Wael
Sound like a nice way, i'll have to dig into it. Seems pretty easy, should be on the wiki, and be included in wicket-extensions(as externalized able component)? That way it would be sorta out of the box:) regards Nino Scott Swank wrote: Consider also the solution we implemented in house to

Re: [Wicket-user] Problem loading dynamic image using ajax

2007-05-26 Thread Kent Tong
Michael K m_lestat at yahoo.com writes: Hi,I have problem displaying dynamic image using ajax. The problem is that the image url became expired after the page has rendered. The page was loaded fine it didn't triggered page expired. I think there is something wrong with your code: How can

Re: [Wicket-user] Problem loading dynamic image using ajax

2007-05-26 Thread Michael K
Thanks for spotting the error in my previous post. The code I posted wasn't copy-paste from the actual code since it works fine except the image issue, but rather a simplify version to explain my problem. Anyway I 've made correction to my sample code below: public class AjaxPage extends

Re: [Wicket-user] Problem with TinyMCE on a panel

2007-05-26 Thread Iulian Costan
hi all, i just want to let you know that tinymce works with ajax and i've committed all changes into svn trunk. i've updated the example as well. please take a look and let me know if it works for you. there is still a sync issue, and sometimes tinymce editor is not loaded using ajax because

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-26 Thread Johan Compagner
what you could do is just stripoff (regexp replace) the jsession id of the url you can only do this is you don't acess the session in your resource and i guess you don't do that because you only need the url to stream the resource right? johan On 5/25/07, RĂ¼diger Schulz [EMAIL PROTECTED] wrote:

[Wicket-user] Special table generation

2007-05-26 Thread Thomas Singer
I want to create a table with different rows as shown at http://www.syntevo.com/smartcvs/download.jsp . As you can see there are following kind of rows: - header/title (e.g. Application Details), - version information - separator (maybe can be replaced by stylesheet tuning) - download link I

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-26 Thread RĂ¼diger Schulz
Ah, good advice. I actually need the Session in the Resource, as some images have restrictions on who is allowed to see them. So, instead of stripping the jsessionid, I will create my links for the src attribute in a way that it they will look like this:

Re: [Wicket-user] Special table generation

2007-05-26 Thread Ryan Gravener
Thomas, The DataView allows for custom markup. See: http://www.wicket-library.com/wicket-examples/repeater , http://wicket.sourceforge.net/wicket-extensions/apidocs/wicket/extensions/markup/html/repeater/data/DataView.html On 26/05/07, Thomas Singer [EMAIL PROTECTED] wrote: I want to create a

Re: [Wicket-user] How to auto-eliminate component from RepeatingView

2007-05-26 Thread Kent Tong
Felipe Piccolini felipe.piccolini at bluesoft.cl writes: How can I do to make the delete this person works in order to get it removed from the RepeatingView? Several issues: 1) The repeating view should be associated with each item in the list, not the list itself. 2) If you delete an item

Re: [Wicket-user] Problem loading dynamic image using ajax

2007-05-26 Thread Kent Tong
Michael K m_lestat at yahoo.com writes: To obtain the requestcycle in the constructor, I do RequestCycle.get(); in the WebPage constructor. You shouldn't do that. You have a request cycle only when there is a request from the browser, not when your page is constructed.

[Wicket-user] wicket-contrib-gmap GMarkerComponent proposal

2007-05-26 Thread Ryan Gravener
Since the tool tip may contain possessive nouns, this causes a javascript syntax error, so i propose changing gmarker.getToolTip() to gmarker.getToolTip().replace(\',\\') in methods: createMarkerDefaultIcon, createMarkerCustomIcon http://www.papernapkin.org/pastebin/view/150 -- Ryan Gravener

Re: [Wicket-user] Including wicket page from JSP?

2007-05-26 Thread Markus Hjort
On 5/25/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I wont expect the above to be possible, but sometimes you just dont know? Is it possible, currently we are including it via an iframe tag, some say thats a bad way todo it... Whats your 2 cents? We are using

[Wicket-user] TreeTable with nodes that are not links + rows with alternate background colours

2007-05-26 Thread howzat
wicket: 1.2.6 wicket-extensions: 1.2.6 A couple of questions re TreeTable Is it possible to configure a TreeTable so its nodes are not links? So far, I have only found/tried tree.setLinkType(null) without achieving the desired effect. Is it possible to have rows with different background

Re: [Wicket-user] I got this : Expected close tag for ...

2007-05-26 Thread Kent Tong
Matthieu Casanova chocolat.mou at gmail.com writes: html body span wicket:id=list label wicket:id=keykey/label span wicket:id=list2 label wicket:id=valueValue/label /span /span /body /html If you use a fragment inside list2, there is no one to absorb the label:

Re: [Wicket-user] Strange Behaviour with AjaxFormCompon entUpdatingBehavior

2007-05-26 Thread Kent Tong
Dipu dipu.seminlal at multicom.co.uk writes: Many thanks for the reply. I tried swithching to 1.2.6 but still i am getting the same error. Are you sure thats fixed in 1.2.6 You're right. It is still there in 1.2.6. I've just reopened the issue.

Re: [Wicket-user] Best way to create large groups of similar tags

2007-05-26 Thread Kent Tong
Thomas Singer wicket at regnis.de writes: Generally, I want to keep the text (including the links to other pages in it) in the HTML files for now. My problem is the creation of these tags without adding a separate component for each one: td align=center img

Re: [Wicket-user] Problem with page parameters

2007-05-26 Thread Kent Tong
neiroman neiroman neiroman at gmail.com writes: I try to access to page with incorrect params set (http://localhost:8080/index/ff/) I've got the error :java.lang.IllegalStateException: URL fragment has unmatched key/value pair: ff/ Can I prevent this error ? What do you want to do

Re: [Wicket-user] ResourceFinder issue

2007-05-26 Thread mchack
Found the problem. I was not actually finding the correct file. I was using the WebApplicationPath class as the resource finder. When adding a path to it's search list, if the folder exists on the file system it will look there instead of the servlet context. mchack wrote: At a loss. I have