SV: Check validator existence

2008-04-14 Thread Wilhelmsen Tor Iver
> is there an API in wicket to know if a Validator instance has been added to a form? Two solutions: 1) Call iterator() and test with instanceof IValidator on each element until you get true. This will only find validators on the form and not on the subcomponents... 2) Make a Component.IVisitor

Wicket portles in Sun Portal

2008-04-14 Thread Wilhelmsen Tor Iver
We have (wisely :) ) chosen Wicket as web framework, but also chosen Sun Portal as the portal engine (not just Pluto but the commercial product). This causes a problem since Sun apparently haven't implemented the two interfaces required by Apache's bridge, so Wicket 1.3.x portlets do not work since

SV: Wicket portles in Sun Portal

2008-04-16 Thread Wilhelmsen Tor Iver
> For b) I hope to get started on that ASAP. Excellent news! :) (Since this is so significant for us I might have a go at adding the support later this week if I can wrap my head around the source and API docs... testing for the presence of the Portlet 2.0 API as you mentioned is probably the be

Re: stream content with an IndicatingAjaxLink

2008-05-20 Thread Wilhelmsen Tor Iver
> Take on account that in Ajax, the browser does not make a normal HTTP request, but an > XmlHttpRequest from Javascript, and then expects an XML fragment as a response (a piece of DOM tree > as far as I know). I cannot imagine how could you transmit an image via Ajax, but if it is > possible, pl

Re: Wicket portles in Sun Portal

2008-06-13 Thread Wilhelmsen Tor Iver
To dig up this old thread: I now use Ate Douma's patch for JSR-286 support from https://issues.apache.org/jira/browse/WICKET-1620 which has removed the need for the portal to implement the Apache portlet bridge's two interfaces. A small step for man etc. :) There now is an issue - the same I had

SV: Wicket portles in Sun Portal

2008-06-16 Thread Wilhelmsen Tor Iver
Thijs Vonk wrote: > Ate Douma wrote: Thanks to both of you! > Note though that you have to build a svn copy of the > portlet-container. > RC2 contains a bug I found which prevents Ajax to work correctly. Will try that. - To u

Re: Wicket portles in Sun Portal

