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

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 Grigo

Setting Wicket Configuration Mode to Deployment

2017-11-17 Thread David Beer
the WicketFilter class sets this by default to development and unless overridden in the annotations doesn't seem like it can be set. Is this correct behaviour, what is the best way to set the value at build time? I am using wicket 7.9.0. Thanks David

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 <mgrigo...@apache.org> wrote: > Hi David, > > On Thu, Aug 31, 2017 at 3:40 PM, David

FomGroup and BootstrapSelect not setting has-error CSS

2017-08-31 Thread David Beer
lly add the CSS in chrome it applies correctly. Any thoughts and suggestions. Thanks David

StringResouceModel Can't find key with BootstrapCheckbox

2017-05-25 Thread David Beer
users", addUsers, Model.of("Addd another user")); BootstrapCheckbox addMoreUsersCheckbox = new BootstrapCheckbox("checkbox-add-more-users", addUsers, new StringResourceModel("checkbox")); How do I reference the value checkbox in the page properties file properly? Thanks David

Re: Test Page renders with Nested Panel

2017-02-14 Thread David Beer
> Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Feb 13, 2017 at 11:39 PM, David Beer <david.m.b...@gmail.com> > wrote: > > > Hi Martin > > > > Thanks for the PR. So the solution is to remove JavaEE EJB ref

Re: Test Page renders with Nested Panel

2017-02-13 Thread David Beer
the EJB to a spring bean. So the only other way to test the EJB approach is to pass a mock value to the constructor and have it check if the value is null as the container will Inject the value. David On 13 February 2017 at 21:20, Martin Grigorov <mgrigo...@apache.org> wrote: > https://g

Re: Test Page renders with Nested Panel

2017-02-13 Thread David Beer
/copperarrow/model/dataproviders/UserAccountDataProvider.java This fails unable to attach container because UserDAO is always null even though I have added it to the applicationmock context. On 13 February 2017 at 19:57, Martin Grigorov <mgrigo...@apache.org> wrote: > Hi David, > &

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 <mgrigo...@apache.org> wrote: > Hi, > > > On Fri, Feb 10, 2017 at 12:08 AM, David Beer <david.m.b...@gmail.com> >

Test Page renders with Nested Panel

2017-02-09 Thread David Beer
e public void setUp() throws Exception { super.setUp(); usersDataProvider = mock(UsersDataProvider.class); adminViewPage = new AdminViewPage(); doNothing().when(usersDataProvider).checkDAO(); when(usersDataProvider.size()).thenReturn(0L); tester = getTester(); tester.startPage(adminViewPage); } @Test public void renderSuccessfully() throws Exception { tester.assertRenderedPage(AdminViewPage.class); } } Any pointers would be great. Thanks David

Re: Ajax Error When using File Upload

2017-01-25 Thread David Beer
Hi Martin Thanks for confirming have managed to enable the correct security settings all is working again. Thanks David On 25 January 2017 at 21:17, Martin Grigorov <mgrigo...@apache.org> wrote: > Hi David, > > I think it is Spring Security. > Check that the value of X-Fram

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 "

Re: Wicket 7 + Spring Security 7

2017-01-09 Thread David Beer
, which is why the signin code was not get used. Which meant that error's were being handle by the spring security form which is why I couldn't access them. I have now configured everything properly and the example project shows how it needs to be configured. Thanks David On 9 January 2017 at 19:22

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-06 Thread David Beer
on github here https://github.com/dmbeer/wicket-7-spring-security/tree/master. I wondered if could have a quick look and see if everything is correct and point me in the right direction for obtaining the error messages. Thanks David On 31 December 2016 at 06:12, Martin Grigorov <martin.gr

Wicket 7 + Spring Security 7

2016-12-30 Thread David Beer
with apache wicket? It would be really useful if a basic project could be shared. Thanks David Happy New Year All

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 <mattr...@gmail.com> wrote: > I extensively use Wicket+OSGi. Works great! Modular web applications are > totally doable. Follow Martin's adv

