Re: [OT] wicket users around the world

2008-12-15 Thread NHSoft.YHW
China, ZheJiang NingBo francisco treacy-2 wrote: to know a little bit more of our great (and vast) community, i was just wondering if you're keen on sharing where you come from and/or where you work with wicket... for instance, here argentinian/belgian working with wicket in antibes,

[GMAP2] how to add float Panel

2008-12-28 Thread NHSoft.YHW
my requirement desc: 1.add a float panel component at top left corner of the GMAP2, when the map zoom in or zoom out, the panel alway show at top left corner. 2.adjust panel transparency, so user can see map image behind the panel. so i want to know how to code in GMAP2. thanks. -- View

Re: Modal window not appearing in IE

2008-12-29 Thread NHSoft.YHW
here is ajax debug message, i found that there has a error var settings = new Object(); settings.minWidth=200; settings.minHeight=200; settings.className=w_blue; settings.width=460; settings.height=500; settings.resizable=true; settings.element = element; settings.cookieId=mwCreateOrder;

ModalWindow not appearing in IE

2008-12-30 Thread NHSoft.YHW
ModalWindow can not appear in IE 6.x, but Firefox 3.x has no problem. In IE 6.x, when click show ModalWindow link, the server side code invoke, but the browser not show the modalwindow. ajax debug message detail as follow: INFO: focus removed from wicket-generated-id-120 INFO: focus set on

how to build lastest 1.3.x jar

2009-03-07 Thread NHSoft.YHW
I can not found where to get lastest 1.3.x jar file, so I build from source, but there always has error. check out lastest code from http://svn.apache.org/repos/asf/wicket/branches/wicket-1.3.x;, then build with mvn installl, but build failure because some test case run error. so I build with

Re: Modal window not appearing in IE

2009-03-07 Thread NHSoft.YHW
We had a similar problem about modelWindow, Firefox/Opera/Google browser all worked fine, but IE did not show modelwindow, by wicket debug, I found that the server has send ajax modelwindow CDATA, the detail debug information is in attachment.

Re: Modal window not appearing in IE

2009-03-09 Thread NHSoft.YHW
/td /tr /wicket:panle i do not know how to resolve the problem, Could someone give me some suggestion about the problem. NHSoft.YHW

how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
in wicket 1.4.x, the code like : HttpServletRequest request = getWebRequestCycle().getWebRequest().getHttpServletRequest(); but i don't know how to get HttpServletRequest in wicket 1.5 - http://www.517wm.com 外卖订餐分享工具 -- View this message in context:

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
in wicket 1.4.x getRequestCycle().setRequestTarget(new RedirectRequestTarget(/connect/qq/login)); how to code for wicket 1.5.0 - http://www.517wm.com 外卖订餐分享工具 -- View this message in context:

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
Migrate Question Q1: PackageResourceReference resRef = new PackageResourceReference(parent.getClass(), src); return (urlFor(resRef).toString()); PageParameters is required for urlFor method, if why PageParameters is required. Q2: Image imgThumbnail = new Image(thumbnailImage);

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
Q7. how to get inputstream from ResourceReference object, here is code for wicket 1.4.x inputStream = reference.getResource().getResourceStream().getInputStream(); but IResource interface has no getResourceStream() method in wicket 1.5.0 - http://www.517wm.com 外卖订餐分享工具 -- View this message

Re: how to get HttpServletRequest in wicket 1.5

2011-09-09 Thread nhsoft.yhw
Q9. i found that modalwindow has some problem for firefox browse after upgrading to wicket 1.5. firefox version 6.0.1, modalwindow can not display when click open modalwindow link, but when i switch firefox's private browsing mode, it works . Chrome, IE8, Safari is ok. -

Re: how to get HttpServletRequest in wicket 1.5

2011-09-14 Thread nhsoft.yhw
nhsoft.yhw wrote: Q7. how to get inputstream from ResourceReference object, here is code for wicket 1.4.x inputStream = reference.getResource().getResourceStream().getInputStream(); but IResource interface has no getResourceStream() method in wicket 1.5.0 My solution

Re: how to get HttpServletRequest in wicket 1.5

