Re: [Wicket-user] Setting up project - images and stylesheets

2007-07-18 Thread Andrew Klochkov
ce stateless is not so easy. -- Andrew Klochkov - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get

Re: [Wicket-user] stateless forms don't work on mounted pages

2007-07-13 Thread Andrew Klochkov
Eelco Hillenius wrote: > On 7/13/07, Andrew Klochkov <[EMAIL PROTECTED]> wrote: > >> I have stateless login form on every page of the site. But it works only >> on the home page where the form "action" param looks like this: >> >> ?wicket:bo

[Wicket-user] stateless forms don't work on mounted pages

2007-07-13 Thread Andrew Klochkov
t throws PageExpiresException :-( The url is: page_mount_point?wicket:interface=%3A0%3Aheader%3AloginMenu%3AloginForm%3A%3AIFormSubmitListener%3A%3A -- Andrew Klochkov - This SF.net email is sponsored by DB2 Express Download DB2 Express

Re: [Wicket-user] stateless ajax behavior

2007-07-13 Thread Andrew Klochkov
them could be useful on stateless pages. In our case we need auto-complete fields and ajax validators in stateless forms, reloading some small part of a big portal page etc etc. -- Andrew Klochkov - This SF.net email is sp

[Wicket-user] stateless ajax behavior

2007-07-13 Thread Andrew Klochkov
esponse 3. The look for a component listener using AbstractRequestCycleProcessor.resolveListenerInterfaceTarget 4. Call the listener So could the support for stateless ajax be included in the wicket core? -- Andrew Klochkov -

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-28 Thread Andrew Klochkov
Matej Knopp wrote: > You can try subclassing HttpServletRequest and filter the headers. > > I'd try to add my headers after (not before) the following code. filterChain.doFilter(servletRequest, servletResponse); -- A

Re: [Wicket-user] Customizing ModalWindow CSS

2007-06-27 Thread Andrew Klochkov
search through the mail-list, this topic was discussed in details Tauren Mills wrote: > What is the best way to customize the CSS styles of a ModalWindow in > 1.2.6? > -- Andrew Klochkov - This SF.net

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-27 Thread Andrew Klochkov
ache. It has customizable rules and I guess it can analyze headers. -- Andrew Klochkov - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limit

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-19 Thread Andrew Klochkov
Francisco Diaz Trepat - gmail wrote: > Nie magu panimayet stonibuts. :-) Russian Wicket Users Group - interested? > > cannot understand anything. > f(t) what do you mean? -- Andrew Klochkov - This SF.net email

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-18 Thread Andrew Klochkov
} >> >> > > Yeah, that's a bit expensive. I'm sure someone can optimize that if > there's a JIRA issue for it :) > http://issues.apache.org/jira/browse/WICKET-672 :-) -- Andrew Klochkov --

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-18 Thread Andrew Klochkov
t;> can dump http session contents into a file in the form of object tree, >> in fact it's modified org.apache.wicket.util.io.SerializableChecker. >> > > That sounds cool. Can you please, please, please contribute that to > http://issues.apac

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-18 Thread Andrew Klochkov
> > - > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of you

Re: [Wicket-user] BodyContainer gone?

2007-06-15 Thread Andrew Klochkov
Thanks! Works like a charm! Igor Vaynberg wrote: > iheadercontributor works on component level, since both panel and > webpage are components it should work. > > http://cwiki.apache.org/WICKET/migrate-13.html > > -igor > > > On 6/15/07, *Andrew Klochkov* <[EMA

Re: [Wicket-user] BodyContainer gone?

2007-06-15 Thread Andrew Klochkov
Igor, I saw your comment in svn about panels and IHeaderContributor, but is it OK for a WebPage to implement it? Sorry but where can I find migration notes? Can't find them in svn. Igor Vaynberg wrote: > see migration notes, mainly iheadercontributor > > -igor > > > On 6/

[Wicket-user] BodyContainer gone?

2007-06-15 Thread Andrew Klochkov
ite it in the markup because the page is extended from the parent page and this child page doesn't have body tag in the markup at all. What is the new right way for doing such things?? -- Andrew Klochkov - This SF.net

Re: [Wicket-user] solved

2007-05-17 Thread Andrew Klochkov
Thomas R. Corbin wrote: > On Thursday 17 May 2007 5:00 am, Andrew Klochkov escreveu: > >> Andrew Klochkov wrote: >> >>> What's the best way to add css class to a DataTable column? >>> The only way I see is to extend Panel and use it as a headers

[Wicket-user] solved

2007-05-17 Thread Andrew Klochkov
Andrew Klochkov wrote: > What's the best way to add css class to a DataTable column? > The only way I see is to extend Panel and use it as a headers toolbar, > but I'd like to have all the functionality the HeadersToolbar already has! > > I can add class attr to the ce

