Re: Trying to make a singleton out of session

2007-09-03 Thread Cristi Manole
a singleton out of session On 9/3/07, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I'm trying to make WebSession as a singleton available to all wicket applications in order to provide single sign on. That won't work just like that. If you want a wicket session object that is shared amongst all

Dojo maximize button

2007-09-03 Thread Cristi Manole
Hello, I don't know if this is the right place to submit this and if it isn't i'm really sorry... please let me know... When I click to maximize the dojo floating pane (not modal), it moves to the top of the browser's client window and resizes to something less than what it was originally.

Thank you note

2007-09-04 Thread Cristi Manole
I guess it's not that appropriate to write a thank you note on this address, but i just couldn't help myself. What you guys did with this framework is trully amaizing. I've been ... playing with it in the couple of weeks and it fits just like a glove. Not to mention the support the users get

DetachableContactModel question

2007-09-06 Thread Cristi Manole
Hello, In the repeteater samples, the one with ajax capability you have DetachableContactModel. My question is why protected Object load() { // loads contact from the database return getContactsDB().get(id); } does not just return the Contact object? It is already determined by the

Custom rendering

2007-10-15 Thread Cristi Manole
Hello, I was wondering if it is possible to do custom rendering in wicket. What i need is something like a panel in which - if the user is not logged in, there will be a text with in order to sign in please click Sign in and then the link and - if the user is logged in, the same text component

Re: Custom rendering

2007-10-16 Thread Cristi Manole
(); } } }); Similarly for link. just change the action in onClick for example -swaroop On 10/16/07, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I was wondering if it is possible to do custom rendering in wicket. What i need is something like a panel in which

Re: Custom rendering

2007-10-16 Thread Cristi Manole
This is exactly what i was missing (i tried to add them both to page): *Link* l = new *Link*.. l.add(new *Label*.. the label is a child of link... tks a lot Thies! On 10/16/07, Thies Edeling [EMAIL PROTECTED] wrote: see the Link embedded in localized Label/Message? thread Cristi Manole

Re: (OT) Calendar UI?

2007-10-18 Thread Cristi Manole
Great. I for one like it. On 10/18/07, Ivo van Dongen [EMAIL PROTECTED] wrote: Hi, We're working on a wicket based calendar atm. It's not just a UI but rather a whole calendar application. Still, perhaps it can be of use to you. Our UI is currently being redesigned and should be

Re: Double intercept

2007-10-19 Thread Cristi Manole
my mistake. one intercept is enough. i tried to call redirectToInterceptPage() in Sign In and in WhatEver. Tks again. - Original Message - From: Cristi Manole [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Friday, October 19, 2007 10:58 PM Subject: Re: Double intercept I

Store the generated HTML

2007-10-20 Thread Cristi Manole
Hello, I have a BasePage class which has a basicpage.html output. In that page i define a wicket:child to extend it in all the pages. So then I have a page1 class with page1.html which contains the wicket:extend tag. What I was wondering is how I could get the html that wicket generates for

Javascript call on AjaxFallbackDefaultDataTable

2007-10-23 Thread Cristi Manole
Hello, I am wondering how I could make a javascript call each time the AjaxFallbackDefaultDataTable is refreshed. Thanks in advance.

Re: Javascript call on AjaxFallbackDefaultDataTable

2007-10-24 Thread Cristi Manole
: Cristi Manole To: users@wicket.apache.org Sent: Tuesday, October 23, 2007 11:23 PM Subject: Javascript call on AjaxFallbackDefaultDataTable Hello, I am wondering how I could make a javascript call each time the AjaxFallbackDefaultDataTable is refreshed. Thanks in advance.

ModalWindow does not close

2007-10-30 Thread Cristi Manole
closing (by removing the script from html) and it's this javascript: http://www.moneyrulz.com:9080/theworld/javascript/ssm.js [which is called by http://www.moneyrulz.com:9080/theworld/javascript/ssmItems.js] Any ideas why? Tks in advance. Cristi Manole

Dynamically changing CSS

2007-10-30 Thread Cristi Manole
Hello, I have a checkbox in an Ajax table (wrote by Igor). On one column i add a panel which contains a checkbox and a link. When the user selects the checkbox I would like that specific table row to be displayed with a different background color. How am I to do that? I didn't manage to

Re: Dynamically changing CSS

2007-10-30 Thread Cristi Manole
. Cristi Manole wrote: Hello, I have a checkbox in an Ajax table (wrote by Igor). On one column i add a panel which contains a checkbox and a link. When the user selects the checkbox I would like that specific table row to be displayed with a different background color. How am I to do

Re: Dynamically changing CSS

2007-10-31 Thread Cristi Manole
works perfectly. tks a mill. On 10/31/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Wed, 31 Oct 2007, Cristi Manole wrote: Tks a lot for your reply, but how do I do get wicket to change the style color of that speciffic row, exactly? that part I don't know... :( Something like final

Re: Two forms on the same page

2007-11-01 Thread Cristi Manole
[EMAIL PROTECTED] wrote: yes its possible to have two forms in the same page. if you could provide some more details, you are likely to get more helpful response :) Cheers Dipu On 11/1/07, Cristi Manole [EMAIL PROTECTED] wrote: Hello, Simple question :) : Is it possible

