How to get items of inmethod grid to export as excel file

2011-08-29 Thread Duy Do
Hi Wicketers,

I have to get all items of the inmethod grid to export as excel file. Is it
possible?

Thanks,
Duy


Re: How to get items of inmethod grid to export as excel file

2011-08-29 Thread Martin Grigorov
See 
https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/wicket-poi-parent
https://github.com/wicketstuff/core/wiki/POI

On Mon, Aug 29, 2011 at 10:34 AM, Duy Do doquoc...@gmail.com wrote:
 Hi Wicketers,

 I have to get all items of the inmethod grid to export as excel file. Is it
 possible?

 Thanks,
 Duy




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: How to get items of inmethod grid to export as excel file

2011-08-29 Thread Duy Do

Thanks Martin.

On 8/29/11 4:03 PM, Martin Grigorov wrote:

See 
https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/wicket-poi-parent
https://github.com/wicketstuff/core/wiki/POI

On Mon, Aug 29, 2011 at 10:34 AM, Duy Dodoquoc...@gmail.com  wrote:

Hi Wicketers,

I have to get all items of the inmethod grid to export as excel file. Is it
possible?

Thanks,
Duy







-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



PageParameters with a Data Bean (Custom Object)?

2011-08-29 Thread eugenebalt
I need to construct a page from a bean object. Ideally, I'd pass a custom
Object to 

PageParameters params = new PageParameters();
params.add(bean, bean);

but it's not letting me do that... only Strings. Any suggestions? Thanks

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/PageParameters-with-a-Data-Bean-Custom-Object-tp3776436p3776436.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: PageParameters with a Data Bean (Custom Object)?

2011-08-29 Thread Martin Grigorov
new MyPage(bean);

On Mon, Aug 29, 2011 at 5:01 PM, eugenebalt eugeneb...@yahoo.com wrote:
 I need to construct a page from a bean object. Ideally, I'd pass a custom
 Object to

 PageParameters params = new PageParameters();
 params.add(bean, bean);

 but it's not letting me do that... only Strings. Any suggestions? Thanks

 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/PageParameters-with-a-Data-Bean-Custom-Object-tp3776436p3776436.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org





-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



How to update @SpringBean proxy?

2011-08-29 Thread Arjun Dhar
Hi,
I believe @SpringBean creates a proxy over the original bean.

I have a situation where in the Application.init() --callls -- Service
layer that has direct access to SpringContext. I modify the original Bean
(getting it via Spring Context). However, this update to the object wont
reflect in the associated proxy.

Anyone know how I can get a ref to the original bean or have the proxy
updated; so without the Annotation how can I get access to the Proxy object
via API?

Currently looking @ for clues...
https://cwiki.apache.org/WICKET/spring.html

Pointers appreciated!
thanks




-
Software documentation is like sex: when it is good, it is very, very good; and 
when it is bad, it is still better than nothing!
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/How-to-update-SpringBean-proxy-tp3776522p3776522.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Dropdowns show through ModalWindow in IE6

2011-08-29 Thread Dawid Dudzinski
Hello,

We have an odd problem where one ModalWindow shows dropdowns that are
technically below it. (One can actually click on them and modify the values)

We knew it was an error in IE6 and JQuery (bgiframe.js is supposed to fix
it) but for the most part it never appeared in Wicket. Out of many
ModalWindow instances we use only one has this issue.

Has anyone experienced this issue? How can we fix it? Was there a post about
it on the forum? I searched the archive but could not find one.

Thanks,
Dave

PS. We are working very hard to get get off IE6 but it will take time and
the bug needs to be fixed now :-(


Re: How to update @SpringBean proxy?

2011-08-29 Thread Igor Vaynberg
its not currently possible to flush the proxy's cache

however, modifying the original bean should be fine because the proxy
should forward all method invocation to the bean...

-igor


On Mon, Aug 29, 2011 at 8:39 AM, Arjun Dhar dhar...@yahoo.com wrote:
 Hi,
 I believe @SpringBean creates a proxy over the original bean.

 I have a situation where in the Application.init() --callls -- Service
 layer that has direct access to SpringContext. I modify the original Bean
 (getting it via Spring Context). However, this update to the object wont
 reflect in the associated proxy.

 Anyone know how I can get a ref to the original bean or have the proxy
 updated; so without the Annotation how can I get access to the Proxy object
 via API?

 Currently looking @ for clues...
 https://cwiki.apache.org/WICKET/spring.html

 Pointers appreciated!
 thanks




 -
 Software documentation is like sex: when it is good, it is very, very good; 
 and when it is bad, it is still better than nothing!
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/How-to-update-SpringBean-proxy-tp3776522p3776522.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: How to update @SpringBean proxy?

2011-08-29 Thread Pointbreak
What you are saying doesn't make sense. The SpringBean proxy doesn't
cache anything, so would still proxy all method calls to the original
bean. If you are not seeing updated values in that bean, there is
something else going on. Unless with update you mean that you replace
the original bean with another instance in the context, which you really
should not

On Mon, 29 Aug 2011 08:39 -0700, Arjun Dhar dhar...@yahoo.com wrote:
 Hi,
 I believe @SpringBean creates a proxy over the original bean.
 
 I have a situation where in the Application.init() --callls -- Service
 layer that has direct access to SpringContext. I modify the original Bean
 (getting it via Spring Context). However, this update to the object wont
 reflect in the associated proxy.
 
 Anyone know how I can get a ref to the original bean or have the proxy
 updated; so without the Annotation how can I get access to the Proxy
 object
 via API?
 
 Currently looking @ for clues...
 https://cwiki.apache.org/WICKET/spring.html
 
 Pointers appreciated!
 thanks
 
 
 
 
 -
 Software documentation is like sex: when it is good, it is very, very
 good; and when it is bad, it is still better than nothing!
 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/How-to-update-SpringBean-proxy-tp3776522p3776522.html
 Sent from the Users forum mailing list archive at Nabble.com.
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: How to update @SpringBean proxy?

2011-08-29 Thread Arjun Dhar
@PointBreak: imo not doing anything stupid like that, but I dont wanna be too
sure been up 14 hours. Maybe my eyes are missing something. Take a look.

Be the judge, here is a simplified version of the code:

Spring XML Summary: 
[The idea is that the menu model mixes Static  dynamic items via Spring so
i can generate Menus in a flexible way]


Code:


-
Software documentation is like sex: when it is good, it is very, very good; and 
when it is bad, it is still better than nothing!
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/How-to-update-SpringBean-proxy-tp3776522p3776665.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: How to update @SpringBean proxy?

2011-08-29 Thread Arjun Dhar
Hey heads up, there is some bug in the logic of one of the services. And on
this front its clear. Thanks :)


-
Software documentation is like sex: when it is good, it is very, very good; and 
when it is bad, it is still better than nothing!
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/How-to-update-SpringBean-proxy-tp3776522p3776761.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org