[Wicket-user] css class for DataTable column?

2007-05-17 Thread Andrew Klochkov
What's the best way to add css class to a DataTable column? The only way I see is to extend Panel and use it as a headers toolbar, but I'd like to have all the functionality the HeadersToolbar already has! -- Andre

[Wicket-user] why AbstractRestartResponseException is abstract?

2007-04-24 Thread Andrew Klochkov
I want to start responce step immediately and I have to use the following strange code: throw new AbstractRestartResponseException() { }; Why is this class abstract? -- Andrew Klochkov - This SF.net email is

Re: [Wicket-user] treetable with table markup

2007-04-13 Thread Andrew Klochkov
Matej Knopp wrote: > Hi, it's is fixed in latest 1.x branch. Can you check if it works for you? > > Hi! Yep, it works, thanks a lot! Wicket forever!! -- Andrew Klochkov - Take Surveys. Earn Cash. Influence

Re: [Wicket-user] treetable with table markup

2007-04-13 Thread Andrew Klochkov
; tempDiv.innerHTML = ''; element.parentNode.replaceChild(tempDiv.getElementsByTagName(tn).item(0), element); As I see it updates the first TR only and ignores the others :-( Please help to fix/workaround this, I really need it to be done ASAP. -- Andrew Klochkov --

Re: [Wicket-user] treetable with table markup

2007-04-11 Thread Andrew Klochkov
Andrew Klochkov wrote: > Matej Knopp wrote: > >> Second question, I assume you want to show inserted rows without >> refreshing the entire listview? Well, this is possible to certain >> degree, but requres some javacsript foo. You need to create the DOM >> e

Re: [Wicket-user] treetable with table markup

2007-04-11 Thread Andrew Klochkov
get.respond(AjaxRequestTarget.java:476) at wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:102) I looked through AbstractTree.updateTree code, but didn't find any special magic to insert new rows.. Please help! -- Andrew Klochkov --

[Wicket-user] treetable with table markup

2007-04-10 Thread Andrew Klochkov
TreeTable and change its markup or smth else? And the second question - is it possible to insert rows in a ListView via ajax? Thnks -- Andrew Klochkov - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net&#

Re: [Wicket-user] wicket-contrib-datepicker is broken in v. 1.3

2007-03-26 Thread Andrew Klochkov
Martijn Dashorst wrote: > On 3/26/07, Andrew Klochkov <[EMAIL PROTECTED]> wrote: > >> wicket-contrib-datepicker is broken due to changes in models. Who is >> responsible for it? The fix is quite simple, I can create a patch. >> > > Can you do so, and

[Wicket-user] wicket-contrib-datepicker is broken in v. 1.3

2007-03-26 Thread Andrew Klochkov
wicket-contrib-datepicker is broken due to changes in models. Who is responsible for it? The fix is quite simple, I can create a patch. -- Andrew Klochkov - Take Surveys. Earn Cash. Influence the Future of IT Join

[Wicket-user] ajax errors handling

2007-03-23 Thread Andrew Klochkov
Is there any way to control ajax errors handling? For example, if the session is expired wicket returns empty response for ajax requests (WebRequestCycleProcessor.resolve() returns an EmptyRequestTarget instance). -- Andrew Klochkov

Re: [Wicket-user] invalid quotes escaping in event handlers scripts

2007-02-23 Thread Andrew Klochkov
I updated wicket and now it generates ""e;" instead of \" - it works. Looks like it was fixed recently? Igor Vaynberg wrote: > how do you escape quotes in javascript then if not " \" " ? > > -igor > > > On 2/22/07, *Andrew Klochkov* <

Re: [Wicket-user] invalid quotes escaping in event handlers scripts

2007-02-22 Thread Andrew Klochkov
BTW it's my second post about incorrect quotes escaping and the first one was more than two months ago :-( Andrew Klochkov wrote: > I'm trying to open a modal window right after opening my WebPage. So in > the page constructor I have this code: > >

[Wicket-user] invalid quotes escaping in event handlers scripts

2007-02-22 Thread Andrew Klochkov
e in the brower: And it doesn't work because of invalid qoutes escaping (\"). How can I avoid/fix it? -- Andrew Klochkov - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay pane

Re: [Wicket-user] How to do simple authentication with Wicket

2007-02-22 Thread Andrew Klochkov
;CID=DEVDEV > > > ___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > -- Andrew Kl

[Wicket-user] Can a model be detachable AND compound?

2007-02-22 Thread Andrew Klochkov
I agree that wicket models are not easy to understand especially compound and "bound compound" models. And the thing I wanted to have is detachable compound model set to the page which should be used by all components of the page. Is it possible? -- Andre

