Re: 10th aniversary of wicket

2014-01-22 Thread David Beer
Hi Guys This is a great idea, I would like to suggest the UK as a location specifically Newcastle as there seems to be a lot of companies around here that use Apache Wicket. I have also seen a few job adverts with Apache Wicket mentioned. Just a thought. David On 20/01/14 09:52, Ernesto Rei

Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-20 Thread David Beer
Hi All I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to 0.9.2 and am getting the following error message logged. I am running JBoss AS 7.1. None of the js seems to work. [org.apache.wicket.request.resource.ResourceReferenceRegistry] (http--127.0.0.1-8080-5) A ResourceReference

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
1kk0n/wicket-bootstrap/issues/337 > > Martin Grigorov > Wicket Training and Consulting > > > On Thu, Mar 20, 2014 at 7:52 PM, David Beer > wrote: > > > Hi All > > > > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to 0.9.2 > > and

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to build. Will work on migrating to 3.1 and see if that helps. Thanks David On 21 March 2014 11:43, David Beer wrote: > Hi Martin > > I have been wondering about switching to 0.9.3-SNAPSHOT, I have a couple >

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
gt; > > On Fri, Mar 21, 2014 at 2:12 PM, David Beer > wrote: > > > I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to > > build. Will work on migrating to 3.1 and see if that helps. > > > > Thanks > > > > David > > > > &

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
ull stacktrace so we can see what triggers the load of > WebjarsVersion$Holder. > Better do it in GitHub issues. > Thanks! > > Martin Grigorov > Wicket Training and Consulting > > > On Fri, Mar 21, 2014 at 2:37 PM, David Beer > wrote: > > > Hi Martin > > &g

Re: Netbeans and "Compile On Save"

2014-03-27 Thread David Beer
Hi This is really the wrong list try netbeans users or their forum. However the success of this also depends on the container you are using. Thanks David On 27 March 2014 16:05, Brad Grier wrote: > I used to be able to make code changes in Netbeans, save and test the > results > immediately.

JBoss Forge Plugin

2014-03-28 Thread David Beer
Hi All I am thinking of creating a JBoss Forge Plugin for wicket. The idea being that it would help create a base project with the Filter set the Home Page and a Base Page to work from. It would also provide the ability to create a new Page which would include creating Java source and HTML, the s

Adding/Remiving Panels

2014-03-31 Thread David Beer
Hi All I am in the process of building a user account page, which will have a menu on the left, and the related content on the right. I would like the content on the right to be swapped depending on the selection on the left. As in the content on the right might well be generated by panels or fra

Re: Netbeans and "Compile On Save"

2014-04-01 Thread David Beer
Hi All I did some further research on this and it very much depends on the container, and the way that NetBeans IDE interacts with it or deploys the resulting application. If you search for Compile On Save NetBeans IDE you will get various hits and results. Some saying it works great for tomcat an

Re: JBoss Forge Plugin

2014-04-01 Thread David Beer
; > CSS optimization (with UNCSS), etc. would be much cooler. > > > > All this would require writing JavaScript instead of Java but the Node.js > > ecosystem for this kind of tasks is much better than what is available in > > Java. > > > > Martin Grigorov

Re: Adding/Remiving Panels

2014-04-01 Thread David Beer
the content. Thanks David On 1 April 2014 08:04, Martin Grigorov wrote: > Hi, > > > On Mon, Mar 31, 2014 at 1:53 PM, David Beer > wrote: > > > Hi All > > > > I am in the process of building a user account page, which will have a > menu > > on t

Re: Adding/Remiving Panels

2014-04-02 Thread David Beer
ose markup you are trying to update. *INFO: *Response processed successfully. *INFO: *refocus last focused component not needed/allowed How can I re-enable the component. Thanks David On 1 April 2014 12:37, David Beer wrote: > Hi Martin > > Thanks for your information here. So if

Re: Adding/Remiving Panels

2014-04-02 Thread David Beer
Hi I have fixed the problem by adding setOutputMarkupPlaceholderTag(true); to the top component. Thanks David On 2 April 2014 18:55, David Beer wrote: > Hi > > I am able to remove the panel by accessing the top most component (form) > and setting visible to false. This removes th