Testing Page Rendered when using AnnotationsShiroAuthorizationStrategy

2016-10-15 Thread David Beer
behavior definition for the preceding method call: Has anyone been able to test a page using the Shiro Annotation Provider or even Spring Security. Thanks David

Re: WicketTester Access Component Specific resource bundles

2016-09-09 Thread David Beer
an easier way to get the resource? Thanks On 9 September 2016 at 22:44, David Beer <david.m.b...@gmail.com> 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 > wicke

Re: WicketTester Access Component Specific resource bundles

2016-09-09 Thread David Beer
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 Tester class and Wicket Application. Thanks David On 5 September 2016 at 21:02, Martin Grigorov <mgr

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

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

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 <martin.grigo...@gmail.com> wrote: > On May 6, 2016 9:05 PM, "David Beer" <david.m.b...@gmail.com> wrote: > > > > Hi Guys > > > > I am trying to utilise

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: Wicket 7 Security and JBoss Keycloak

2016-04-22 Thread David Beer
need to create a filter for the authorization process. Thanks David On 22 Apr 2016 9:57 a.m., "Martin Grigorov" <mgrigo...@apache.org> wrote: Hi, I don't know how Keycloak works but from my experience with Spring Security and Apache Shiro you have to create an AuthorizationStrategy

Wicket 7 Security and JBoss Keycloak

2016-04-21 Thread David Beer
am not sure how to secure the pages I want to. Has anybody tried integrating wicket with keycloak before or even picketlink. Thanks David

Problems with Border ID

2015-04-30 Thread David Kaufman
: border:border_body:content:border:border_body:content. Thanks a lot, David

Subclassing Localizer

2015-04-27 Thread David Kaufman
); } } === As you can see, I simply want to return the key if a certain flag is set. Is this somehow possible by using the IStringResourceLoader interface? Any help is appreciated. Thanks, David

How to get a map of parameters of a request in wicket 6

2015-04-15 Thread David Kaufman
parameterNames = getRequest().getRequestParameters().getParameterNames(); Do I have to built the map myself or is there a convenience function somewhere I overlooked? Thanks, David

compiling wicket 6.19.0 from source fails -

2015-04-14 Thread David Kaufman
, vendor: Oracle Corporation Java home: /usr/lib/jvm/jdk1.8.0_31/jre Default locale: en_US, platform encoding: UTF-8 OS name: linux, version: 3.13.0-49-generic, arch: amd64, family: unix Any help is greatly appreciated. Thanks, David

Re: Concering Borders in Wicket 6

2015-04-14 Thread David Kaufman
Thanks Martin! That was the explanation that I expected. Thanks a lot, David 2015-04-14 10:42 GMT+02:00 Martin Grigorov mgrigo...@apache.org: Hi, Your description is a bit confusing/unclear. The markup looks OK to me. YourBorder should add container1 and container2 components. Any user

Concering Borders in Wicket 6

2015-04-13 Thread David Kaufman
around the border, (except the border itself), I don't have to be concerned about adding any container to the border. Is this assumption correct? Thanks -David

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 sabmoo...@gmail.com wrote: I've been searching

Re: TextTemplateHeaderContributor from 1.4 to 6

2015-03-17 Thread David Kaufman
is that the function addJavaScriptFile is accessable from subclasses which either call the function or not, i.e. only in a few cases the header should be actually added. Thanks, David 2015-03-16 15:16 GMT+01:00 Martin Grigorov mgrigo...@apache.org: Hi, #renderHead(IHeaderResponse response

TextTemplateHeaderContributor from 1.4 to 6

2015-03-16 Thread David Kaufman
()); Unfortunately, I can't find a TextTemplate which mimics the behavior in my 1.4 code snippet. I found a JavaScriptTemplate, but I was unable to find a way to use it, as it needs a TextTemplate instance in its constructor. Thanks, David

Accessing PageParameters within Panel