[Wicket-user] ExceptionErrorPage throws java.lang.NoClassDefFoundError

2007-02-21 Thread Andrew Klochkov
quest(RequestCycle.java:456) at wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:263) at wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:126) -- Andrew Klochkov - Take Surveys. Earn Cash. Influence the Future

Re: [Wicket-user] Help wanted for testing custom serialization (Wicket 1.3)

2007-02-19 Thread Andrew Klochkov
___ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > -- Andrew Klochkov - Take Surveys. Earn

Re: [Wicket-user] second level cache - why not to use ehcache

2007-02-15 Thread Andrew Klochkov
lly needed. And also there threading issues which are solved and tested in ehcache. Matej, can you share you ehcache impl? -- Andrew Klochkov - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net&#x

[Wicket-user] second level cache - why not to use ehcache

2007-02-14 Thread Andrew Klochkov
I looked at pages second level cache implementation in 1.3 and wonder why not to use ehcache instead? It's much more intelligent, configurable and performant. For example, it can have part of cache in memory while swapping less frequently used pages on the disk. -- Andrew Klo

Re: [Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Andrew Klochkov
's better to use container functionality, so using filter is the right way to go. -- Andrew Klochkov - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated

Re: [Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Andrew Klochkov
Martijn Dashorst wrote: > Use the wicket filter instead. > > This completely solved the problem! Thanks a lot! -- Andrew Klochkov - Using Tomcat but need to do more? Need to support web services, security?

Re: [Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Andrew Klochkov
gt; As I said we can't do redirect on the main page, the customer just doesn't want it. Using servlet filter instead of servlet solves our problems. -- Andrew Klochkov - Using Tomcat but need to do more? Need to

Re: [Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Andrew Klochkov
ou can try to use HttpSessionStore to see if it makes serving > pages faster > > (in your application class > protected ISessionStore newSessionStore() { > return new HttpSessionStore(); > } > ) > > -Matej > > Andrew Klochko

Re: [Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Andrew Klochkov
forgot to mention the version - we use wicket 1.3 Andrew Klochkov wrote: > Hi > > Recently we launched some simple webapp written in wicket, but > performance is obviously low. Even simple pages are being loaded too slow. > I tried to dig into it using profiler and found out th

[Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Andrew Klochkov
m and it takes to long time to get them from jars. -- Andrew Klochkov - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job e

Re: [Wicket-user] ui framework choice

2007-01-30 Thread Andrew Klochkov
Scott Swank wrote: > "The stylesheet is not very simple though." -- Yup, that's that stage > we're > at. :) > It's much easier to change modal window markup by overriding javascript function Wicket.W

Re: [Wicket-user] Russian community

2006-12-20 Thread Andrew Klochkov
I'm russian but IMHO wicket community is not large enough to divide it into local parts. Konstantin wrote: > Are there russian/ukrainian speaking people here ? > It would be great to form a community if such is not already somewhere there > :-) > --

Re: [Wicket-user] Fwd: Firefox and ModalWindow

2006-12-18 Thread Andrew Klochkov
ugin (got the same t = null error, as > previous posted) but that did not help. > > I used wicket 1.2.3, tried to rollback to 1.2.2 but no success. > > > I have attached wicket quickstart , modified with a modalwindow. > > Regards > Flemming -- Andrew Klochkov

Re: [Wicket-user] wicket-scriptaculous release

2006-12-12 Thread Andrew Klochkov
get sources/javadocs? Does some sort of demo exist? -- Andrew Klochkov - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions o

Re: [Wicket-user] javascript handlers in html - quotes escaping

2006-12-08 Thread Andrew Klochkov
ile which uses these variables, so wicket replaces variables with actual IDs in runtime. > Small code snip on howto workaround the path generated by wicket: > Thanks for this one. It's not very clean solution bu

[Wicket-user] javascript handlers in html - quotes escaping

2006-12-08 Thread Andrew Klochkov
').style.display='none'; " + "document.getElementById('" + colorPreview.getMarkupId() + "').style.background='#" + color + "';"; } }, ";")); Is there any way to workaround this problems? May

Re: [Wicket-user] i18n in errors from standard validators

2006-11-22 Thread Andrew Klochkov
#x27; Igor Vaynberg wrote: > field.setLabel("localized.field"); > this shouldnt even compile since setLabel takes an IModel > > -igor > > > On 11/21/06, *Andrew Klochkov* < [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > Please

[Wicket-user] little changes in markup - only via component inheritance?

2006-11-02 Thread Andrew Klochkov
entered while others right aligned etc. How can I do it? I doubt I should write my own AjaxFallbackDefaultDataTable class, which creates it's own toolbars (which inherit from AjaxFallbackDefaultDataTable and AjaxFallbackHeadersToolbar). Is there an easier