Re: Two forms on the same page

2007-11-01 Thread Cristi Manole
this to wicket:id? Martijn On 11/1/07, Cristi Manole [EMAIL PROTECTED] wrote: thanks for your quick answer. here goes the problem details :) !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd; html xmlns=http://www.w3.org/1999/xhtml; head

Re: Two forms on the same page

2007-11-02 Thread Cristi Manole
i think that's what i called imbricated :)) On 11/1/07, Igor Vaynberg [EMAIL PROTECTED] wrote: wait until you discover we support embedded forms, that will really screw with your mind... -igor On 11/1/07, Cristi Manole [EMAIL PROTECTED] wrote: i am so sorry for your time. looked

AjaxCheckBox label appears twice when...

2007-11-05 Thread Cristi Manole
Hello, Any ideas why adding the ajaxcheckbox component to an ajaxrequesttarget would make its label be displayed twice? Is there any other way to update an ajaxcheckbox without adding it to required target? Maybe i'm missing something here. Tks in advance.

Re: AjaxCheckBox label appears twice when...

2007-11-05 Thread Cristi Manole
is was because of this :input type = checkbox wicket:id = togglecheckbox2Toggle Check All/input changed to this : input .../Toggle Check All [although question remains... why would it display toggle check all twice?] On Nov 5, 2007 9:16 PM, Cristi Manole [EMAIL PROTECTED] wrote: Hello

Autocomplete on a modal window

2007-11-09 Thread Cristi Manole
Hello, I am trying to make a modal window with an autocomplete text field using regular wicket classes. The problem is the autocomplete list gets rendered behind the modal window so it is not visible. Is there a way to make it appear on top of it? Tks in advance, Cristi

Re: Hourglass during Ajax

2008-12-05 Thread Cristi Manole
take a look on viel in wicketstuff, if it's still available. i used it, it's nice and easy. On Fri, Dec 5, 2008 at 10:04 AM, Anton Veretennikov [EMAIL PROTECTED] wrote: Hello Wicket users, I would like to know how to show some hourglass in a Wicket way during Ajax so user will not click

Re: Hourglass during Ajax