2015-03-12 Thread David Kaufman
, David

How to partially update listview on scroll.

2014-10-30 Thread David Vdd
Hello, I'm trying to make a component that listens to scroll events and loads data when needed. When the scrollbar reached the bottom or the top. The component should have 2 possible usecases :one that keeps all the previous data and one that only show x rows and reloads them both ways(up and

Re: DataTables Webjars Error

2014-08-28 Thread David Beer
and Consulting https://twitter.com/mtgrigorov On Tue, Aug 26, 2014 at 9:33 PM, David Beer david.m.b...@gmail.com wrote: Hi Martin Thanks for spotting that will have a look. PR against 6.0x branch? Thanks David On 26 August 2014 19:15, Martin Grigorov mgrigo...@apache.org wrote

Re: DataTables Webjars Error

2014-08-28 Thread David Beer
...@apache.org wrote: Hi David, 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 david.m.b...@gmail.com wrote: Hi

Re: DataTables Webjars Error

2014-08-26 Thread David Beer
/java/org/wicketstuff/datatables/DataTablesCssReference.java javascript reference is the same. I have simply copied the example code. Thanks David On 26 August 2014 18:02, Martin Grigorov mgrigo...@apache.org wrote: Hi, How do you use the webjar ? Show us the code of the resource reference's

Re: DataTables Webjars Error

2014-08-26 Thread David Beer
Hi Martin Thanks for spotting that will have a look. PR against 6.0x branch? Thanks David On 26 August 2014 19:15, Martin Grigorov mgrigo...@apache.org wrote: OK. I see 1.10.2 has changed the way it packs the css/js resources - there is no 'media' folder anymore. Please try it and send

DataTables Webjars Error

2014-08-25 Thread David Beer
-bootstrap, that works fine. Any Ideas. Thanks David

Properties Override

2014-08-11 Thread David Beer
the component from. What is the best way of doing this I have tried adding a properties file the same name as my my panel and adding the values. But I am not having much luck getting them to override the values. Any suggestions most hopeful. Thanks David

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 david.m.b...@gmail.com wrote: Hi All I am trying to change some values specified in a properties file for a third party component

Re: Properties Override

2014-08-11 Thread David Beer
, David Beer david.m.b...@gmail.com wrote: Hi Martin My properties file is named ProfileImageUploadPanel.properties same as the the java class except for the extension. In the Java class I reference the FileInput widget which contains the values I need to overide. The contents of my

Re: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread David Beer
modules. This file must go in the correct location, for WAR it is in WEB-INF directory. I hope this helps if you have any other questions feel free to ask. David On 8 August 2014 14:08, Stefan Lindner stefan.lind...@visionet.de wrote: Hi Sebastien, just a few final words abot my Wildfly

Re: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread David Beer
...@gmail.com wrote: Hi Stefan, David, Martin, Well, I agree about modules, I did it for oracle-db drivers. About slf4j, the module/jar already exists in the server (modules\system\layers\base\org\slf4j) so no need to declare it, I also agree. I am currently wondering if the transitive dependency from

Re: Displaying Images Stored in DB on Openshift

2014-07-14 Thread David Beer
to work so randomly I cleared the browser cache and all works well. Is there a way to stop the browser caching the images if I wanted to? Thanks David On 14 July 2014 08:41, Martin Grigorov mgrigo...@apache.org wrote: Hi, Is it possible to attach remote debugger to OpenShift and see what

Re: Displaying Images Stored in DB on Openshift

2014-07-13 Thread David Beer
is a BufferedImage. The file command outputs the following. I am running Wildfly 8.1.0. Any suggestions . Thanks David On 7 July 2014 21:18, David Beer david.m.b...@gmail.com wrote: Hi All I am developing and application that is running on openshift. The application is still in heavy

Displaying Images Stored in DB on Openshift

2014-07-07 Thread David Beer
be most helpful. Thanks David

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 valentin.rob...@gmx.com wrote: well the book seems great, unfortunatly google doesn't share the pages that are usefull,

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

FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
panel is added to the Ajax Target. The form Submit code on the panel: ((UserAccountPage) this.getPage()).feedback.success(Password successfully updated); setResponsePage(UserAccountPage.class); Any ideas as to why the feedback panel is not displaying the message. Thanks David

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
I am actually reloading the same page, due to making sure that the forms are reset correctly and the associated data. How do you mean via the session? is it just as possible to send them using PageParameters and interpret them in the constructor and then add the message to the feedback. David

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 mgrigo...@apache.org wrote: Hi, getSession().success(...) Martin Grigorov Wicket Training and Consulting On Tue, Apr 8, 2014 at 5:05 PM, David Beer david.m.b...@gmail.com

Re: Wicket CDI 1.1

2014-04-07 Thread David Beer
-shiro-authorizingrealm. I have just confirmed that this works as described. Wicket CDI works well in injecting values to my components including pages and panels. Thanks for the tip about NonContextual.of() method that is good to know. Thanks David On 7 April 2014 14:36, Emond Papegaaij

Wicket CDI 1.1

2014-04-04 Thread David Beer
init(): new CdiConfiguration().setPropagation(NONE).configure(this); Thanks David

Re: Adding/Remiving Panels

2014-04-02 Thread David Beer
. Make sure you called component.setOutputMarkupId(true) on the component whose 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

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 david.m.b...@gmail.com wrote: Hi I am able to remove the panel by accessing the top most component (form) and setting visible to false

Re: Netbeans and Compile On Save

2014-04-01 Thread David Beer
and Glassfish but not JBoss containers. I have this working great with tomcat but not JBoss Containers or wildfly. The problem is that this NetBeans specific technology and uses the availble connector for deploying to web container all of them are different. Thanks David On 1 April 2014 08:08

Re: JBoss Forge Plugin

2014-04-01 Thread David Beer
useful for wicket and adding component and pages quickly and easily. Thanks David On 1 April 2014 08:54, Martin Grigorov mgrigo...@apache.org wrote: Forgot to give you a reference - https://www.npmjs.org/package/generator-scalatra Scalatra is also Servlet based framework like Wicket

Re: Adding/Remiving Panels

2014-04-01 Thread David Beer
the content. Thanks David On 1 April 2014 08:04, Martin Grigorov mgrigo...@apache.org wrote: Hi, On Mon, Mar 31, 2014 at 1:53 PM, David Beer david.m.b...@gmail.com wrote: Hi All I am in the process of building a user account page, which will have a menu on the left

Adding/Remiving Panels

2014-03-31 Thread David Beer
panels and parent page. Any thoughts and examples are always appreciated. Thanks David

JBoss Forge Plugin

2014-03-28 Thread David Beer
, the same would also be done for creating a panel and other commonly used parts. What do people think? Any suggestions on Features. Thanks David

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
. The other is that the latest code failed to build, and I am not sure how recent the deployed jars are in maven. The third is more of a question is there a way of disabling webjars for bootstrap and using CDN. like 0.9.3-SNAPSHOT does/ Thanks David On 21 March 2014 09:40, Martin Grigorov mgrigo

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 david.m.b...@gmail.com wrote: Hi Martin I have been wondering about switching to 0.9.3-SNAPSHOT, I have

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
(this); } Thanks David On 21 March 2014 12:20, Martin Grigorov mgrigo...@apache.org wrote: We didn't have to do any refactorings to upgrade Wicket-Bootstrap from 3.0 to 3.1. As usual - let us know if you have any issues! Martin Grigorov Wicket Training and Consulting On Fri, Mar 21, 2014

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
Hi Martin Have created a new issue. After a bit more research this seems to be becasue of loading a theme. Full Stacktrace and code in issue https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/344. Thanks David On 21 March 2014 12:50, Martin Grigorov mgrigo...@apache.org wrote: Please

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: 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

Re: Wicket-Bootstrap Question