Wicket CDI 1.1

2014-04-04 Thread David Beer
Hi All I am in the process of moving my application to JavaEE7 and CDI 1.1. Things are going well all except for some CDI values. I have an @Stateless Session bean used for my DAO which I then Inject into various classes. The issue I have is that some of the classes don't get the reference Injecte

Re: Wicket CDI 1.1

2014-04-07 Thread David Beer
: > Did you migrate to wicket-cdi-1.1? To inject a non-managed class, use > NonContextual.of(MyClass.class).inject(instance). Components, however, are > injected by wicket-cdi itself. You should not need to inject those > manually. > > Best regards, > Emond > Op 4 apr. 2014 2

FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
Hi All I have a panel which is added to my page which has contained form which is used to update users password. All is good here, when the user submits the form using AjaxButton it goes through the process and gets to the from submit ok. If everything is valid it updates data fine at which point

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
On 8 April 2014 13:40, Ernesto Reinaldo Barreiro wrote: > You are jumping to a new page? Not sure but you might have to pass messages > via session. > > > On Tue, Apr 8, 2014 at 2:36 PM, David Beer wrote: > > > Hi All > > > > I have a panel which is added to my

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
Hi Martin/Ernesto Thanks for this it worked brilliantly. Thanks David On 8 April 2014 15:08, Martin Grigorov wrote: > Hi, > > getSession().success("...") > > Martin Grigorov > Wicket Training and Consulting > > > On Tue, Apr 8, 2014 at 5:05 PM, D

Re: Wicket CDI application junit test

2014-04-11 Thread David Beer
Hi See my earlier thread on CDI 1.1. A lot the problems related to 1.1 come from not setting your beans.xml file up correctly for your environment. In General CDI 1.0 is for EE 6 and 1.1 is for EE 7. This is why 1.0 has dificulties with GF 4 as it is designed for Java EE 7. If you get a stacktrace

Re: Conditional input types

2014-05-19 Thread David Beer
If you go direct to the Packt website you can by the book in many different formats including, kindle, ePub and PDF. A really useful book. On 19 May 2014 13:41, david.latan wrote: > well the book seems great, unfortunatly google doesn't share the pages that > are usefull, and the book isn't ava

Displaying Images Stored in DB on Openshift

2014-07-07 Thread David Beer
Hi All I am developing and application that is running on openshift. The application is still in heavy development, using wicket 6.14 at the moment. I am running Wildlfy 8.1.0 and testing locally. The problem I am facing is simply that the images that I am storing are not being displayed on Opens

Re: Displaying Images Stored in DB on Openshift

2014-07-13 Thread David Beer
command outputs the following. I am running Wildfly 8.1.0. Any suggestions . Thanks David On 7 July 2014 21:18, David Beer wrote: > Hi All > > I am developing and application that is running on openshift. The > application is still in heavy development, using wicket 6.14 at the mome

Re: Displaying Images Stored in DB on Openshift

2014-07-14 Thread David Beer
lting > https://twitter.com/mtgrigorov > > > On Sun, Jul 13, 2014 at 11:16 PM, David Beer > wrote: > > > Hi Guys > > > > After some more trial and error and research I have got the image to > store > > properly and write back out a valid image using B

Re: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread David Beer
Hi Guys Thought I would chime in here. I have been using Wildfly 8 for a long time developing wicket Apps. By default all logging goes to the standard out log, I have changed nothing different and get the Wicket logged errors there, I also currently use the java Logger as still in development but

Re: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread David Beer
nightmare) > > Thanks for your help anyway, > Sebastien > > > > On Fri, Aug 8, 2014 at 4:41 PM, David Beer wrote: > > > Hi Guys > > > > Thought I would chime in here. I have been using Wildfly 8 for a long > time > > developing wicket Apps. By d

Properties Override

2014-08-11 Thread David Beer
Hi All I am trying to change some values specified in a properties file for a third party component. The component is part of the wicket-bootstrap project and specifies some value read from a properties file. I would like to override these values from my application, where my panel calls the compo

Re: Properties Override

