Re: Requirements for a progress bar in a file upload form

2013-10-24 Thread Martin Grigorov
Hi, On Thu, Oct 24, 2013 at 12:21 AM, MartinoSuperman wrote: > Hi, > > I built a form in Wicket, in which a file can be uploaded to the server. > > Furthermore, to show the progress of uploading I also built in a progress > bar. > > The problem now is that that progress bar does not work. I do n

Re: CSS include order

2013-10-24 Thread Martin Grigorov
Hi, 1) You can use FilteredHeaderItem to group the site-wide CSS in the beginning of the body, for example. 2) You can use PriorityHeaderItem to put component ones at the top 3) You can use custom header item comparator to re-order them on your custom criteria See http://wicketinaction.com/2012/0

Re: CSS include order

2013-10-24 Thread Nick Pratt
Thanks Martin. I figured out a slightly simpler approach (which I think works, please correct me if Im mistaken) - I added the site-wide CSS to my BasePage in Java rather than a simple include ref in the markup : @Override public void renderHead( IHeaderResponse response ) { super.renderHead( re

Re: CSS include order

2013-10-24 Thread Martin Grigorov
On Thu, Oct 24, 2013 at 4:00 PM, Nick Pratt wrote: > Thanks Martin. > > I figured out a slightly simpler approach (which I think works, please > correct me if Im mistaken) - I added the site-wide CSS to my BasePage in > Java rather than a simple include ref in the markup : > > @Override > public

AW: Loading content of IFrames only when displayed

2013-10-24 Thread Christian Schröter
Now why didn't I think oft hat. Thank you Martin. Maybe we can remove the final declaration in the next release (if there is no objections) Cheers, Christian -Ursprüngliche Nachricht- Von: Martin Grigorov [mailto:mgrigo...@apache.org] Gesendet: Montag, 21. Oktober 2013 10:18 An: users

Re: Loading content of IFrames only when displayed

2013-10-24 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-5393 Done On Thu, Oct 24, 2013 at 5:08 PM, Christian Schröter < christian.schroe...@1und1.de> wrote: > Now why didn't I think oft hat. Thank you Martin. > > Maybe we can remove the final declaration in the next release (if there is > no objections) >

Add or remove a row in RefreshingView with Ajax

2013-10-24 Thread MartinoSuperman
Hi, I have a RefreshingView, which consists of TextFields, Labels and a DownloadLink. When a button is pressed, a new row should be added with the help of Ajax. Unfortunately, this does not work. Can somebody tell me what I have to program to make adding and removing rows in RefreshingView pos

Re: unwanted DefaultPageManagerProvider

2013-10-24 Thread uwe schaefer
On 22.10.2013 10:22, Sven Meier wrote: Hi Sven, currently there's no way to change the PageManager once it's fetched in Application#internalGetPageManager(). agreed. Do you have a stacktrace for the code triggering Application.getPageManagerProvider().get() ? Besides devutils I don't see an

RE: Add or remove a row in RefreshingView with Ajax

2013-10-24 Thread Colin Rogers
Hi there, Not sure what you mean by 'does not work'... so guessing the issue, and the solution. Are you updating the whole RepeatingView? If so, you need to wrap the repeater in a WebMarkupContainer and refresh that (remembering to setOutputMarkupId to true etc.) I don't know the reason why,

Re: AbstractColumn get row object

2013-10-24 Thread cosmindumy
Thanks for relies. I saved the reference in newCellItem. Cheers. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AbstractColumn-get-row-object-tp4661924p4661939.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: How Does Checkbox Know To Store To My Data Object

2013-10-24 Thread Paul Bors
Read section 10.2 "Models and JavaBeans" of the Wicket Guide at: http://wicket.apache.org/guide/guide/chapter10.html#chapter10_2 >From the code snipet you posted I take it your form or parent of your form has a CompondPropertyModel which must be feeding your checkbox. Either that, or you have a mo

Re: wicket-bootstrap NoSuchMethodError: Url.parse

2013-10-24 Thread Paul Borș
Must be your maven build and how it pulls that wicket-request artifact into your project. I suggest you exclude it in your dependency declaration for the bootstrap version you use in your POM. Have a great day, Paul Bors > On Oct 22, 2013, at 10:36 AM, meduolis wrote: > > Hi, Martin, >

Re: AW: set session-timeout

2013-10-24 Thread Paul Borș
Right, you would have to do it on the Log In page during authentication as Martijn suggested. We have a global Settings page where we let admins configure this duration in minutes and we enable it via our Log In page. To do it for unauthorized users it won't really make sense. Why would you let