2008-06-16 Thread Wilhelmsen Tor Iver
Got it to work after building portlet-bridges-common from the trunk source. - The change I made to PortletWindowUtils which seems to work (so far *crosses fingers*): public static String getPortletWindowId(PortletSession session) { final Object tmp = session.getAttribute(PORTLET_WIN

Re: Regarding Loacale

2008-06-23 Thread Wilhelmsen Tor Iver
> When I, on the fly, change the language to something else > (de_CH), the Locale in my application is not changed. Looking at Wicket 1.3 and 1.4 sources, the locale is picked up in the Session constructor, so presumably you need to nuke the Wicket session or let it expire before trying a new loc

SV: generics

2008-07-15 Thread Wilhelmsen Tor Iver
Brill Pappin [EMAIL PROTECTED] wrote: > I'd say that WIcket *is a product*, and as such the consumers > of that product have the final say. Not any more than you can e.g. go to Ford Motor Co. and demand they make this and that modification to the design of the Mustang, for instance. Like most con

SV: getRequestUrl behavior difference between page call and ajax call

2008-08-04 Thread Wilhelmsen Tor Iver
> - when loading the page from the browser, the URL is returned > including the page parameters; Yes, that would be a GET-method request. > - when updating through AJAX, the URL is returned without the > page parameters. AAJAX requests are often POST-method. In POST requests the parameters are

SV: Need to open the Link in another window

2008-09-25 Thread Wilhelmsen Tor Iver
> Try: > Link lk = new ExternalLink("lk", "http://...";) { > @Override > protected void onComponentTag(ComponentTag tag) { > super.onComponentTag(tag); > tag.put("target", "_blank"); > } > }; A bit overkill: You might inst

Problem building, and problem with SpringWebApplicationFactory

2008-10-01 Thread Wilhelmsen Tor Iver
I got this error during tests when trying to build latest source from trunk: junit.framework.AssertionFailedError: expected:<304> but was:<200> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.

SV: more than one html file accessible

2008-10-01 Thread Wilhelmsen Tor Iver
Override init() and add mountBookmarkablePage("/stats", StatisticPage.class); - Tor Iver - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Please Please Portlet

2009-03-04 Thread Wilhelmsen Tor Iver
> (using Netbeans, wicket 1.4rc2, glassfish v3, > portlet-container from open-portal project) I thought the portlet-container in effect was dead since the Sun Portal is dead? They have ditched that in favor of a solution based on Liferay 5.2 called Web Space (codename WebSynergy during developmen

SV: Correct use of RangeValidator

2009-03-17 Thread Wilhelmsen Tor Iver
> WicketMessage: Exception 'java.lang.ClassCastException: > java.lang.Integer' occurred during validation > org.apache.wicket.validation.validator.RangeValidator on component > 2:body:recvAnalisysForm:intField Root > cause:java.lang.ClassCastException: java.lang.Integer at > java.lang.Stri

SV: How can I share text resources with multiple web applications?

2009-03-20 Thread Wilhelmsen Tor Iver
> It's a *wicket* archetype that uses Maven as a build tool. But if it *breaks* the assumptions made by all other plugins used by Maven as a build tool, is it then not an archetype that *abuses* Maven as a build tool? :) What other contexts would you want to use this *wicket* archetype that does

SV: How can I share text resources with multiple web applications?

2009-03-20 Thread Wilhelmsen Tor Iver
> There is no sane reason why anyone would put the html, js, > css and properties resources in any place except *next* to > the corresponding.java file. Your .java file can not function > without the .html file. Your component will fail if the > .properties file is not available. When the js fi

Re: Wicket and (or) restlet

2009-04-07 Thread Wilhelmsen Tor Iver
> Jonathan, can you elaborate? Why do you think jersey is > better? Have you any experience of integrating it with wicket? We use Jersey for REST here, mostly because it is Sun's reference implementation of JAX-RS (and thus will most likely be updated fastest). As for the options: * Restlet: Imp

Breadcrumbs and "raw" URLs

2009-04-20 Thread Wilhelmsen Tor Iver
We have an issue where we are using a CMS that provides an API for getting article components in a peculiar way: Links are sent over as a raw HTML "element" followed by a "link element" followed by the rest of the HTML. So a link like http://foo/fie";> is sent as 1. HTML: http://foo/fie 3. HTML: "

Re: Breadcrumbs and "raw" URLs

2009-05-07 Thread Wilhelmsen Tor Iver
> Is there a way to use urlFor() or the like to create links > that updates the breadcrumb model with our BreadCrumbPanel > subclass for the linked id, i.e. > IBreadCrumbModel.setActive(new ArticlePanel(...))? *crickets* Anyway, I finally found the likely answer in the form of an extended Page

SV: Wicket & SWFObject

2009-05-08 Thread Wilhelmsen Tor Iver
> I just figured out that the deal is that SWFObject doesn't > like to be set visible false on page load then visible true via Ajax. > > Any thoughts on how to get around this? Ajax in Wicket needs the page DOM to have an element with the id it is supposed to replace with the output of a (now vi

SV: Component creation and initialization

2009-05-17 Thread Wilhelmsen Tor Iver
> 2 - A constructor is for constructing - your object should > not be in an incomplete state when the constructor is > finished (such a state that methods such as isVisible can not > be called) Tha language ensures that the object is "complete" when the constructor exits, but with the exception

Custom FeedbackPanel in portlets

2009-05-18 Thread Wilhelmsen Tor Iver
I made a FeedbackPanel to apply the Portlet 2.0 CSS classes to relevant messages. In my naïvetè I assumed I could just override getCSSClass(FeedbackMessage), but that is called both to set a style on the item AND on the contained element. Is there any reason for this, especially since the HTM

Re: inserting urls in script variables

2009-06-12 Thread Wilhelmsen Tor Iver
> Put some wicket:id on that, then add a WebComponent for it that you add an AttributeModifier to, which sets the "value" attribute. > When I try to do the obvious, replace the {{URL_HERE}} part > with it complains > about non-valid XML and such. There are basically two groups

SV: Two null choices in a DropDownChoice?

2009-06-15 Thread Wilhelmsen Tor Iver
> Does anyone know of a simple way to have more than one option > with a null value in a DropDownChoice? Well, how would you disambiguate between them? Null usually means "unset" in the context of DDC, but here you have semantic meanings to the choices, so they should be "real" objects. A better

SV: redirect to mailto

2009-06-26 Thread Wilhelmsen Tor Iver
> How do I redirect to a mailto: url? This doesn't seem to work: Mailto is a browser-managed protocol that does not use http; and the Ajax response does not go to the browser but is analyzed by the Ajax implementation. Perhaps adding custom Javascript in the requestTarget to do a window.open() o

SV: Test Methods for Querying Component Tree

2009-07-10 Thread Wilhelmsen Tor Iver
> To address this, I wrote some code that gets the component tree, and > either returns a List, or a string with the components' id's and > classes. It can be found at http://gist.github.com/144041. > > Is this useful to anyone? Is there a better way for me to view the > component tree at runtime

Re: Wicket pages as actions

2009-08-06 Thread Wilhelmsen Tor Iver
> http://localhost:8080/web/?wicket:interface=:3:logout::ILinkListener:: > > I don't see the need to expose implementation details (i.e. ?wicket in > the > URL) at this point. Therefore, does it make more sense that the > LogoutPage > (the response page) itself performs the logout action? The lin

SV: pannels with diffrent width and height

2009-08-10 Thread Wilhelmsen Tor Iver
> I have created panel.now i want to show that panel with diffrent width > and > height in another page(3 panels). Will be replaced with contents of wicket:panel element Or betters, use classes in nested elements that you specify outside of the templates. - Tor Iver

SV: pannels with diffrent width and height

2009-08-10 Thread Wilhelmsen Tor Iver
> it will place one bye one > but i need next to next.column wise Well, either use a Table with three columns to represent the panels or use div with CSS float: etc. in the page template. - Tor Iver - To unsubscribe, e-mail: us

SV: AjaxFormValidatingBehavior not calling setOutputMarkupId

2009-08-12 Thread Wilhelmsen Tor Iver
> Is there a reason AjaxFormValidatingBehavior does not call > setOutputMarkupId(true)? Seems like it would be something it might do > while visiting the form children. As I understand it, that would be too late; You need the output to happen in the first render of the form so that the Ajax behav

SV: How to handle Runtime Exception in wicket?

2009-08-12 Thread Wilhelmsen Tor Iver
> how to redirect to external url say www.google.com in case > runtimeexception > occurs You need to "drill down" to the HttpServletResponse and call sendRedirect(). - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.

SV: Portlet and ... 2.0 (How to pass parameters?)

2009-08-13 Thread Wilhelmsen Tor Iver
> But it will be the portlet class the responsible for handling > processing. So the only way to pass information from the onClick > function to the > portlet application for rendering (for example) is using the portlet > session. But why would you want to go via the Application? The WicketPortlet

SV: Controlling the order of resource files

2009-08-17 Thread Wilhelmsen Tor Iver
> It is like I need another selection mechanism for resource file which > is not > the locale but something that is specific to the logic of my > application. Look at "styles", i.e. Session.setStyle(String) and the documentation there for resource lookup. Basically the style "tag" goes before the

Re: Hide component when instantiating component not authorized to

2009-08-25 Thread Wilhelmsen Tor Iver
> I implemented the desired solution by duplicating the complete > org.apache.wicket.authentication.AuthenticatedWebApplication class in > our > source tree, What was wrong with implementing IAuthorizationStrategy.isActionAuthorized() and adding getSecuritySettings().setAuthorizationStrategy(new

SV: Hide component when instantiating component not authorized to

2009-08-25 Thread Wilhelmsen Tor Iver
> What was wrong with implementing > IAuthorizationStrategy.isActionAuthorized() and adding > getSecuritySettings().setAuthorizationStrategy(new > YourParticularImplementation()); in your Application.init()? The action > to test for is Component.RENDER. Ah, perhaps the other method is more to your

Wicket and FindBugs

2009-08-25 Thread Wilhelmsen Tor Iver
It seems that our developers frequently mistakenly forget to use "item.add()" and end up writing "add()" in ListView sublasses and the like. This sounds like a job for FindBugs, do anyone know of any existing FindBugs plugin that deals with common mistakes in Wicket code? Med vennlig hilsen TO

SV: ajax - navigate to new location

2009-09-04 Thread Wilhelmsen Tor Iver
> target.prependJavascript("window.location.href=google.com"); > > Is there a better way of doing this? Doubtful; Ajax is primarily concerned with NOT replacing the whole page. If you always replace the page use a "normal" link instead which lets you set a RedirectRequestTarget for instance. -

SV: Move shared wicket components to a base page?

2009-10-05 Thread Wilhelmsen Tor Iver
> WicketMessage: The component(s) below failed to render. A common > problem is that you have added a component in code but forgot to > reference it in the markup (thus the component will never be rendered). This indicates to me you are not using in the parent's markup and/or not using ... in th

Re: Nav bar - stateful

2009-10-05 Thread Wilhelmsen Tor Iver
> Is there any way of making a nav bar like this: > > > Browse | > Search > > > Stateful, i.e. only one instance of each page is created. So if you > were > on the home page and clicked the 'Search' link, then clicked the > 'Browse' link, the state of all your components would be re

SV: iPhone webapp support?

2009-10-06 Thread Wilhelmsen Tor Iver
> Are people still making fun of your huge nokia? ;-) ... or the "side-talking" 1st gen nGage :P (parodied a lot here: http://www.sidetalkin.com/photos.html ) On a more serious note, Wicket apps should run well in the iPhone's Safari browser, but if you want to support small devices in general

AutoCompleteTextField, IConverter and required

2009-10-11 Thread Wilhelmsen Tor Iver
I have an AutoCompleteTextField with a POJO model; I override getConverter() to return a converter that looks up the field value in the same list that getChoices() uses for filtering. Which works fine if you actually put something into the field that matches. However, if you type a non-mathing

SV: Wicket 1.4.2 Released!

2009-10-12 Thread Wilhelmsen Tor Iver
> Why there are no SVN tags anymore ? > svn ls http://svn.apache.org/repos/asf/wicket/tags/ does not have tags > for > 1.4.1 and 1.4.2 Wicket's not fond of such conventions it seems :) - use http://svn.apache.org/repos/asf/wicket/releases/ instead. - Tor Iver -

DateLabel, joda-time and Liferay locales

2009-10-13 Thread Wilhelmsen Tor Iver
It seems joda-time used by DateLabel has an issue with Liferay's use of the locale "nb_NO" (for Norwegian "bokmål" in Norwayas opposed to the more common "no_NO", where it seems to default to U.S. locale and UTC instead of native (CET+DST here) - i.e. it seems to use both components to decide ti

Re: Getting the "Choose Option" on page reload

2009-11-09 Thread Wilhelmsen Tor Iver
> I have 2 drop-downs and a search button my page. When the page is > loaded > for the first time, the first option in both the drop-downs is "Choose > Option". Now if I select some value and click Search, the page is > rendered again and the Choose Option is gone forever. But I want it > back. How

SV: Get all active session objects

2009-11-09 Thread Wilhelmsen Tor Iver
> Yep, we need something to take those obj out from there. Maybe a collection of weak references? - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache

SV: wicket 1.4 : Link with no model

2009-11-17 Thread Wilhelmsen Tor Iver
> or a shorter > > Link foo = new Link ... or wait for JDK 1.7 where you can do Link foo = new Link<> Which is more useful in cases like Map> fie = new HashMap<>(); - Tor Iver

SV: Wicket Ajax in JBOSS Portal

2009-12-01 Thread Wilhelmsen Tor Iver
> It looks like JBoss portal support is incomplete... If I send you a > minimalistic AJAX portlet which works in eXo, would you mind adapting > it for > JBoss (web.xml & portlet.xml) and try and see if it works? HTH! We use Glassfish + Webspace/Liferay, but ended up using a mapping

SV: validate() form (Form.class) - how to validate form by hand?

2009-12-11 Thread Wilhelmsen Tor Iver
> But in Wicket 1.4.3 the validate() method is protected so it's not > visible. By the way actually only hasError() method is public. In your Form class you can just override it with public visibility when you need it to be. - Tor Iver -

SV: enclosure changes in 1.4.4

2009-12-13 Thread Wilhelmsen Tor Iver
> Consistency is one of wicket's strengths. My tiny vote for 1.4.4 > > -- Tony +1 I never interpreted wicket:enclosure (as documented) as allowing the child attribute to reference a component anywhere else than inside the enclosure. - Tor Iver -

SV: applet in wicket .. exception thrown ...

2009-12-21 Thread Wilhelmsen Tor Iver
> Problem adding an applet to wicket still remains the same.. can some 1 > help 1) Be aware that applets are not loaded from WEB-INF/classes, but it seems you know this. 2) The class attribute value should not end in .class since that can make some browsers try to load HelloWorld.class.class ins

SV: Handling Ajax session expired

2009-12-28 Thread Wilhelmsen Tor Iver
> jsessionid works ... but leads to lots of boilerplate where you need to rewrite all URLs targeted at your app's code. I guess Wicket can do that for you, but still... - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wic

SV: Handling Ajax session expired

2009-12-29 Thread Wilhelmsen Tor Iver
> I guess the servlet container handles jsessionid transparently. Yes, coming in (either cookie or in the URI) and setting the cookie; but it does not normally add it to links in the output from your webapp, that is the framework or developer's responsibility. - Tor Iver --

SV: wicketstuff portlets - where did it go?

2009-12-31 Thread Wilhelmsen Tor Iver
> Ah looks like I may have found it: > http://wicket-stuff.svn.sourceforge.net/viewvc/wicket- > stuff/attic/wicket-portlets/ probably put in the attic because Wicket has supported portlets "natively" since 1.4-m3 or thereabouts. - Tor Iver --

SV: creating item after form is submitted via ajax

2009-12-31 Thread Wilhelmsen Tor Iver
> I'm doing that. I'm doing what the link referenced earlier in this > thread > said to do. Wicket Ajax cannot update anything that isn't in the DOM. You need a placeholder element for what you want to render in the Ajax, e.g. add(new WebMarkupContainer("panel2").setVisible(false).setOutputMark

Re: Hello World Portlet

2010-01-03 Thread Wilhelmsen Tor Iver
> What I find unclear, is the way it functions. It extends a wicker > portlet, but the application is ran from WebApplication instance that > mounts EditPage, HeaderPage, and doesn't seem to have any direct link > to the WicketPortlet. The link is via the filter mapping and page mounting. Case in

SV: Hello World Portlet

2010-01-04 Thread Wilhelmsen Tor Iver
For Servlet 2.4/2.5 I have found (depending on container) that you need to add the dispatchers involved, like so: > > wicket.report > /report/* REQUEST INCLUDE FORWARD ERROR > - Tor Iver --

SV: More than one access denied page

2010-01-05 Thread Wilhelmsen Tor Iver
> I would like to have two access denied pages according to some > parameters. > Is this possible? In your implementation of IUnauthorizedComponentInstantiationListener check for the parameters (e.g. placed into the request or the like) and set a different responsepage or redirect to a different

SV: Wicket and portlets JSR 286

2010-01-05 Thread Wilhelmsen Tor Iver
> I am having a problem finding a resource or an example for portlets > communications with events "processEvent(EventRequest request, > EventResponse response)" > how do I dispatch and event from wicket page? for example if I have a > ViewPage and I need to send an event to a subscribed portlet ,

SV: SV: Wicket and portlets JSR 286

2010-01-06 Thread Wilhelmsen Tor Iver
> java.lang.IllegalArgumentException: Payload has not the right class at > org.apache.jetspeed.events.EventCoordinationServiceImpl.createEvent(Eve > ntCoordinationServiceImpl.java:98) This is the portlet container complaining about: > ReportType report = new ReportType(); >

SV: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread Wilhelmsen Tor Iver
> hmmm... but we are talking about something very basic: the home page! Have you set it unversioned? How about trying to make it stateless? - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

SV: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread Wilhelmsen Tor Iver
> about "unversioned", i have just done a quick test on wicket-examples > > helloworld, adding serialVersionUID (not informed in the examples) and > the > result is the same: pagestore file increasing to the "infinite" (max > size of > course :) I meant Wicket's setVersioned(false); the serialVe

SV: Any servlet filter- like WebRequest interceptor or filter ?

2010-01-11 Thread Wilhelmsen Tor Iver
> public RequestCycle newRequestCycle(Request request, Response response) > { > ServletWebRequest servletWebRequest = (ServletWebRequest) request; > HttpServletRequest hreq = > servletWebRequest.getHttpServletRequest(); > ServletContext context = hreq.getSession().getServletContext(); >

SV: Help with Wicket Adoption Numbers

2010-01-12 Thread Wilhelmsen Tor Iver
> you've got to admit it's a short distance between bloody fist fights in > a > basement for no purpose whatsoever and using struts. Hm, it seems the slogan "Struts 2: Not As Bad As Struts 1" did not catch on. - Tor Iver - To u

SV: Wicket Portlets and Liferay

2010-01-13 Thread Wilhelmsen Tor Iver
We are running Wicket + Liferay (Webspace) in Glassfish 2, and experience no problems; IIRC Glassfish uses the same Catalina engine as Tomcat? > > For AJAX/resource requests, another supports element for mime-type > "text/xml" is needed. This sounds like a Tomcat issue, our portlets use Ajax fi

SV: The Field 'emailInput' is required

2010-01-21 Thread Wilhelmsen Tor Iver
> I have a Form with the id="test" and a Textfield="EMAIL". Claim the first, then: > The Textfield I added with "add(new RequiredTextField("emailInput"))". Claim the second. These conflict, because the id used in the actual code is "emailInput". > test.EMAIL.Required=test > EMAIL.Required=test

SV: Override fragments in subclasses

2010-01-25 Thread Wilhelmsen Tor Iver
> So in my parent html : > > > > > > > And add a label with id "myDiv" in related parent java. This part is > common to all classes. > > But when I render the TestFormOne, that doesn't work because, > apparently the label "myDiv" must be define in subclass. You should add

SV: SV: Override fragments in subclasses

2010-01-25 Thread Wilhelmsen Tor Iver
> public abstract class TestForm extends WebPage { > > public TestForm() { > add(new Label("myDiv", "my div from test form")); => common to > every > concrete page > add(createDivWithComponent("myNewPanel")); => has to be > redefine by > each concrete page > add(createD

SV: Repeating View Horizontally

2010-01-28 Thread Wilhelmsen Tor Iver
> How do you make repeating view to repeat the items horizontally? The > number > of items is not known at the time of creating the markup. Repeaters do not care about horizontal vs. vertical; it all comes down to the markup. E.g. you can have a ListView which generates a sequence of table cells

Re: Save a form's markup

2010-02-02 Thread Wilhelmsen Tor Iver
> I would like to save a form's markup as a string when the form's submit > button is pressed. The part that I am having difficulty with is > understanding how to use wicket to grab a form's rendered markup. I > have a > feeling it must be pretty simple, but I'm getting lost in the wicket > documen

Re: Very strange exception

2010-02-03 Thread Wilhelmsen Tor Iver
> WicketMessage: The component(s) below failed to render. A common > problem is that you have added a component in code but forgot to > reference it in the markup (thus the component will never be rendered). When you do add(new Label("label", ... in a Page, you also need something like This get

SV: Fix super(new CompoundPropertyModel(this)) error in the WIA book

2010-02-05 Thread Wilhelmsen Tor Iver
> super(new CompoundPropertyModel(this)); This seems wrong: A call to super() cannot reference "this" directly or indirectly: JLS §8.8.7 says: "It is a compile-time error for a constructor to directly or indirectly invoke itself through a series of one or more explicit constructor invocations

Re: How reRender a component from parent page?

2010-02-09 Thread Wilhelmsen Tor Iver
> The problem are in HomePage.java in the onClick... this don't reRender > my componente in the header. Are you sure? The real problem seems that your itens label uses an implicit model based on the constructor-time value of getAmount(), and which is never changed. Look into using a model inste

SV: Frames for layout

2010-02-10 Thread Wilhelmsen Tor Iver
> Yes, but don't do that. Frames were outlawed in 2001 and should stay > that way. +1 Frames create a shedload of problems both for the developer and for the user - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.ap

Authorization and

2010-02-12 Thread Wilhelmsen Tor Iver
We have an app with three "user types" and two "user levels" (read or read-write in effect). We want to use these in authorization, and thought about an approach using annotations. However, at the point of the Wicket auth. interface methods, only class-targeted annotations are visible, and that

SV: Quick fix for "the dreaded org.hibernate.LazyInitializationException" with WicketTester

2010-02-16 Thread Wilhelmsen Tor Iver
> After about 5 minutes of "omfg not that error again", I think I found a > quick hack to avoid org.hibernate.LazyInitializationException with > WicketTester. I've checked everywhere on the lists but didn't find a > similar > solution, so apologies if someone else already posted this. There may > a

SV: [OT] Apache con 2010 europe, when?

2010-02-25 Thread Wilhelmsen Tor Iver
Then there is JavaZone in Oslo later on. - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: format float/double in dataview

2010-02-26 Thread Wilhelmsen Tor Iver
> new SimpleAttributeModifier("text-align", "right") on the Label? "text-align" is not a known attribute. It is a CSS property so SimpleAttributeModifier("style", "text-align: right") could work, or there is an attribute "align" that may or may not be OK depending on HTML spec. - Tor Iver

SV: Make Wicket component ID HTML element ID?

2010-02-28 Thread Wilhelmsen Tor Iver
> I notice one thing that is not what I want: instead of generating > wanted HTML element ID such as "signInOut" or "feedback", Wicket added > one number or letter to wicket ID as HTML element ID (for example: > signInOut4, feedbackb). > > How can I overcome this? Are you sure you want to? Do you

SV: How to Store Wicket to XML File?

2010-03-08 Thread Wilhelmsen Tor Iver
> Any one Have idea about how to Store wicket fields(TextField) to > XML > File? Why would you want to do that? Usually you only store the model value, storing the field itself is only relevant for the page serializing. - Tor Iver ---

SV: Where to use MarkupStream

2010-03-09 Thread Wilhelmsen Tor Iver
> How to use Markupstream? where to use ? You use that normally only when you need to make very custom code, e.g. your own tags. For most other situations, adding Behaviors is the preferred way of altering components. - Tor Iver -

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-03-10 Thread Wilhelmsen Tor Iver
> hello, I have another problem, with DropDown this time. If I have only > one > DropDown on my page, everything works great. But when I add another > DropDown > to the page, with diferent datasource, the first DropDown shows data > from > the second datasource. All DropDowns share the same datasou

SV: why is hashcode() called on page deserialization?

2010-03-15 Thread Wilhelmsen Tor Iver
> java.lang.NullPointerException > at com.company.project.event.SMSEvent.hashCode(SMSEvent.java:334) This looks a lot like an exception we get in one project as well, where a bean serialized into the DiskPageStore comes back with all properties set to null (including the ones tested for in

SV: Replace "Choose one" from DropDownChoice?

2010-03-17 Thread Wilhelmsen Tor Iver
Also setNullValid(true) otherwise the blank option will disappear once you have made a choice or the model has a value. - Tor I. > -Opprinnelig melding- > Fra: Martin Asenov [mailto:mase...@velti.com] > Sendt: 17. mars 2010 15:23 > Til: users@wicket.apache.org > Emne: RE: Replace "Choos

SV: Make FeedbackPanel occupy zero space when having no messages?

2010-03-18 Thread Wilhelmsen Tor Iver
> How can I make FeedbackPanel occupy zero space when having no messages? Override isVisible() to test if there are any messages to show, and call setOutputMarkupPlaceholder(true); - Tor Iver - To unsubscribe, e-mail: users-uns

SV: Text replace with component

2010-03-22 Thread Wilhelmsen Tor Iver
> Now I want to replace %destinationLink% with new BookmarkableLink(...); > > I am using GNU Gettext translations(.po files), thats why such > solution... > > Is it possible or is there any reasonable way to do this? Look into the various urlFor() methods. In your case in particular String url

Re: A web site developed with Wicket

2010-03-22 Thread Wilhelmsen Tor Iver
> After using CSS for layout things for two years my summary is: > > "Use tables for layout, CSS for the rest" > > It it simple, it works, and it doesn't break in each new version of IE The question then becomes: what do you use to lay out tabular data? :) (IE is broken in all versions, and i

SV: Displaying HTML

2010-04-06 Thread Wilhelmsen Tor Iver
> I > want to display the same on for example a label, is there any component > that > displays the text as HTML , i mean i dont want to see the tags, i want > to > see some formatted text. Use a Label, but call setEscapeModelStrings(false) on it. -- - Tor Iver

SV: IE6 issue regarding Wicket JS and Ajax

2010-04-12 Thread Wilhelmsen Tor Iver
> its a browser from August 27, 2001 ... thats 9 years ago.. > > So who is using opera 6 ? Or Netscape 7? Or Safari 1.0 ? Sadly, IE6 is also a central component in some Active/X-based apps used in some companies, apps which actually manage to BREAK on newer releases of IE. So they are held capt

SV: uploadprogressbar

2010-04-13 Thread Wilhelmsen Tor Iver
> Hi, > I'm trying to use an upload progressbar, > the problem is that it does not appear whent I use an ajaxsubmit button > but > appears when i used the form onSubmit method. > what could be the problem. Possibly it starts out invisible, and in that case you need to call progressbar.setOutputPl

SV: Question on close button of modal windows

2010-04-14 Thread Wilhelmsen Tor Iver
> You could do it with JQuery directly, or implement WiQuery dialog. The latter is preferrable, because if you close a ModalWindow in the browser with no roundtrip then the server side state will not be notified that it is closed, and thus might reappear if the page is refreshed as a whole. - T

SV: Type Inference for Wicket 1.4

2010-04-15 Thread Wilhelmsen Tor Iver
> Model model = Model.newModel(); Go on a hike in the Greek islands for six months, when you come back download Java 1.7 where you can do neato stuff like Model model = new Model<>(); Or use an IDE which automatically fills the second set of braces for you (I think most except Apple's XCode do

SV: XMLHttpRequest.open(...)

2008-11-07 Thread Wilhelmsen Tor Iver
> that XMLHttpRequest.open(...) are disallowed if they target > for another domain, than the one the document is in? > Like disallowing cross-site calls? Yes, to avoid cross-site scripting attacks; remember Javascript has globally accessible objects so if cross-site scripting was allowed then an

SV: force client to use GET method

2008-11-10 Thread Wilhelmsen Tor Iver
> Ok.. that didn't stop the client from submitting the form of > the previous page again. > Any other solutions to preventing double submissions? Tell people to use a less stupid browser than IE? (Which is the one with that behavior if memory serves)? :) Real solution: Use a "hidden" token that

SV: Bug of Wicket when iterate the form using iterator()?

2008-12-01 Thread Wilhelmsen Tor Iver
> The only problem right now is the cast to Component[]. The > fix is easy, just change it to Object[]. The optimization > makes a lot of sense and there is reason why it can't really > be simple. The simplest explanation is that the (synthetic) array "classes" both extend Object but are not in

SV: How to update base page panel from child page?

2008-12-14 Thread Wilhelmsen Tor Iver
> My question is how to ask the cart section to updates its > state (and redraw it) from a child page? Just add the superclass element to the AjaxRequetTarget parameter. This means either holding a reference to it (e.g. a protected instance field) or better, use get("path:to:cart") to get at it.

SV: Dynamic wizard content

2009-01-13 Thread Wilhelmsen Tor Iver
Med vennlig hilsen TOR IVER WILHELMSEN Senior systemutvikler Arrive AS T (+47) 48 16 06 18 E-post: toriv...@arrive.no http://servicedesk.arrive.no > * As far as I understand, all steps are constructed at the > same time. How, then, can I make the content of step B dynamic? No it's rendered

SV: referencing page from panel?

2009-01-16 Thread Wilhelmsen Tor Iver
> I have a panel that is on a page and the panel needs to be > able to reference another panel on the same page. In the code, you can either keep instance variables pointing to the two panels in the page source (since they are on the same page they are in the same Page) and go via those in the ac

RE: dynamic DataTable

2011-07-21 Thread Wilhelmsen Tor Iver
> Since TextArea can contain any SELECT statement, Column names, count can > change > every time. So I need a dynamic table that is compatible to view any SELECT > Statement result. Since you appear to have no need for performing updates or inserts, try ditching the DataTable in favour of us

RE: Problem in ListView populateItem()

2011-07-26 Thread Wilhelmsen Tor Iver
> I have one comma. I followed the same example in the book, which is > add(Label,IModel). But something's wrong. Strange example if so: Try instead add(new Label(id, model)); The Model is for the Label. - Tor Iver - To unsubs

  1   2   3   >