yes i'm using popupSettings
        final String mime="application/xml";
        ByteArrayResource res = new ByteArrayResource(mime,dSOBean.getOrder());
                
        ResourceLink<ByteArrayResource> resourceL= new
ResourceLink<ByteArrayResource>("myF", res) {
                @Override
                protected void onComponentTag(ComponentTag tag) {
                        super.onComponentTag(tag);
                        String url = tag.getAttributes().getString("href");
                        log.debug("URL = "+url);
                        url = url + "antiCache=" + System.currentTimeMillis();
                        tag.put("href", url);                           
                        log.debug("URL = 
"+tag.getAttributes().getString("href"));
                        }
                };

        PopupSettings popupSettings = new PopupSettings(
                                         PopupSettings.RESIZABLE |   
PopupSettings.SCROLLBARS).setHeight(600).setWidth(1000);
        resourceLink.setPopupSettings(popupSettings);

        listItem.add(resourceLink);


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component-tp4664870p4664877.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

Reply via email to