2014-01-10 Thread David Beer
Hi Joesph Take a look at this simple example project I did of getting wicket-bootstrap3 working. https://github.com/dmbeer/wicket-bootstrap-example Thanks David On 09/01/14 03:40, Joseph Mokenela wrote: Hi, I am not sure whether this is the right place to ask *wicket-bootstrap*specific

Re: java.lang.NoSuchMethodError: de.agilecoders.wicket.core.util.References.renderWithFilter

2013-12-13 Thread David Beer
. https://github.com/dmbeer/wicket-bootstrap-example Hope this helps. Thanks David On 13/12/13 12:14, terryTornado wrote: Hi Martin, thanks for answering. Seems i have the latest with the code changes. I have delete the dependend local .m2 repositories and rebuild the app new with the same

Re: getPage(pageReference) == null since Wicket 6.10.0

2013-11-06 Thread David Beer
JBoss AS 7 and Wildfly 8 work nicely with Wicket. On 6 November 2013 15:25, Ondrej Zizka ozi...@redhat.com wrote: Try the JBoss EAP 6.1: http://www.jboss.org/jbossas/downloads/ I didn't have much trouble using that with Wicket 6.x. Ondra On 5.11.2013 18:19, Dieter Tremel wrote: Am

How to use BootStrap3 ProgressBar and UpdateableProgress Bar

2013-11-06 Thread David Beer
/div /div span wicket:id=progress[progressbar]/span /form Thanks David

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

2013-11-03 Thread David Beer
can also deploy an application via the admin console in glassfish, you could try that and see if everything works. David On 2 November 2013 23:34, MartinoSuperman martinosuper...@live.nl wrote: Hi David, Thanks for your help and answer. I tried what you did. In the command line, I

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

2013-11-01 Thread David Beer
the following web address:8080/Name of application WAR FILE. If you you wish to get rid of 8080 you need to use Apache or Webserver than can redirect to glassfish and back. David On 31 October 2013 22:33, MartinoSuperman martinosuper...@live.nl wrote: Hi, I have a website address online

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 meduol...@gmail.com wrote: Hello, does anybody knows, what I could be doing wrong with wicket-bootsrap setup? I keep getting this error when

wicket-bootstrap3 FormControl Position the Label

2013-10-13 Thread David Beer
=form-group label for=inputEmail1 class=col-lg-2 control-labelEmail/label div class=col-lg-10 input type=email class=form-control id=inputEmail1 placeholder=Email /div /div Where label should have the class col-lg-2 or similar col definition hw could I add this. Thanks David

Re: wicket-bootstrap3 FormControl Position the Label

2013-10-13 Thread David Beer
Hi Martin Thanks for this I new there was a way of doing this. For some reason couldn't see it works great thanks. David On 13 October 2013 12:36, Martin Grigorov mgrigo...@apache.org wrote: Hi, Override de.agilecoders.wicket.core.markup.html.bootstrap.form.FormGroup#newLabel : Label

[wicket-bootstrap3] How to add Fontawsome

2013-10-11 Thread David Beer
? Thanks David

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 david.m.b...@gmail.com wrote: Hi All I see that Fontawsome was added to the extensions for wicket-bootstrap

Wicket Bootstrap 3

2013-10-07 Thread David Beer
it to find the resources. David

Re: Wicket-bootstrap Bootstrap 3 support

2013-09-25 Thread David Beer
Hi Michael Great will take a look later. Have also checked out the source as well. Thanks David On 25 September 2013 14:28, Michael Haitz michael.ha...@1und1.de wrote: Hi, i've deployed a 0.9.0-SNAPSHOT to sonatype this morning ;) dependency groupIdde.agilecoders.wicket/groupId

Re: How to dynamically add a hyperlink (BookmarkablePageLink) to DefaultDataTable that is rendered as an anchor

