RE: PDF viewed in panel via ResourceReference works in 6.12 but not in 6.13

2015-03-13 Thread reiern70
Passing something that allows you to produce the byte []? Sent from Samsung Mobile Original message From: Bruce Lombardi brlom...@gmail.com Date:13/03/2015 20:20 (GMT+01:00) To: users@wicket.apache.org Subject: RE: PDF viewed in panel via ResourceReference works in 6.12

Re: icons as checkboxes

2010-03-11 Thread reiern70
Hi Eyal, I do something similar here http://code.google.com/p/antilia/source/browse/trunk/com.antilia.web/src/com/antilia/web/beantable/ToggleSelectRowButton.java It is just a Panel with and AjaxLink and an image. When user click link a round-trip to the server toggles boolean state and

Re: Problems with session after modifying code

2009-08-11 Thread reiern70
Maybe invalidate the HTTP sessions? So, that users will have to log-in again. Can you post a stack trace of the error you get? I remember having similar class cast exceptions because OSGi class loading, but they all banished after using the buddy class loading of equinox... But maybe your

Re: calendar component with date TIME field

2009-05-07 Thread reiern70
Maybe org.apache.wicket.extensions.yui.calendar.DateTimeField Best, Ernesto Christoph Grün wrote: Hi! Is there a calendar component with date TIME field? The calendar components, that I know so far (e.g., YUI DatePicker) just provide a date field. I also would need a field

Re: How to get an i18n message?

2009-04-27 Thread reiern70
Maybe Component.getString(...); Ernesto HHB wrote: Hey, How to get a message (that will be displayed in FeedbackPanel) from properties file in order to use it for info() method of Component class? Thanks. - To

Re: Plugin panel integration

2009-04-21 Thread reiern70
Then probably you need something as OSGi which allows you to dynamically add/remove features to an existing application. There are numerous threads in this list dealing with OSGi and Wicket. Ernesto TradeMark wrote: Thx for reply, Im building modular application which functionality is

Re: Display other page in panel

2009-04-06 Thread reiern70
I would use a panel (as Igor already suggested) but in case you decide to use a Page there is already an org.apache.wicket.markup.html.link.InlineFrame class that can be handy. Ernesto TradeMark wrote: Hi there, -i would like to ask whether it is possible to display other page in

Re: Extensible wicket application

2009-03-26 Thread reiern70
Can you provide an stack trace or some more info? Is this happening when you run your application in eclipse or just on the bridge setting? Right now I'm using hibernate+OSGi on some project and it works just fine... provided Hibernate can load you entity classes by name. Best, Ernesto

Re: Wicket serialization problems for OSGi users

2009-03-23 Thread reiern70
Hi David, Nice post! Just one question why not use buddy class-loading techniques to solve serialization problem? To me this is the same kind of problem you encounter when you have a basic bundle handling Hibernate persistence and you want Hibernate to load classes from a bundle containing your

Re: Wicket serialization problems for OSGi users

2009-03-23 Thread reiern70
Hi David, Thank for your answer! Yes, your are right buddy class loading is Equinox proprietary. For me that's not a problem because I tied myself to use equinox. I did so because if you want to deploy in a traditional application sever you will have to use a bridge approach and equinox already

Re: Example for presenting pdf in modal window

2009-01-28 Thread reiern70
Hi Per, I don't think you could use InlineFrame class to show a PDF in an iframe. I just built a DocumentInlineFrame class, inspired on InlineFrame, that allows to render a Resource (see attached files). To view the example all you have to do is: 1- lt;span wicket:id=pdfpanelgt;lt;/spangt; 2-

Re: anyone has some suggestion? thanks a lot

2009-01-06 Thread reiern70
The first time I saw snow I was 29 years old... So, I was implicitly following your suggestion most of my life:-). I always found this answer/suggestion, given by Elvis Presley, rather interesting: “Why buy a cow when you can get milk through a fence?” Jeremy Thomerson-5 wrote: I always

Re: DownloadLink, BIRT report

2009-01-01 Thread reiern70
)(in eclipse) but need it to be output as xls. I'd really appreciate some help. Thank you reiern70 wrote: Sure you can... Which part is giving you problems? The generation of the excel report with BIRT? Or the creation of the link? Best, Ernesto newbieabc wrote: Hello.. How

Re: DownloadLink, BIRT report

2008-12-31 Thread reiern70
.. I've created the BIRT report (report.rptdesign)(in eclipse) but need it to be output as xls. I'd really appreciate some help. Thank you reiern70 wrote: Sure you can... Which part is giving you problems? The generation of the excel report with BIRT? Or the creation of the link

Re: updating text in labels using ajax?

2008-12-18 Thread reiern70
Hi Lizz, You could use an AjaxSelfUpdatingTimerBehavior to make the label (or some component containing the label) update itself and when the job is finished redirect to other page. I use a similar approach when I generate files. The result looks like: