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: 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: 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 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

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: 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

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: 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

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: [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: 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

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: 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

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: 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

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

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

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

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: 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 -

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: 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: 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: 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

Firefox 2.0.0.18

2008-11-16 Thread Cristi Manole
experience this? Is there a workaround? Thank you, 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

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: 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

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: 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: 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

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: 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

Panel switching and back button

2008-06-26 Thread Cristi Manole
Hello, I am implementing navigation through my application by switching panels. When the user presses the back button, I'd like to show the previously displayed panel. Is this possible? Thanks, Cristi Manole

Re: Panel switching and back button

2008-06-26 Thread Cristi Manole
yes, with Ajax On Thu, Jun 26, 2008 at 2:15 PM, Thomas Mäder [EMAIL PROTECTED] wrote: I would expect that to happen by default. Replacing a panel should create a new page version which should change the Page URL. Are you using AJAX? Thomas On Thu, Jun 26, 2008 at 10:07 AM, Cristi Manole

Re: Panel switching and back button

2008-06-26 Thread Cristi Manole
the IFrame 3) now manipulate the browser history to point to the currect URL for the current page version Thomas On Thu, Jun 26, 2008 at 3:08 PM, Cristi Manole [EMAIL PROTECTED] wrote: yes, I know, I'm trying to figure out a solution myself. I was sure though somebody else ran

Re: Cannot get rid of these error and warnings

2008-06-18 Thread Cristi Manole
I'm using inmethod's GREAT grid component. Inside a column I have a drop down which does an ajax form submit when changed. I didn't have time to take another look on this yet, but I will pretty soon and post what I did here. Thanks for all your support, Cristi Manole On Wed, Jun 18, 2008 at 5

Re: Cannot get rid of these error and warnings

2008-06-15 Thread Cristi Manole
the type of the model, why is that necessary? Couldn't Wicket determine that? At least in most of the cases? Thanks, Cristi Manole On Sat, Jun 14, 2008 at 11:18 PM, Maurice Marrink [EMAIL PROTECTED] wrote: On Fri, Jun 13, 2008 at 12:31 PM, Cristi Manole [EMAIL PROTECTED] wrote: [1] I get

Cannot get rid of these error and warnings

2008-06-13 Thread Cristi Manole
= false]], please set the type yourself. How can I set this myself? I never got this warning before 1.3.3. Thanks, Cristi Manole

AutoCompleteTextField behaviors and validator

2008-06-09 Thread Cristi Manole
the validators inside de onUpdate, all will work just fine until there's an error and then the behavior will again not work. How can I make all three work as required? Why don't they? Thank you, Cristi Manole

ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
Hello, I've searched the archives and it seams I'm looking exactly for this : https://issues.apache.org/jira/browse/WICKET-1368 Is there any workaround I could try? Tks, Cristi Manole

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
yup. didn't work for me. did it work for you? On Sun, May 25, 2008 at 4:10 PM, James Carman [EMAIL PROTECTED] wrote: Have you tried using an on close handler to the window to do the redirect? On Sun, May 25, 2008 at 5:32 AM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I've searched

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
i'll try that. tks! Cristi Manole On Sun, May 25, 2008 at 5:22 PM, James Carman [EMAIL PROTECTED] wrote: I got it to work for me. In my ajax button on my popup window contents, I close the window. Then, in the on window close handler, I do the redirect. On Sun, May 25, 2008 at 10:19 AM

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
, James Carman [EMAIL PROTECTED] wrote: Have you tried using an on close handler to the window to do the redirect? On Sun, May 25, 2008 at 5:32 AM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I've searched the archives and it seams I'm looking exactly for this : https

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
it asks the user for the confirmation (like pressing F5 when the modal is being displayed) maybe i was not certain, it iworks/i but not straight fw. On Sun, May 25, 2008 at 8:01 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: what does it do? -igor On Sun, May 25, 2008 at 9:58 AM, Cristi Manole

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
where certain = clear On Sun, May 25, 2008 at 8:19 PM, Cristi Manole [EMAIL PROTECTED] wrote: it asks the user for the confirmation (like pressing F5 when the modal is being displayed) maybe i was not certain, it iworks/i but not straight fw. On Sun, May 25, 2008 at 8:01 PM, Igor Vaynberg

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
of window.location? never really tried to do this myself, just throwing out guesses -igor On Sun, May 25, 2008 at 10:19 AM, Cristi Manole [EMAIL PROTECTED] wrote: where certain = clear On Sun, May 25, 2008 at 8:19 PM, Cristi Manole [EMAIL PROTECTED] wrote: it asks the user for the confirmation