2013-06-17 Thread David Solum
Hi, As I said in my original post, that markup works, but the BookmarkablePageLinks that I add are rendered as div tags with onclick handlers. I am trying to get anchor tags. I believe the post that Sven referred to is a step in the right direction, but my markup gives me the unclosed tag

Re: How to dynamically add a hyperlink (BookmarkablePageLink) to DefaultDataTable that is rendered as an anchor

2013-06-17 Thread David Solum
Here is the simplest thing I've tried: wicket:panel table wicket:id=dataTable border=0 cellpadding=1 cellspacing=1 width=90% a href=# wicket:id=link /a /table /wicket:panel (I added the spaces after the angled brackets just for

Re: How to dynamically add a hyperlink (BookmarkablePageLink) to DefaultDataTable that is rendered as an anchor

2013-06-17 Thread David Solum
If you're saying to add the fragment tag outside the table tag, I don't get any errors, but the Links I add are still rendered as div tags with onclick handlers. What would tie the BookmarkablePageLinks that I add to the DefaultDataTable to the anchor tags in your markup? Thank you. -- View

How to dynamically add a hyperlink (BookmarkablePageLink) to DefaultDataTable that is rendered as an anchor

2013-06-14 Thread David Solum
I am using Wicket 6.8 and have a sortable DefaultDataTable that gets its columns programmatically. The markup to get this table and the dynamically generated columns simple (I've added spaces so it all shows): wicket:panel table wicket:id=dataTable border=0 cellpadding=1

Re: How to dynamically add a hyperlink (BookmarkablePageLink) to DefaultDataTable that is rendered as an anchor

2013-06-14 Thread David Solum
Yes Sven, that is where I got the HTML I posted that gives me the Close tag not found error. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-dynamically-add-a-hyperlink-BookmarkablePageLink-to-DefaultDataTable-that-is-rendered-as-an-ar-tp4659502p4659514.html

Re: WicketTester CDI and WicketApplication

2013-06-06 Thread David Beer
Hi Cedric Thanks for this most useful with some searching th internet I managed to get the test class running with testng as well. One thing to note though, if you don not use Conversations you need to add the following to the new CdiConfiguration, .setPropagation(NONE). Thanks David On 02

WicketTester CDI and WicketApplication

2013-06-01 Thread David Beer
Application Container. Do I need to create a mock Web Application class which simulates a dummy Bean Manager? Is there any guides specific to Wicket? Thanks David - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: WicketTester CDI and WicketApplication

2013-06-01 Thread David Beer
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:20, Cedric Gatay wrote: Hi, I usually use Arquillian to deploy a CDI context in my tests which require injection

Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread David Beer
(Model.of(Creating Repository; notificationPanel = new NotificationPanel(notification, new ContainerFeedbackMessageFilter(form)); add(notificationPanel); Any ideas, suggestions are most helpful. Thanks David

Re: Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread David Beer
Hi Martin Thanks for the reply issues submitted against the github project https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/187 Thanks David On 29/05/13 13:18, Martin Grigorov wrote: Hi, File a ticket please. Since you use -SNAPSHOT you may have your fix pretty soon ;-) On Wed, May

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

Re: DataTable update components on Page Change

2013-05-12 Thread David Beer
Thanks for your help really appreciated David On 12/05/13 09:40, Francois Meillet wrote: Hi David, With the event mechanism, you don't need to keep reference. Yours components keep loosely coupled. In the onPageChanged() method you can send an event like this send(getPage(), Broadcast.BREADTH, new

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: DataTable update components on Page Change

2013-05-11 Thread David Beer
(this, dataProvider)); addBottomToolbar(new NoRecordsToolbar(this)); addBottomToolbar(new BootstrapNavigationToolbar(this)); } } Any help or examples are much appreciated. Thanks David On 11/05/13 08:27, Francois Meillet wrote: You can use the event handling mechanism

DataTable update components on Page Change

2013-05-10 Thread David Beer
my form submit buttons. The buttons are Ajax enabled. Thanks David - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

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

  1   2   3   4   5   6   7   >