2008-12-05 Thread Cristi Manole
[but if you need to _make sure_ the user doesn't click anything while the request is processing use the viel] On Fri, Dec 5, 2008 at 10:27 AM, jWeekend [EMAIL PROTECTED]wrote: Anton, See IndicatingAjaxLink (and other, similarly named components) and IndicatingAjaxButton. Regards - Cemal

Re: Wicket presentation at Bulgarian JUG

2009-01-18 Thread Cristi Manole
Yeah, absolutely, good stuff. Congrats. I wish we'd be having one presentation like this in Romania too. Cristi Manole On Sun, Jan 18, 2009 at 2:34 PM, Peter Thomas ptrtho...@gmail.com wrote: On Sun, Jan 18, 2009 at 8:42 PM, Martin Grigorov martin.grigo...@fredhopper.com wrote: Hi all

Re: Wicket presentation at Bulgarian JUG

2009-01-22 Thread Cristi Manole
it in February. I'm happily stuck in Buenos Aires at an Oracle client till the middle of the year, my regular employee. Hope we get another chance though, Cristi Manole On Thu, Jan 22, 2009 at 5:09 AM, Martin Grigorov mcgreg...@e-card.bgwrote: Thanks for the kind words, everyone ! @Cristi

Re: Issue with the FileUploadField

2008-07-09 Thread Cristi Manole
Hello Arun, For the Ajax file upload, check out http://www.dooriented.com/blog/2008/04/23/wicket-ajax-like-file-upload-on-a-modal-window/ Cristi Manole On Wed, Jul 9, 2008 at 5:35 PM, Arun Wagle [EMAIL PROTECTED] wrote: Hello All, I have an issue with the file upload I have a Fileupload

Localization for table component

2008-07-12 Thread Cristi Manole
(with different text messages). My problem is that although I define another properties file with the name of the (modal window) panel, the properties are still read from the page properties file. How can I do what I'm looking for? Tks, Cristi Manole

Re: Localization for table component

2008-07-13 Thread Cristi Manole
:28 PM, Jeremy Thomerson [EMAIL PROTECTED] wrote: In your properties file for the page, try: id-of-table-in-modal-window.datagrid.no-records-found Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Cristi Manole [EMAIL PROTECTED

Re: Making a DataTable Editable

2008-07-15 Thread Cristi Manole
]. Cheers, Cristi Manole On Tue, Jul 15, 2008 at 6:31 AM, Umesh Paliwal [EMAIL PROTECTED] wrote: Hi all, I have a datatable and a button. When I click on the button , the datatable should add a new row at the bottom of the datatable. Could you please guide me how to achieve this. Thanks

DateTextField question

2008-07-15 Thread Cristi Manole
anyone by any chance experienced this or something similar? Any suggestion is highly appreciated :). Tks a bunch, Cristi Manole

Re: Running a huge wicket site(1m + users)