2014-08-11 Thread David Beer
to see what went wrong. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > > On Mon, Aug 11, 2014 at 5:16 PM, David Beer > wrote: > > > Hi All > > > > I am trying to change some values specified in a properties file

Re: Properties Override

2014-08-11 Thread David Beer
Nope. Just add the properties like I did with a validator. On 11 August 2014 17:27, Martin Grigorov wrote: > Do you set the i18n value in FileInputConfig ? > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > > On Mon, Aug 11, 201

DataTables Webjars Error

2014-08-25 Thread David Beer
Hi All I am trying to use DataTables from wicketstuff in order to see if it will fit my requirements. However I am getting the following error. 19:34:16,427 WARN [org.apache.wicket.request.resource.ResourceReferenceRegistry] (default task-22) A ResourceReference wont be created for a resource wi

Re: DataTables Webjars Error

2014-08-26 Thread David Beer
x27;s constructor. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > > On Mon, Aug 25, 2014 at 9:37 PM, David Beer > wrote: > > > Hi All > > > > I am trying to use DataTables from wicketstuff in order to see if it wi

Re: DataTables Webjars Error

2014-08-26 Thread David Beer
it and send Pull Request if it works. > Thanks! > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > > On Tue, Aug 26, 2014 at 9:10 PM, David Beer > wrote: > > > Hi Martin > > > > I am using the Da

Re: DataTables Webjars Error

2014-08-28 Thread David Beer
ally). > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > > On Tue, Aug 26, 2014 at 9:33 PM, David Beer > wrote: > > > Hi Martin > > > > Thanks for spotting that will have a look. PR against 6.0x branch? > > > &g

Re: DataTables Webjars Error

2014-08-28 Thread David Beer
Hi All Got it to work after stumbling across the section on the wicket-webjars github page about adding the settings for vfs. Thanks David On 28 August 2014 21:13, David Beer wrote: > Hi Martin > > Thanks for the updated DataTables in wicketstuff, this works well under >

Re: DataTables Webjars Error

2014-08-28 Thread David Beer
, > > But you use Wicket Bootstrap already, no ? > It uses Webjars a lot. > Why do you face the VFS issue now ? > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > > On Thu, Aug 28, 2014 at 11:20 PM, David Beer > wrote: &g

Re: show image retrieved from database

2015-03-29 Thread David Beer
Hi Guys You may find this discussion useful about reading from databases as well. http://apache-wicket.1842946.n4.nabble.com/Displaying-Images-Stored-in-DB-on-Openshift-td4666463.html#a4666595 Thanks David On 26 March 2015 at 02:26, sabmoonie wrote: > I've been searching for solutions on how

Wicket 7 Security and JBoss Keycloak

2016-04-21 Thread David Beer
Hi All I am looking at how to integrate JBoss Keycloak with wicket 7. I am not quite sure where to start the configuration the example given is where the jsp pages are secured by configuration in the web.xml file. Wicket is a little different in that you need to create a Authorization Strategy. I

Re: Wicket 7 Security and JBoss Keycloak

2016-04-22 Thread David Beer
where (e.g. the Wicket Session or some Subject holder) the logged in User and then compares its roles with the one set in @AuthorizeAction on the Wicket component. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Apr 22, 2016 at 12:34 AM, David Beer wrote: &g

HTML5 and Bootstrap Input placeholder tag

2016-05-06 Thread David Beer
Hi Guys I am trying to utilise the placeholder tag in input components. So say I have a TextField that mapps to the html . How can I get wicket to add the placeholder tag so that I can populate via properties. Thanks David

Re: HTML5 and Bootstrap Input placeholder tag

2016-05-08 Thread David Beer
Hi Martin Thanks for this worked great. Thanks On 6 May 2016 at 20:19, Martin Grigorov wrote: > On May 6, 2016 9:05 PM, "David Beer" wrote: > > > > Hi Guys > > > > I am trying to utilise the placeholder tag in input components. So say I > > have a T

Wicket 7 + JEE 7 + wicket-cdi-1.1