Wicket properties file

2008-05-25 Thread Cristi Manole
proporties (something like override) ? I need some kind of reset... something. I hope I made myself clear :) It's way into the night here :) Tks, Cristi Manole

Re: Wicket properties file

2008-05-25 Thread Cristi Manole
at 1:01 AM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I have a page with a properties file associated with it and a panel with another properties file. When i display the panel on some page (with no properties), wicket works as expected : it loads the properties from the properties file

Deployment vs development session

2008-05-20 Thread Cristi Manole
- a session object was created for each client. Is this how it's suppose to work in dev mode? I'm using wicket 1.3.2. Thank you, Cristi Manole

Re: Deployment vs development session

2008-05-20 Thread Cristi Manole
credential. *I really think I'm doing something stupid* cause this is the first time I get this and I've been developing quite a few web apps in wicket (then again i rarely develop in dev mode). Tks, Cristi Manole On Tue, May 20, 2008 at 5:23 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: On Tue, May 20

AutoCompleteTextField question

2008-05-20 Thread Cristi Manole
(telefon.getModelObjectAsString().substring(0, 10)); target.addComponent(phone); } }); but i'm sure there must be another, nicer way. Tks, Cristi Manole

Re: Deployment vs development session

2008-05-20 Thread Cristi Manole
, 2008 at 7:59 AM, Cristi Manole [EMAIL PROTECTED] wrote: well, i figured it was just me... so I quit bothering you guys with something that's ... just me... :) i'm using tomcat, no clustering. this is my websession class: package com.fx.core; import

Re: Forum?

2008-05-20 Thread Cristi Manole
I am interested in helping out. And I am sure others are too. I hope you keep going with this idea. Cristi Manole On Tue, May 20, 2008 at 11:26 PM, Peter Ertl [EMAIL PROTECTED] wrote: Don't forget to make it language independent so it runs on C#, Scala, Fortran or Algol 68 as well :-) Am

Re: Scheduler in wicket

2008-05-15 Thread Cristi Manole
quartz, definitely... do look into spring + quartz. excellent control. Cristi On Thu, May 15, 2008 at 1:51 PM, Jan Kriesten [EMAIL PROTECTED] wrote: hi, I am planning to use quartz, but before starting to integrate it in my wicket's app i would like to know if anybody have used it or

Re: Confirmation box with ok and cancel buttons in IFrame...

2008-05-06 Thread Cristi Manole
) or pure and simple some javascript appended to the ajax target. Cristi Manole On Tue, May 6, 2008 at 8:50 AM, john_wicket [EMAIL PROTECTED] wrote: I'm using iframe, in that i am using panels... the panel contains list of records..the user can delete the record .. after click on the record

Re: Modal window and height

2008-05-04 Thread Cristi Manole
For me it works just by using setinitialwidth/height... doesn't it work for you too? Cristi Manole On Sat, May 3, 2008 at 3:14 PM, Mathias P.W Nilsson [EMAIL PROTECTED] wrote: The java doc for the modal windows says * licode[EMAIL PROTECTED] #setResizable(boolean)}/code specifies

Re: Modal window and height

2008-05-04 Thread Cristi Manole
even if you don't use setcookiename at all? try not setting anything related to a cookie... this is how i do it and it works: reportModalWindow = new ModalWindow(reportWindow); reportModalWindow.setInitialHeight(410); reportModalWindow.setInitialWidth(750);

Re: After Upload File via ModalWindow and IFrame, the TreeModels UserOject Attributes are null