2008-07-15 Thread Cristi Manole
like yours :)) Btw, congrats :) Cristi Manole On Tue, Jul 15, 2008 at 5:49 PM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Yeah, will look into it.. And thanks! :) Erik van Oosten wrote: Nino Saturnino Martinez Vazquez Wael wrote: * Clustering(simple web server

Re: DateTextField question

2008-07-15 Thread Cristi Manole
like to hear if you find a solution.. Cristi Manole wrote: Hello, Any ideas why the calendar does not show on my modal window? -I've seen the examples and I know it's working. -It is not a problem related to z-index *It seems the yui class does not get appended to the tag so clicking

Re: DateTextField question

2008-07-23 Thread Cristi Manole
that created the calendar. This did it. I think the real problem is including yui twice. And I think this was discussed a lot in this mailing list. I don't know if a real solution was found though. Cristi Manole On Wed, Jul 16, 2008 at 5:11 AM, Cristi Manole [EMAIL PROTECTED] wrote: I'm running

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Cristi Manole
, Cristi Manole On Thu, Aug 21, 2008 at 5:43 PM, Wayne Pope [EMAIL PROTECTED] wrote: Hi, Ok following my last email I have some opportunities for the right people. I'm in the middle of creating a new start-up with funding already sorted. We've got a great idea for an online application totally

continuetooriginaldestination in expired page

2008-11-05 Thread Cristi Manole
, log again and correctly be redirected to where he wanted to go. No page expired. How can I have this exact same functionality? Thank you in advance, Cristi Manole

Re: continuetooriginaldestination in expired page

2008-11-06 Thread Cristi Manole
question, but i'd like to understand :). Thank you, Cristi Manole On Thu, Nov 6, 2008 at 1:15 PM, Igor Vaynberg [EMAIL PROTECTED]wrote: you need to store a bookmarkable url that the user should be redirected to. then your pageexpirederrorpage can check for that url and redirect to it instead

Re: continuetooriginaldestination in expired page

2008-11-06 Thread Cristi Manole
, it only knows the non-bookmarkable ajax url that was invoked. -igor On Thu, Nov 6, 2008 at 8:33 AM, Cristi Manole [EMAIL PROTECTED] wrote: thanks for your response. but... why is this handled differently (trying to call some ajax) than requesting a regular page ? (like a bookmarkable page

Firefox 2.0.0.18

2008-11-16 Thread Cristi Manole
experience this? Is there a workaround? Thank you, Cristi Manole

Re: Firefox 2.0.0.18

2008-11-17 Thread Cristi Manole
Hello, In case somebody else hits the same wall, I wanna say that in my case it was because of the RealPlayer Browser Record Plugin. Disabling / uninstalling it on the client machines fixed things. (my applications were used in an intranet). Have a great day, Cristi Manole On Mon, Nov 17, 2008

Question on brix

2009-08-21 Thread Cristi Manole
access to (simple) layout rules. I think Brix was designed exactly for tasks like this and, while I know up front that I could check everything out myself, this takes a great deal of time so I'd like to find out if I'm wasting my time looking more into Brix for this. Thanks a mil, -- Cristi

Re: Communication between applications, one using wicket

2009-04-09 Thread Cristi Manole
Thanks for your feedback, guys. I don't like the idea of both writing to the database directly, because I want the layers separated. I don't think either application should know anything about the other's database. I used Axis2 before, but at the moment i don't see how it can solve my problem -

Request input stream

2009-04-11 Thread Cristi Manole
Hello, Is there a way on a org.apache.wicket.markup.html.WebPage to access the HttpServletRequest? Is it mapped somehow? Or to have access to the input stream of the request the way getResponse() offers to the output stream? Thank you, Cristi Manole

Re: Request input stream

2009-04-11 Thread Cristi Manole
On Sat, Apr 11, 2009 at 4:30 PM, Cristi Manole cristiman...@gmail.com wrote: Hello, Is there a way on a org.apache.wicket.markup.html.WebPage to access the HttpServletRequest? Is it mapped somehow? Or to have access to the input stream of the request the way getResponse() offers

Re: how to setup the @SpringBean for the WebSession?

2009-04-18 Thread Cristi Manole
Hello, Can you try adding this to the WebSession constructor (or before actually using the bean) : InjectorHolder.getInjector().inject(this); I don't know if this is the usual way of doing things, but it works for me. Cristi Manole On Sat, Apr 18, 2009 at 11:28 AM, Khlystov Alexandr

Simple Wicket component available

2009-05-11 Thread Cristi Manole
Hello everybody, Simple Wicket Component - JQuery Accordion Menu available if anybody needs one: http://www.dooriented.com/blog/2009/05/11/wicket-component-jquery-accordion-menu/ -- Cristi Manole Nova Creator Software www.novacreator.com

Any forum (bb) components / applications written using Wicket?

2009-05-24 Thread Cristi Manole
starting from scratch :) I'm on a _very_ tight schedule. Thanks, -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Any forum (bb) components / applications written using Wicket?

2009-05-25 Thread Cristi Manole
. But a starting point.. If you need something more, you could use Jforum it's since it's possible todo a single sign on from your application to theirs.. http://www.jforum.net/ 2009/5/24 Cristi Manole cristiman...@gmail.com: Hello, I'm in the need of a forum (bulletin board) component

Re: wicket logo

2009-05-29 Thread Cristi Manole
somewhere on my site, saying something like Powered by insert Wicked badge here ? If so, where can I find more badges (size, etc) ? Thanks, Cristi Manole On Fri, May 29, 2009 at 5:36 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: On Wed, May 27, 2009 at 8:09 AM, Luther Baker lutherba

Re: wicket and jquery

2009-05-29 Thread Cristi Manole
an idea) : http://www.dooriented.com/blog/2009/05/11/wicket-component-jquery-accordion-menu/ Hope I was able to help you a little bit, Cristi Manole 2009/5/29 Dorothée Giernoth dorothee.giern...@kds-kg.de Hello everyone, i know this might sound a little weird and naive and maybe stupid ... I dunno

Re: wicket and jquery

2009-05-29 Thread Cristi Manole
not bad. do you have a link? Cristi Manole On Fri, May 29, 2009 at 1:39 PM, Stefan Lindner lind...@visionet.de wrote: Currently I'm building a wicket library around jQuery. Drag and drop and resizable are ready for use (with callback handlers in Wicket-Java onDrop, on Resized etc

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Cristi Manole
for js. Why not go the easy way and have some kind of html tag that holds a value like x. Through javascript I change that value like y. I tie that with a wicket:id to read it. If it's x, I have js. Or what i'm saying is not valid? Cristi Manole On Fri, May 29, 2009 at 1:14 PM, Igor Vaynberg

Re: Inmethod DataGrid without column headers?