2016-05-19 Thread David Beer
Hi All I am trying to integrate CDI and EJB with wicket 7. I am running the latest release so 7.3.0 etc and wicket-cdi-1.1. I am having to use Noncontextual.of().inject(this) for some resource however when I run the application I am getting the following error. 23:18:58,632 INFO [wicket-jquery-s

WicketTester Access Component Specific resource bundles

2016-09-03 Thread David Beer
Hi All I am new to WicketTester and am trying to test the content on my panel via the page. My question is more around the fact that the panel requests its content from a resource file via ResourceModel, is there a way I can use the same resource file in my tests? Thanks David

Re: WicketTester Access Component Specific resource bundles

2016-09-09 Thread David Beer
ghtly wrong). > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Sat, Sep 3, 2016 at 3:53 PM, David Beer wrote: > > > Hi All > > > > I am new to WicketTester and am trying to test the content on my panel > via > > the

Re: WicketTester Access Component Specific resource bundles

2016-09-09 Thread David Beer
asier way to get the resource? Thanks On 9 September 2016 at 22:44, David Beer wrote: > Hi Martin > > I use a custom Wicket Application added to WicketTester via new > WicketTester(new WicketApplication()). I use a similar process to the way > wicket-bootstrap-core creates the

Testing Page Rendered when using AnnotationsShiroAuthorizationStrategy

2016-10-15 Thread David Beer
Hi All I am using shiro to handle my authentication and Authorization for pages and some components. My current problem is that the page is Annotated like so @ShiroSecurityConstraint(constraint = ShiroConstraint.LoggedIn). The problem is I keep getting an java.lang.IllegalStateException: missing b

Re: Pluggable architecture for wicket application

2016-11-17 Thread David Beer
Hi Guys Does anybody know of a small scale example this sounds really interesting. Thanks David On 17 November 2016 at 18:00, Matt Pavlovich wrote: > I extensively use Wicket+OSGi. Works great! Modular web applications are > totally doable. Follow Martin's advice and wire in modules using the

Wicket 7 + Spring Security 7

2016-12-30 Thread David Beer
Hi All I am trying to add spring security to wicket 7. I have looked at example thomberges did but that doesn't really seem to work. If I comment out the code in the SecureWebsession all still seems to authenticate somehow. Is there an up to date project anyone has of integrating spring security

Re: Wicket 7 + Spring Security 7

2017-01-06 Thread David Beer
names might be slightly wrong but I hope they are good enough > to get you going! > > Happy New Year! > > On Dec 30, 2016 8:23 PM, "David Beer" wrote: > > > Hi All > > > > I am trying to add spring security to wicket 7. I have looked at example > &

Re: Wicket 7 + Spring Security 7

2017-01-06 Thread David Beer
Hi After more investigation, it seems that if you use Wicket 6 and Spring Security 3 all works as expected. However Wicket 7 and Spring Security 4 and you get the behaviour I am facing. Spring Security seems to take care of the whole login process. David On 6 January 2017 at 18:38, David Beer

Re: Wicket 7 + Spring Security 7

2017-01-09 Thread David Beer
anuary 2017 at 19:22, Martin Grigorov wrote: > Hi David, > > What exactly is hard ? > What kind of errors you mean? > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Jan 6, 2017 at 7:38 PM, David Beer wrote: > > >

Ajax Error When using File Upload

2017-01-25 Thread David Beer
Hi All I have panel which contains a form for uploading a file using BootstrapFileInput. When I upload the file all is correctly uploaded but I receive this error in Ajax Debug console. *ERROR: * Cannot read Ajax response for multipart form submit: SecurityError: Blocked a frame with origin " htt

Re: Ajax Error When using File Upload

2017-01-25 Thread David Beer
s SAMEORIGIN > > For more info see > https://peteris.rocks/blog/exotic-http-headers/#x-frame-options > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Jan 25, 2017 at 9:58 PM, David Beer > wrote: > > > Hi All >

Test Page renders with Nested Panel

2017-02-09 Thread David Beer
Hi Guys I am new to WicketTester and testing pages here. I am also getting back into wicket slowly. I have a page which currently simply adds a panel (more to come), the panel contains a DataTable. I am not interested in the content of the table just that the page renders with an empty table. My

Re: Test Page renders with Nested Panel