2011-09-21 Thread nhsoft.yhw
Q5:my code for wicket1.5 as follow: final Link lnkExport = new Link(export) { public void onClick() { Shop shop = shopService.read(shopId); // temporarily switch off paging of results

ModalWindow in IE6, IE7, IE8 browser issues

2011-09-28 Thread nhsoft.yhw
Q1: After the upgrade to 1.5 version , I found that the ModalWindow appear in IE Page Expired error, but in Chrome browser to normal. Same Code for ModalWindow works for Firefox, IE, Chrome with wicket 1.4.18 version. My ModalWindow Use WebPage Mode, not Page Mode. Q2: sometimes Modalwindow

Re: ModalWindow in IE6, IE7, IE8 browser issues

2011-09-29 Thread nhsoft.yhw
here is exception stack, but only IE throws the exception ERROR - DefaultExceptionMapper - Connection lost, give up responding. org.apache.wicket.protocol.http.servlet.ResponseIOException: ClientAbortException: java.io.IOException at

Re: ModalWindow in IE6, IE7, IE8 browser issues

2011-09-29 Thread nhsoft.yhw
I swith to use modal dialog with panel, it works. ModalWindow seems to have some strange problems, sometimes it is difficult to reproduce. For example, some of my applications ModalWindow normal, some abnormal, but I can not find reason. - http://www.517wm.com 外卖订餐分享工具 -- View this message

Is there ModalWindow alternative options

2011-10-11 Thread nhsoft.yhw
Is there ModalWindow alternative options, I found that the ModelWindow component has browser compatibility problems. Original use of ModalWindow is no problem in the wicket 1.4.x version, but after upgrading to 1.5.1 version, I found several used ModalWindow Page is normal, several used

Re: Is there ModalWindow alternative options

2011-10-11 Thread nhsoft.yhw
jcgarciam wrote: Is this probably related to the usage of ModalWindow with PageCreator instead of Panel content? in some ModalWindow content Pages I try to use the Panel replace WebPage, if there has the scroll bar in IE6 ModalWindow with panel content mode will display More than one

Re: Is there ModalWindow alternative options

2011-10-11 Thread nhsoft.yhw
for example: wicket version 1.5.0 or 1.5.1 DataView with each row having Modalwindow int chrome, all works; in IE8 with X-UA-Compatible mode can not display row data, and server side did not receive browser request; in IE8 with normal mode can not display row data, and server side throw

Re: Is there ModalWindow alternative options

2011-10-12 Thread nhsoft.yhw
Martin Grigorov-4 wrote: This looks like https://issues.apache.org/jira/browse/WICKET-4119 which is fixed in trunk -- Martin Grigorov jWeekend Training, Consulting, Development http://jWeekend.com I just checkout lastest wicket snapshot code and build my application, but use the

Re: Is there ModalWindow alternative options

2011-10-12 Thread nhsoft.yhw
I've got no problems with the quickstart application, I do not know how to reproduce, I think this issue and modalwindow matter, because all broken pages are used modalwindow components -- View this message in context:

RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-20 Thread nhsoft.yhw
my application has same problem, but it only throw socket error when IE 6 - 8 brower, chrome and IE9 has no the problem. here is my question: http://apache-wicket.1842946.n4.nabble.com/Is-there-ModalWindow-alternative-options-td3896443.html i have test by wicket 1.5.2 take 2 version, the

RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread nhsoft.yhw
You tried google chrome browser? chrome browser I found no problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Occasional-Software-caused-connection-abort-socket-write-error-with-1-5-tp3920880p3924517.html Sent from the Users forum mailing list archive at

Re: ModalWindow shows Error Page in Opera

2011-10-21 Thread nhsoft.yhw
Wicket 1.5.x have fixed the problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ModalWindow-shows-Error-Page-in-Opera-tp3924738p3924885.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread nhsoft.yhw
I try to reproduce the problem to create quickStart demo, but this error problem only in my real application occurs, My situation is that only use IE 6 7 8 visits the page with modalwindow will throw be connection problem. I will try to reproduce later. -- View this message in context:

RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread nhsoft.yhw
I do not think so. My application is upgraded from wicket 1.4.18 to 1.5.x, in wicket1.4.x using IE6, IE7, IE8 browser is normal, 'ClientAbortException error' appeared after the upgrade to wicket1.5.1, and use Chrome browser or IE9 is no problem both wicket 1.4.x and 1.5.x. Only some of the

Re: EOFException(java.net.SocketException: Connection reset by peer: socket write error)

2011-11-17 Thread nhsoft.yhw
jira issues: https://issues.apache.org/jira/browse/WICKET-3869 Is only in IE6, IE7, IE8 will occur in this problem? -- View this message in context:

Re: Exception (Header was already written to response!) when setting response page in IRequestCycleListener

2012-02-26 Thread nhsoft.yhw
I have the same problem, but only in IE browser, firefox or chrome works - first wicket application: 114生活网 -- View this message in context:

Re: Seeing sporadic ClassNotFoundExceptions after upgrading from 1.4.9 or 1.4.11

2012-03-13 Thread nhsoft.yhw
I have same problem also, This situation occasionally occurs. Nitnatsnok wrote 03-13 18:37:30.466[ WicketObjects.java:82 :WARN ] Could not resolve class [resources] java.lang.ClassNotFoundException: resources at

Re: Seeing sporadic ClassNotFoundExceptions after upgrading from 1.4.9 or 1.4.11

2012-03-14 Thread nhsoft.yhw
Martin Grigorov-4 wrote Hi, Try with 1.4.20. I remember such problem have been fixed at some point. 1.4.11 is too old. I am using wicket 1.5.5, This problem has always existed from version 1.4.9 to version 1.5.x. However, this problem seems to have little effect, this problem the

Brix CMS has stopped development?

2013-06-15 Thread nhsoft.yhw
I am looking for a product based on wicket cms, I found brix cms is very good, it can meet the customized development needs, but browse brix cms's github code, I found brix cms project nearly two years no code updates, upgrades, brix cms whether the project has stopped development? Brix CMS Site

why swarm not render link

2008-05-03 Thread NHSoft.YHW
my hive file: grant { permission ${ComponentPermission} wm.wicket.pages.HomePage, inherit, render; permission ${ComponentPermission} wm.wicket.pages.HomePage, enable; permission ${ComponentPermission} wm.wicket.pages.ManageCenterPage, inherit, render;