2009-05-29 Thread Cristi Manole
) { //nothing } doesn't do what you want? Cristi Manole On Fri, May 29, 2009 at 12:37 PM, Marcin Palka marcin.pa...@gmail.comwrote: Hi, Is there any way to render a Inmethod DataGrid without column headers? For wicket's standard DataTable there's a HeaderlessColumn but I haven't been able to find

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Cristi Manole
, without showing anything to the user. And once you have it in a component, I don't care about it, just dumb it to the page. Cristi Manole On Fri, May 29, 2009 at 2:39 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: thats exactly what the redirect page does you can of course implement the check

congrats to inmethod

2009-05-29 Thread Cristi Manole
didn't you guys promote it here? http://www.inmethod.com -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Write XML response

2009-06-09 Thread Cristi Manole
For additional commands, e-mail: users-h...@wicket.apache.org -- Cristi Manole Nova Creator Software www.novacreator.com

Locale

2009-06-10 Thread Cristi Manole
and the English user accesses it first, the Spanish user will see everything in English. We thought that the pages are rendered based on the language settings in the browser dynamically. Are we missing something? Thanks in advance, -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Locale

2009-06-10 Thread Cristi Manole
this? 2009/6/10 Cristi Manole cristiman...@gmail.com: Hello, One of our applications has to be internationalized. For this we use the out of the box Wicket solution (1.3.5) We don't set the locale anywhere. The application is deployed on Tomcat. When testing, we found out that the first

Re: Locale

2009-06-10 Thread Cristi Manole
es ar.. Im just wondering if its browser trouble... Which IE are it? 2009/6/10 Cristi Manole cristiman...@gmail.com: Hello, We have properties as xml. Default is English. But we provide for instance the translation for Argentinean Spanish: SomePage.html SomePage.xml

Re: Wicket generics?

2009-06-12 Thread Cristi Manole
12, 2009 at 6:06 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: ... -- Cristi Manole Nova Creator Software www.novacreator.com

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Cristi Manole
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Cristi Manole Nova Creator Software www.novacreator.com

Re: tinymce textarea in a modal window not letting to type

2009-07-03 Thread Cristi Manole
help me resolve this -- Cristi Manole Nova Creator Software www.novacreator.com

Re: tinymce textarea in a modal window not letting to type

2009-07-04 Thread Cristi Manole
Fixed Just add the tinyMCE again after the modal is displayed target.appendJavascript(tinyMCE.execCommand('mceRemoveControl',false,' + ... target.appendJavascript(tinyMCE.execCommand('mceAddControl',false,' + ... On Sat, Jul 4, 2009 at 4:01 AM, Cristi Manole cristiman...@gmail.comwrote: Hey

Adding javascript after tab clicked

2009-08-03 Thread Cristi Manole
? Thanks, -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Adding javascript after tab clicked

2009-08-03 Thread Cristi Manole
for this: AjaxRequestTarget #appendJavascript(javascript) ? Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail unless it's really necessary On Mon, Aug 3, 2009 at 2:11 PM, Cristi Manole

Re: Adding javascript after tab clicked

2009-08-03 Thread Cristi Manole
assume you are using an overriden AjaxTabbedPanel#onAjaxUpdate. Regards, Erik. Cristi Manole wrote: Hello, Tks for the reply. Yes, I'm using that, the problem is it gets called before the rendering finishes. I need something that runs after it got rendered. Any ideas? Cristi On Mon

Re: Adding javascript after tab clicked

2009-08-03 Thread Cristi Manole
I used JQuery $(document).*ready*(function(){ // Your code here... }); and it works now. Don't know why OOB Wicket doesn't work in this case. Thks. On Mon, Aug 3, 2009 at 2:08 PM, Cristi Manole cristiman...@gmail.comwrote: I think you're right. Maybe I need smth like a dom ready thing

Re: img src= ... tags are truely evil!

2009-08-03 Thread Cristi Manole
Professional Wicket Training Consulting http://www.systemmobile.com -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Alternate rows with different color

2009-08-04 Thread Cristi Manole
-- Cristi Manole Nova Creator Software www.novacreator.com

Re: Alternate rows with different color

2009-08-04 Thread Cristi Manole
. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Alternate rows with different color

2009-08-04 Thread Cristi Manole
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Alternate rows with different color

2009-08-04 Thread Cristi Manole
:) Now runlog.getId() does not return alternating odd/even numbers so will need to figure out what might ;) Is there anything in the model that might provide that information ? -Arun Cristi Manole wrote: you can always just wrap it... item.add(new AttributeModifier(class

Re: Alternate rows with different color

2009-08-04 Thread Cristi Manole
;) Is there anything in the model that might provide that information ? -Arun Cristi Manole wrote: you can always just wrap it... item.add(new AttributeModifier(class, runlog.getId() % 2 == 0 ? new Model(list-line-odd) : new Model(list-line-event))); note that you'll

Re: Just launched - www.onmydoorstep.com.au

2010-05-17 Thread Cristi Manole
...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-29 Thread Cristi Manole
For additional commands, e-mail: users-h...@wicket.apache.org -- Cristi Manole Nova Creator Software www.novacreator.com

Re: Just 100K per session? That would be my dream come true! (Anyone here who has tuned session size before?)

2011-03-01 Thread Cristi Manole
yup, nice read. tks for sharing onComponentTag saved my arse too in the past. Probably that's why I don't think it's that ugly anymore :) On Tue, Mar 1, 2011 at 2:41 PM, robert.mcguinness robert.mcguinness@gmail.com wrote: Per, Awesome summary. Much obliged. Rob -- View this

Re: Just 100K per session? That would be my dream come true! (Anyone here who has tuned session size before?)

2011-03-01 Thread Cristi Manole
of this information. -- *Cristi Manole*, PMP Dream Leader +40 (721) 437 497 cristiman...@novacreator.com Nova Creator Software www.novacreator.com

Re: Apache Wicket is a Flawed Framework

2011-11-19 Thread Cristi Manole
I think all of us were frustrated a lot more than once during our career and decided to rant about it. I do think Eric's comments were actually made to be contradicted by the experienced people here so that he could learn more about Wicket and so take something out of it. It showed passion for the

Re: wicket success stories

2007-11-27 Thread Cristi Manole
Hello, the link you posted doesn't work for me... but we can't find the iWeb page you've requested. It's possible that: · The address was entered incorrectly. Check your spelling and try again. · The .Mac member of this name has either created a page and removed it

Applet problem

2008-02-08 Thread Cristi Manole
in this situation? I guess code is still com.someapplication.somepackage.AppletClass I still get com.someapplication.somepackage.AppletClass not found exception. Any ideas how the applet tag should be written? Thank you very much in advance, Cristi Manole

Re: Autocomplete on a modal window

2008-02-08 Thread Cristi Manole
though the text field has moved. Have not found workable solution for that issue either related to autocompletes in modals. Dmitry Kandalov wrote: Cristi Manole wrote: thank you both for your answers, but there are still problems... I already tried what Don suggested

Re: Applet problem

2008-02-09 Thread Cristi Manole
I know it works that way but I didn't want to deploy applets separately, but what a hell i can leave with that. Tks a lot :) On Feb 8, 2008 6:01 PM, Maeder Thomas [EMAIL PROTECTED] wrote: snip ... How should i set the codebase in this situation? I guess code is still

Odd behaviour after setGatherExtendedBrowserInfo(true)

2008-02-13 Thread Cristi Manole
Hello, I wanned to be able to get the browser client size, so I followed the examples and put getRequestCycleSettings().setGatherExtendedBrowserInfo(true) in my Application init method. I can get the parameters without any problem, but now on the login page, after I submit, for a few seconds I

Prevent Ajax from expiring

2008-03-11 Thread Cristi Manole
Hello, I'm experiencing a strange behavior from regular ajax components (those included in wicket like, for example, the tree component) : on a page containing one (or more) such components and using it, after some time it will stop working, meaning it will not do anything (for example clicking

Re: Prevent Ajax from expiring

2008-03-11 Thread Cristi Manole
it expired way earlier than that.. .that's why i figured it was something inside wicket... any ideas? Cristi On Tue, Mar 11, 2008 at 8:39 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: session time out is controlled in web.xml -igor On Tue, Mar 11, 2008 at 11:21 AM, Cristi Manole [EMAIL

Re: Wicket ModalWindow vs Other

2008-03-18 Thread Cristi Manole
Hi, I'm also using the ModalWindow, with some very small enhancements. Regards, Cristi Manole On Mon, Mar 17, 2008 at 10:39 PM, jeredm [EMAIL PROTECTED] wrote: I am using the ModalWindow. mnwicket wrote: Just out of curiosity, are most people using the ModalWindow provided

Multiple wicket:child/ panels like behaviour

2008-03-20 Thread Cristi Manole
page. For only one panel, I can use wicket:child tag. If I need more than one panel inserted, how do I do that? Thanks, Cristi Manole

Unable to display modal windows

2008-03-20 Thread Cristi Manole
Hello, I just upgraded to 1.3.2 from 1.3.1. Also, i don't know if it makes a difference, spring from 2.0.6 to 2.5.2. Now, when i try to display a modal window just like I used to, it fails. All the code I modified is for the constructor of the authwebsess which got depricated public

Getting client's date and time

2008-03-21 Thread Cristi Manole
Hello, I'm looking for a quick solution to get the client's date and time in a wicket modal, without a post I can have a wicket component, like a label and I can use js functions to set it in a span for example. The question is... how can i read that value I set in js in wicket? Is it

Re: Getting client's date and time

2008-03-21 Thread Cristi Manole
, James Carman [EMAIL PROTECTED] wrote: On 3/21/08, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I'm looking for a quick solution to get the client's date and time in a wicket modal, without a post I can have a wicket component, like a label and I can use js functions to set

Re: Getting client's date and time

2008-03-21 Thread Cristi Manole
: getRequestCycleSettings().setGatherExtendedBrowserInfo(true); Thanks again, James :) Cristi On Fri, Mar 21, 2008 at 2:32 PM, James Carman [EMAIL PROTECTED] wrote: On 3/21/08, James Carman [EMAIL PROTECTED] wrote: On 3/21/08, Cristi Manole [EMAIL PROTECTED] wrote: yes, i can, but how can i read

Re: Unable to display modal windows

2008-03-22 Thread Cristi Manole
/javascript/modal.js modal.js shouldn't be in there i think? Or did you extract it somehow? On Thu, Mar 20, 2008 at 12:18 PM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I just upgraded to 1.3.2 from 1.3.1. Also, i don't know if it makes a difference, spring from 2.0.6 to 2.5.2

Re: Dynamic link wicket:id

2008-03-29 Thread Cristi Manole
this... more dynamic? Tks, Cristi Manole On Fri, Mar 28, 2008 at 7:29 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: what is the usecase? -igor On Fri, Mar 28, 2008 at 10:08 AM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, Is there a possibility dynamically link a wicket:id to a java

I cannot understand why would a panel have the getparent null

2008-04-03 Thread Cristi Manole
a org.apache.wicket.WicketRuntimeException because TodayPanel's getParent() returns null. Question is: why?... i could understand it if it were consistent... meaning it will get me null on the first login too. I tested in Firefox tabs. Tks in advance, Cristi Manole

IE 6 7 Ajax Refresh Issue

2008-04-04 Thread Cristi Manole
will be updated correctly. Any ideas what's wrong with IE and how i could update the dropdowns correctly? I use just setEnabled(true/false) and target.addComponent(...). Thanks, Cristi Manole

Re: Default selection in radio group?

2008-04-04 Thread Cristi Manole
(selectthis))); radioGroup.add(someradio2Radio = new Radio(someradio2radio, new Model())); radioGroup.add(someradio3Radio = new Radio(someradio3radio, new Model())); I hope this helps, Cristi Manole On Fri, Apr 4, 2008 at 3:01 PM, Hoover, William [EMAIL PROTECTED] wrote: see http://cwiki.apache.org

Re: IE 6 7 Ajax Refresh Issue

2008-04-04 Thread Cristi Manole
did is change onchange with *onclick* and now it works in both. I think that FF handles onchange for the *newly selected item* while IE7 does it for the *element which gets deselected*. I'm not 100% sure, anyways, maybe somebody can say for certain. Thanks Igor, Cristi Manole On Fri, Apr 4, 2008

Promotion

2008-04-06 Thread Cristi Manole
will be added soon. Of course, your feedback would be more than welcome. Thanks, Cristi Manole

Re: Promotion

2008-04-07 Thread Cristi Manole
Thanks, Martin :)) On Sun, Apr 6, 2008 at 10:25 PM, Martin Grigorov [EMAIL PROTECTED] wrote: Congrats Cristi, I like the styling of the sign in modal window! Really cool (self-documenting) ids ;-) div id=mainshit On Sun, 2008-04-06 at 21:03 +0300, Cristi Manole wrote: Hi, Please

Modal Window onSubmit prevent closing

2008-04-10 Thread Cristi Manole
cannot use .setDefaultFormProcessing(false)); (am I wrong?) Whenever I press upload, it will ask me if I want to continue and if I press yes, it will close my modal window. I want to stay on that page for as long as the upload takes place. Thanks, Cristi Manole

  1   2   >