2017-02-11 Thread David Beer
ed DAO injected. Any pointers welcome or even a PR if not too much trouble or example somewhere. Thanks David On 10 February 2017 at 07:46, Martin Grigorov wrote: > Hi, > > > On Fri, Feb 10, 2017 at 12:08 AM, David Beer > wrote: > > > Hi Guys > > > > I am new

Re: Test Page renders with Nested Panel

2017-02-13 Thread David Beer
n what is not working. > There are 3 tests and all pass. > I have no idea where to look for a problem. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Sat, Feb 11, 2017 at 11:12 PM, David Beer > wrote: > > > Hi Martin &

Re: Test Page renders with Nested Panel

2017-02-13 Thread David Beer
er.com/mtgrigorov > > On Mon, Feb 13, 2017 at 10:05 PM, David Beer > wrote: > > > Hi Martin > > > > It appears there was an error when I tried to push the code. I am trying > to > > test AdminPage, and failing to inject the mock from the application > > c

Re: Test Page renders with Nested Panel

2017-02-14 Thread David Beer
t; Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Feb 13, 2017 at 11:39 PM, David Beer > wrote: > > > Hi Martin > > > > Thanks for the PR. So the solution is to remove JavaEE EJB references > > rather than to use them and test them. Un

StringResouceModel Can't find key with BootstrapCheckbox