2008-04-30 Thread Cristi Manole
I don't think it's because of the iFrame. If you take it out of the modal page content, will that stop messing up the linktree? can you provide more code? On Mon, Apr 28, 2008 at 2:15 PM, geke [EMAIL PROTECTED] wrote: Hello, I´m upload a file via a modal window and an iFrame. It`s described

Re: Modal Window not opening the second time

2008-04-29 Thread Cristi Manole
-response/ajax-response *INFO: *Response parsed. Now invoking steps... *INFO: *Response processed successfully. *INFO: *Invoking post-call handler(s)... *INFO: *Calling focus on linkOpen2 *INFO: *focus removed from linkOpen2 Cristi Manole On Tue, Apr 29, 2008 at 9:51 AM, Johan Compagner [EMAIL

Re: Modal Window not opening the second time

2008-04-29 Thread Cristi Manole
Exactly, you always create a new panel for content. Can you reuse the ManageWeightPanel object? Cristi Manole On Tue, Apr 29, 2008 at 11:24 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Im doing it like this: AjaxLink popupLink = new AjaxLink(manageWeightPop

Re: Modal Window not opening the second time

2008-04-29 Thread Cristi Manole
the modalwindow? Because in my application the window needs to be opened many times, and I thought it would be better to reuse the same window multiple times. Or has that no affect to the memory-usage? Cristi Manole wrote: I am 99% certain that if you change your code

Re: What is the best way to create layouts in Wicket?

2008-04-28 Thread Cristi Manole
To answer your second point : -NO, at this point you cannot define multiple wicket:child anywhere. Try using fragments or generic panels (i don't know which would be better for you). Replace a generic panel with the specific panel you need. Cristi Manole On Mon, Apr 28, 2008 at 11:34 AM, Martin

Re: Anyone seen this Firefox bug: tabs stop working after ajax update

2008-04-28 Thread Cristi Manole
I managed to get it working after clicking the navigator, as you need it to. Hope this helps, Cristi Manole On Mon, Apr 28, 2008 at 9:18 AM, Matthew Young [EMAIL PROTECTED] wrote: I have a tabpanel. After ajax update to a div inside the tab-panel, the tab stop working: rollover hover doesn't

Re: Modal Window not opening the second time

2008-04-28 Thread Cristi Manole
() { public Page createPage() { return new MyChooser(modal); } } * it will work. Try it. Cristi Manole On Mon, Apr 28, 2008 at 1:07 PM, Marieke Vandamme [EMAIL PROTECTED] wrote: Hello, can't anyone help me with this problem? If I need to code it differently, please

Re: Anchor Links

2008-04-28 Thread Cristi Manole
does your descriptionLabel start with #? On Mon, Apr 28, 2008 at 11:17 AM, tbt [EMAIL PROTECTED] wrote: Hi I'm new to wicket and I have a listview which dynamically creates links. I'm using the following code to anchor links so that when the user clicks a link, it will be directed to the

Re: Problems with FileUploadField

2008-04-24 Thread Cristi Manole
I really don't think it can be done w/o an iframe. @Fabien - here's the (simple) code: http://www.dooriented.com/blog/2008/04/ Cristi Manole On Wed, Apr 23, 2008 at 5:39 PM, Rüdiger Schulz [EMAIL PROTECTED] wrote: Hello Michael, Could you share this fileupload.js? I'd bet it creates some

Re: How to set the path for a uploadfolder?

2008-04-24 Thread Cristi Manole
Hi, Beware of using getRealPath if your app is deployed on a Tomcat server where it's set _not_ to unpack the wars (for instance 99% of the plesk domain hostings). It will always return null. My 2 cents. Cristi Manole On Thu, Apr 24, 2008 at 4:23 PM, Mathias P.W Nilsson [EMAIL PROTECTED

Re: Form submit with a FileUploadField appears not to work

2008-04-22 Thread Cristi Manole
Hi, Implement a simple iframe inside the modal window and make the form post to that. Then you'll be able to use ajax _and_ do the file upload. Cristi Manole On Sun, Apr 20, 2008 at 8:15 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: fileuploadfields are not supported with ajax -igor On Sun

Re: Problems with FileUploadField

2008-04-22 Thread Cristi Manole
The FileUploadField doesn't work with Ajax like that. You have to add an iframe and post to that. At least, I haven't managed to get it working with Ajax... Cristi Manole On Tue, Apr 22, 2008 at 3:04 PM, Fabien D. [EMAIL PROTECTED] wrote: Hi, I would like to add a behavior on my

Re: Problems with FileUploadField

2008-04-22 Thread Cristi Manole
I can share my code with iframe (no-brainer), so go ahead and ask :) Cristi Manole On Tue, Apr 22, 2008 at 9:05 PM, Michael Mehrle [EMAIL PROTECTED] wrote: I recently implemented an AJAX based file upload field that works just fine. It's works 'outside of Wicket AJAX' but does leverage

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

Re: Modal Window onSubmit prevent closing

2008-04-10 Thread Cristi Manole
thank you for your quick response. yes, i'm using it with panel. there's no other way to achieve what i'm looking for? Can I use ajax and keep the form multi-part? Can I get the file name without the regular submit? Tks, Cristi Manole On Thu, Apr 10, 2008 at 6:39 PM, Matej Knopp [EMAIL

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

Promotion

2008-04-06 Thread Cristi Manole
will be added soon. Of course, your feedback would be more than welcome. Thanks, 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

  1   2   >