2017-05-25 Thread David Beer
Hi I am using the BootstrapCheckbox and when I try to add the Label using StringReosrceModel if fails to find the key in the properties file for the page it is on. However when I use Model.of() it works. BootstrapCheckbox addMoreUsersCheckbox = new BootstrapCheckbox("checkbox-add-more-users", ad

FomGroup and BootstrapSelect not setting has-error CSS

2017-08-31 Thread David Beer
Hi All Before reporting this as a bug I wanted to check all is correct. I have a WicketBootstrap project using BootstrapForm with a form group which contains a dropdown select (BootstrapSelect) component. When the submit button for the form fires I have a validate method which checks all is valid

Re: FomGroup and BootstrapSelect not setting has-error CSS

2017-09-03 Thread David Beer
HI All Turns out this was because it wasn't being added to the ajax target on the submit for the form. All worked once updated the target. Thanks On 31 August 2017 at 15:06, Martin Grigorov wrote: > Hi David, > > On Thu, Aug 31, 2017 at 3:40 PM, David Beer > wr

Setting Wicket Configuration Mode to Deployment

2017-11-17 Thread David Beer
Hi All I am applying the final touches to my application before going to staging/production. I use the Webservlet 3 process via java code and annotations for setting the Wicket Filter all works well. I am trying to add the init param for the configuration mode. I was hoping I could use maven filt

Re: Wanted: example for Spring Security with wicket-auth-roles

2018-04-27 Thread David Beer
Hi Tom Please have a look at this project I did https://github.com/dmbeer/wicket-7-spring-security >From what I remember the process is pretty much as Martin says. If you look through the archives I am sure you will find my explanation. Thanks David On 19 April 2018 at 06:39, Martin Grigorov

Re: Integrate Wicket with Keycloak

2019-04-15 Thread David Beer
Hi Jeroen This sounds good, I once tried to setup a link between Wicket and Keycloak, would be good if you had a blog post, or posted this on the wicket site, along with code examples on github. Just a thought. Thanks David On Thu, 11 Apr 2019 at 09:23, Jeroen Steenbeeke wrote: > I've recentl

Page Hierachy and Packages

2013-03-08 Thread David Beer
Hi All I am new Wicket and like what I have found so far. My problem is that I have created a few pages and forms and placed them in a package named "auth". I can navigate to the pages easily but they don't seem to inherite the CSS from the BasePage which is in a different package. Also any l

Re: Page Hierachy and Packages

2013-03-08 Thread David Beer
uth package inherit from your BasePage class? In > your auth package pages markup, do you have tags? > > Nick > > On Fri, Mar 8, 2013 at 9:17 AM, David Beer wrote: > >> Hi All >> >> I am new Wicket and like what I have found so far. My problem is that I >>

Re: Page Hierachy and Packages

2013-03-08 Thread David Beer
March 2013 14:39, Sven Meier wrote: > Hi, > > if you keep style.css in your web root, you'll have to remove the > tag in your markup. > Otherwise AutoLinkResolver will think yoy're keeping the css beside your > component. > > Sven > > > On 03/08/2013 03:1

Re: Page Hierachy and Packages

2013-03-08 Thread David Beer
is trying to link to a file in the same package using ? Thanks David On 8 March 2013 16:53, Sven Meier wrote: > Hi David, > > if your post was a question, I didn't understand it. > > Regards > Sven > > > On 03/08/2013 05:15 PM, David Beer wrote: > >&g

Re: Page Hierachy and Packages

2013-03-10 Thread David Beer
Bas Gooren Op 8-3-2013 18:02, schreef David Beer: Hi Sven Will try and be more clear. I have fixed the css styling thanks to your suggestion on moving the link out of wicket:head. My question is that if I am navigating From my AdminPage in my auth package to the HomePage in the package above how

Twitter Bootstrap Integration

2013-04-08 Thread David Beer
Hi All Our web application site has been mocked up in Twitter Bootstrap using specific features from and components from the framework. We would like to integrate this with Wicket. I am not sure on the best way to integrate twitter bootstrap is it using the wicket project or using agilecoders

Re: Twitter Bootstrap Integration

2013-04-08 Thread David Beer
code in WicketApplication#init(). On Mon, Apr 8, 2013 at 4:16 PM, David Beer wrote: Hi All Our web application site has been mocked up in Twitter Bootstrap using specific features from and components from the framework. We would like to integrate this with Wicket. I am not sure on the best w

Re: Twitter Bootstrap Integration

2013-04-08 Thread David Beer
Hi Martin Thanks for that I have a working project thanks for pointers. David On 08/04/13 15:36, Martin Grigorov wrote: If you use any of the provided behaviors and components then the resources are delivered automatically. On Mon, Apr 8, 2013 at 5:30 PM, David Beer wrote: Hi Martin

CheckBox Column random behaviour when using wicket Bootstrap 0.8

2013-04-12 Thread David Beer
Hi All I am trying to add a checkbox column to my DataTable. This has a Model based on the SortableDataProvider to sort the table which works well. The problem is the functionality associated with the checkboxcolumn I have followed the example in Apache wicket Cookbook and updated it to use W

In Method Grid - Questions

2013-04-17 Thread David Beer
Hi All, I am looking at using the In Method Grid and have been playing with the grid. I have a couple of questions regarding the grid. 1. How do I get rid of the end Column? 2. Can I add my own css class to the table parts to fit in with my Bootstrap theme? Am I better off creating my own gr

Re: In Method Grid - Questions

2013-04-18 Thread David Beer
Grid for a while but it is quite flexible and I'm sure you can customize it. On Wed, Apr 17, 2013 at 9:19 PM, David Beer wrote: Hi All, I am looking at using the In Method Grid and have been playing with the grid. I have a couple of questions regarding the grid. 1. How do I get rid

Wicket-Bootstrap error when deploying to JBoss AS 7

2013-05-01 Thread David Beer
Hi All I have a web project which uses Wicket-Bootstrap for styling and various other functions. Everything appears to run fine in Tomcat, but I am starting to add more Java EE stuff and looking at using JBoss As 7. I can deploy a normal wicket Quickstart with out errors but when I try and de

Re: Wicket-Bootstrap error when deploying to JBoss AS 7

2013-05-02 Thread David Beer
/JBossIntegration On Wed, May 1, 2013 at 9:24 PM, David Beer wrote: Hi All I have a web project which uses Wicket-Bootstrap for styling and various other functions. Everything appears to run fine in Tomcat, but I am starting to add more Java EE stuff and looking at using JBoss As 7. I can

CheckGroup, CheckGroupSelection and Check behavior

2013-05-06 Thread David Beer
Hi All I am trying to add Checkgroup selection behaviour to my table, this all works fins so far. I can use the select all and individual check boxes to select items. What I am trying to get is get notified when a selection occurs so that I can enable and or disable buttons depending on how m

Re: CheckGroup, CheckGroupSelection and Check behavior

2013-05-07 Thread David Beer
ownloaded from here https://dl.dropboxusercontent.com/u/1979126/Wicket-Bootstrap-DataTable.zip Appreciate the help on this. Thanks David On 06/05/13 15:53, Sven Meier wrote: You have to wrap you whole table in a form, otherwise only the value of the single check is sent to the server. Sven On 05/06

Re: CheckGroup, CheckGroupSelection and Check behavior

2013-05-07 Thread David Beer
submits the form and then re-renders the page :(. You can use an AjaxFormChoiceComponentUpdatingBehavior instead of #wantOnSelectionChangedNotifications(true). Regards Sven On 05/07/2013 12:30 PM, David Beer wrote: Hi Sven Thanks for replying the table is inside a form. Here is the html

Re: CheckGroup, CheckGroupSelection and Check behavior

2013-05-08 Thread David Beer
. How can I make sure that the submit button is not enabled on page 2 if there is no selection Update source available at https://dl.dropboxusercontent.com/u/1979126/Wicket-Bootstrap-DataTable.zip Thanks David On 07/05/13 13:11, David Beer wrote: Hi Sven I understand now why the page re

DataTable update components on Page Change

2013-05-10 Thread David Beer
Hi All I have an Ajax DataTable that extends DataTable and when I click the navigation panel to change page in the table I would like to make sure that the necessary components are disable or enabled. What is the best way of doing this? So on onPageChanged I would like to enable or disable m

Re: DataTable update components on Page Change

2013-05-11 Thread David Beer
ing mechanism. François Meillet Formation Wicket - Développement Wicket Le 11 mai 2013 à 01:17, David Beer a écrit : Hi All I have an Ajax DataTable that extends DataTable and when I click the navigation panel to change page in the table I would like to make sure that the necessary com

Re: DataTable update components on Page Change

2013-05-12 Thread David Beer
EADTH, new YourEvent()); see the exemple: http://www.wicket-library.com/wicket-examples/events/ and at the end of this page : http://wicket.apache.org/2011/09/07/wicket-1.5-released.html François Meillet Formation Wicket - Développement Wicket Le 11 mai 2013 à 17:37, David Beer a éc

Re: DataTable update components on Page Change

2013-05-12 Thread David Beer
Hi Francois Thanks for the pointers I have now solved this problem thanks again. David On 12/05/13 18:38, David Beer wrote: Hi Francois Thanks for your help, this useful in firing the event but how can I get it so that the buttons state is updated on the page. Sorry If I am missing

Re: Attaching Ajax Function to Java Method

2013-05-15 Thread David Beer
Hi Bill I would also suggest you take a look at the Wicket-Bootstrap project by agilecoders for Bootstrap integration. Is very good and has a lot of the bootstrap components. http://wb.agilecoders.de/demo/ and https://github.com/l0rdn1kk0n/wicket-bootstrap/ Thanks David On 14/05/13 21:36,

Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread David Beer
Hi All I am using a wicket-bootstrap 0.8.2-SNAPSHOT, and wicket 6.7.0. I am trying to create a from and add the components using a ControlGroup. I can add the components to the matching html OK, but I get the following error when the page renders. 12:45:25,905 ERROR [org.apache.wicket.serial

Re: Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread David Beer
29, 2013 at 2:55 PM, David Beer wrote: Hi All I am using a wicket-bootstrap 0.8.2-SNAPSHOT, and wicket 6.7.0. I am trying to create a from and add the components using a ControlGroup. I can add the components to the matching html OK, but I get the following error when the page renders. 12:45

WicketTester CDI and WicketApplication

2013-06-01 Thread David Beer
Hi All I am having difficulty finding information on how I can create a CDI context for use in my tests. Is there some kind of way of creating a mock cdi environment for testing. Currently my tests fail trying to retrieve the CDI Bean Manager as this is normally controlled by the Web Applicat

Re: WicketTester CDI and WicketApplication

2013-06-01 Thread David Beer
p://code-troopers.com | http://www.bloggure.info | http://cedric.gatay.fr On Sat, Jun 1, 2013 at 5:13 PM, David Beer wrote: Hi All I am having difficulty finding information on how I can create a CDI context for use in my tests. Is there some kind of way of creating a mock cdi environment for

Re: WicketTester CDI and WicketApplication

2013-06-06 Thread David Beer
roopers.com | http://www.bloggure.info | http://cedric.gatay.fr On Sat, Jun 1, 2013 at 6:15 PM, David Beer wrote: Hi Cedric Thanks for the reply I will take a look at Arquillian and see how I can use it. Any guides are helpful especially when used with wicket. Thanks David On 01/06/13 16

Wicket-bootstrap Bootstrap 3 support

2013-09-25 Thread David Beer
Hi All I am looking at using Bootstrap 3 for our next webapplication layout. I have used 2.3.2 with success and the Wicket-Bootstrap project. I just wondered what the status is of the support for BS3 before I start coding the initial layout. Or am I better sticking with BS2 for now and upgrading o

Re: Wicket-bootstrap Bootstrap 3 support

2013-09-25 Thread David Beer
ap-core > 0.9.0-SNAPSHOT > > > cheers, > Michael > > Am 25.09.2013 um 14:24 schrieb David Beer : > > > Hi All > > > > I am looking at using Bootstrap 3 for our next webapplication layout. I > > have used 2.3.2 with success and the Wicket-Bootstrap pro

Wicket Bootstrap 3

2013-10-07 Thread David Beer
Hi All I am trying out Wicket Bootstrap3 on JBoss AS 7.1.1 and am getting the following error about not being able to find the bootstrap resources in the webjars. 16:15:54,432 WARN [RequestCycleExtra] (http--127.0.0.1-8080-2) Handling the following exception: org.apache.wicket.WicketRuntimeExce

[wicket-bootstrap3] How to add Fontawsome

2013-10-11 Thread David Beer
Hi All I see that Fontawsome was added to the extensions for wicket-bootstrap. However I can't see how to add the CSS reference. I have tried using CSSHeaderItem and adding that to the renderHead of the page but no CSS file gets added. How do I go about adding this to my Bootstrap3 project? Than

Re: [wicket-bootstrap3] How to add Fontawsome

2013-10-11 Thread David Beer
Hi All I solved this by adding response.render(CssHeaderItem.forReference(FontAwesomeCssReference.instance())); to my renderHeader method. David On 11 October 2013 16:53, David Beer wrote: > Hi All > > I see that Fontawsome was added to the extensions for wicket-bootstrap. > How

wicket-bootstrap3 FormControl Position the Label

2013-10-13 Thread David Beer
Hi Guys I am using the wicket-bootstrap3 FormGroup and provide a Model for the in built Label that gets added. My Problem is how to apply the relevant formatting and spacing on the item. So according to the bootstrap3 examples my HTML should look like the following resulting markup. Email

Re: wicket-bootstrap3 FormControl Position the Label

2013-10-13 Thread David Beer
> Label label = new Label(id, model); > label.add(AttributeModifier.append("col-lg-2")); > return label; > > > or: > formGroup.get("label")..add(AttributeModifier.append("col-lg-2")); > > > On Sun, Oct 13, 2013 at 2:25 PM, David Beer > wr

Re: wicket-bootstrap NoSuchMethodError: Url.parse

2013-10-21 Thread David Beer
Hi Which wicket-bootstrap version and how have you added wicket-bootstrap to your application? Thanks David On 21 October 2013 21:26, meduolis wrote: > Hello, does anybody knows, what I could be doing wrong with wicket-bootsrap > setup? > > I keep getting this error when entering wicket appl

Re: Installing Wicket application on a VPS server - How?!

2013-11-01 Thread David Beer
Hi Martino If you have glasshfish running the simple answer is to make sure that port 8080 (which is the default for glassfish) is open on your file. Build your WAR file of your application upload to your VPS and deploy to glassfish. You should then be able to see your application by doing the fol

Re: Installing Wicket application on a VPS server - How?!

2013-11-03 Thread David Beer
Hi Martino How is your WAR file produced is it via Maven or ANT, generally a WAR file is produced to a standard way. Can you deploy your application to a local instance of glassfish? Check the logs of the glassfish container, it should tell you if there was an error deploying the application. You

  1   2   >