[Announce] Wicket Stuff Core 1.5.5 Released

2012-03-13 Thread Michael O'Cleirigh
debugging artifact + corrected isFoc Michael O'Cleirigh (2): [wicket-security] Change wicket-util dependency type due to wicket upstream change commit wicketstuff-core 1.5.5 release pom's chrisco484 (2): Merge pull request #96 from raystorm/raystorm-inmethod-grid

[Announce] Wicket Stuff Core 1.5.3 Released

2011-11-15 Thread Michael O'Cleirigh
r registration/usage to be in line with the official solution written in the logback docs (register custom conversion words in the logback config file using Igor Vaynberg (1): Merge pull request #73 from tfreier/master Michael O'Cleirigh (1): [core] commit 1.5.3 release pom&#x

[Announce] Wicket Stuff Core 1.5.1 Released

2011-10-08 Thread Michael O'Cleirigh
nge to fix a warning. [push] Fix "unload request" check. Michael O'Cleirigh (1): commit 1.5.1 release pom's martin-g (1): [inmethod-grid] Change the artifactId of the examples module to be in sync (This listing was generated using: git shortlog -n wicketstuff-core-

[Announce] Wicket Stuff Core 1.4.18 Released

2011-08-11 Thread Michael O'Cleirigh
org.wicketstuff Ignore SBT's project/boot/ folder Rename folder css.modalx to css/modalx as it was in SVN export Chris Colman (1): Added wrapper Form around ModalWindow to comply with Wicket design and Michael O'Cleirigh (1): commit wicketstuff-core-1.4.18 release po

Re: RFC: Ten things every Wicket programmer must know?

2011-07-28 Thread Michael O'Cleirigh
Hi Jeremy, I think the most important things a wicket programmer should know relate to building their own set of resuable components.Here are my top ten on that theme: 1. Build a reusable set of components tailored for your business domain. 2. Solve a few problems then push up the commo

Re: wicketstuff tinymce development

2011-07-27 Thread Michael O'Cleirigh
Hi, Post a message on the dev list with your github username requesting commit access and you can be added. If you want to get started right away you can fork the wicketstuff/core project on github, make changes to your fork and then submit a pull request to get your changes incorporated bac

[Announce] Wicket Stuff Core 1.4.17.3 Released

2011-07-14 Thread Michael O'Cleirigh
if incorrect AutoResize feature is used Merge pull request #34 from jbrookover/core-1.4.x Michael O'Cleirigh (5): [datatable-autocomplete] make IAutoCompletingResponseValidator extend IClusterable Merge remote branch 'origin/core-1.4.x' into core-1.4.x [d

Re: Autocomplete - get model object

2011-07-08 Thread Michael O'Cleirigh
Hello, Have a look at the datatable-autocomplete project in wicketstuff-core: (maven details: org.wicketstuff:datatable-autocomplete:1.4.17.2) It allows you to show the autocomplete matches in a datatable which lets you show what ever fields of the object you want and have full control over h

Re: Wicket and OSGi

2011-06-25 Thread Michael O'Cleirigh
Hi Harald, Thanks for taking the time to implement your solution to the OSGi problem. If you could create a patch (or fork and then pull request; or commit directly) into the https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/wicket-bundle-parent module that would be ideal. I can

[Announce] Wicket Stuff Core 1.5-RC5.1

2011-06-25 Thread Michael O'Cleirigh
Martin Grigorov (1 commits): Merge pull request #35 from itoasuka/bugFix Michael O'Cleirigh (1 commits): commit 1.5-RC5.1 release pom's itoasuka (1 commits): Bug fix "SForm component has not passed model to a super-class." seb (1 commits): wicketstuff-p

Re: wicket-rest and Wicket 1.5-RC4.2: MarkupNotFoundException: Can not determine Markup

2011-06-16 Thread Michael O'Cleirigh
Hello, Once the wicket-rest project works it would be better placed into the wicketstuff/core repository as no snapshots or releases are done using sandbox code. But they come for free if you contribute into the wicketstuff/core repository. Mike I forked the project wicket-rest from googl

[Announce] Wicket Stuff Core 1.5-RC4.2 Released

2011-05-11 Thread Michael O'Cleirigh
iat Henrique (5 commits): [mootools-meiomask] more examples and unit tests [mootools-meiomask] more examples and unit tests [mootools-meiomask] more examples and unit tests [mootools-meiomask] delete obsolete class [mootools-meiomask] unit tests and suport to all meiomask types

[Announce] wicketstuff-core 1.4.17.1 released

2011-04-29 Thread Michael O'Cleirigh
f ssh://g...@github.com/wicketstuff/core.git into HEAD updated change log minis: code cleanup cretzel (3 commits): [console] fixing build dependencies [console] fixing hibernate driver class [console] remove java 6 dependencies Michael O'Cleirigh (3 commits):

Re: terrain view in gmap2

2011-04-28 Thread Michael O'Cleirigh
wicket-extensions 1.4.16 Cheers, Daku On Thu, Apr 21, 2011 at 5:14 PM, Michael O'Cleirigh< michael.ocleir...@rivulet.ca> wrote: Hi, The best way is to checkout the existing code and add in the changes needed to allow you to acc

Re: terrain view in gmap2

2011-04-26 Thread Michael O'Cleirigh
org.wicketstuff gmap2 1.4.16 org.apache.wicket wicket-extensions 1.4.16 Cheers, Daku On Thu, Apr 21, 2011 at 5:14 PM, Mic

Re: terrain view in gmap2

2011-04-21 Thread Michael O'Cleirigh
Hi, The best way is to checkout the existing code and add in the changes needed to allow you to access the new type (probably both Javascript and Java changes will be needed). GMap2 is in wicketstuff core here: https://github.com/wicketstuff/core (https://github.com/wicketstuff/core/tree/co

Re: Using one component's value as input for the other

2011-04-13 Thread Michael O'Cleirigh
Another way is to pass down a common IModel into both panels from a shared parent. Or to create an abstract readonly model on the label that will get the model object from the text field. e.g. Shared model from above. In Parent Component: IModelfieldModel = new Model() { public String ge

Re: Custom head title on subpage

2011-04-12 Thread Michael O'Cleirigh
You can normally use wicket in the or sections. I use this approach to set my page favicon (which is the tag). It should also work for the tag. e.g. put a wicket:id into the title tag in the head section of the base page: And then in your BasePage: onInitialize() { add (ne

Re: Form composed of Panel components

2011-04-11 Thread Michael O'Cleirigh
Extending FormComponentPanel is useful if you want your panel to return some IModel that is built from the various controls on the page. You can override convertInput and onBeforeRender to build/show the BusinessObject into the panel fields. It can make things a lot simpler because the valid

Re: Git workflow tip for WIcketstuff

2011-04-09 Thread Michael O'Cleirigh
.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html <http://reinh.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html Seems to be a good idea to squash commits into one single commit, before merging a feature branch to master. Except when there are API changes on Wicket core that ne

Re: Ajax header-contribution omits IE conditional comments

2011-04-08 Thread Michael O'Cleirigh
Hi Russell, There was an issue posted on something like this earlier this week about this but for 1.5-RC3. In one of the replies it mentioned this issue: https://issues.apache.org/jira/browse/WICKET-3420 I think its likely that your issue is related. See the original thread here: http://ap

Re: load list view when scroll

2011-04-05 Thread Michael O'Cleirigh
Hi Flori, Have you considered using a DataTable with its automatic pagination? I think using an ISortableDataProvider would be easier than an IModel> in terms of controlling the segmentation of the data. You need to let the loadable detachability of wicket work by reducing the amount of dat

[Announce] wicketstuff-core 1.4.17 and wicketstuff-core 1.5-RC3 released

2011-04-03 Thread Michael O'Cleirigh
Hello, Unfortunately for me just after releasing the 1.4.16.1 and 1.5-RC2.1 wicketstuff-core releases last week the vote occurred for the next set of wicket stable versions. Since they have been released I have just redone the release process for wicketstuff-core to create both a 1.4.17 and

Re: How Does Wicket Populate Form Components And Other Stuff

2011-04-03 Thread Michael O'Cleirigh
Hi Carlo, Look at the wicket interface wicket.model.IModel public interface IModel extends IDetachable { public T getObject(); public void setObject(T value); } Every component in wicket has a default model. Think of the textfield case where the model contains the string being entered.

Re: problems with spring integration

2011-03-29 Thread Michael O'Cleirigh
When you use spring there needs to be a wicket application bean defined in your applicationContext.xml, I believe the default name is "wicketApplication". So you can instruct it to be autowired by type and then use the @Autowired annotation to get services injected into the application. Howe

Re: [wicketstuff-core] Wicketstuff Developers please use a separate commit when fixing breakage due to wicket upstream changes

2011-03-27 Thread Michael O'Cleirigh
, Mar 26, 2011 at 5:13 PM, Michael O'Cleirigh< michael.ocleir...@rivulet.ca> wrote: Hello, Because of how the wicketstuff-core release process works there is the possibility that the current wicket upstream contains changes that are different from the latest stable wicket release. Wh

[wicketstuff-core] Wicketstuff Developers please use a separate commit when fixing breakage due to wicket upstream changes

2011-03-26 Thread Michael O'Cleirigh
Hello, Because of how the wicketstuff-core release process works there is the possibility that the current wicket upstream contains changes that are different from the latest stable wicket release. When I create a release branch I do so at the top of the present development branch (core-1.4.

[Announce] wicketstuff-core 1.5-rc2.1 released

2011-03-26 Thread Michael O'Cleirigh
commits): addition of the mootools-meiomask module Michael O'Cleirigh (6 commits): related to release. Nick Wiedenbrueck (5 commits): addition of the console module akiraly (18 commits): fix up to project configuration, especialy submodules. springreference changes and fixes for ups

[Announce] Wicketstuff-core 1.4.16.1 released

2011-03-26 Thread Michael O'Cleirigh
Hello, Following the contribution of the console module to wicketstuff-core I have cut a new release of 1.4.16.1. It remains based on wicket 1.4.16 but includes all changes on the core-1.4.x branch since the wicketstuff-core 1.4.16 release. The artifacts have been promoted and synced into t

Re: WicketStuff artifacts naming strategy

2011-03-26 Thread Michael O'Cleirigh
This is more complicated than I first thought. See this issue: http://jira.codehaus.org/browse/MDEPLOY-93 Essentially it seems that the deploy plugin does not honour the option and uploads in the original format when deploying. I will investigate this further but it won't be part of the next

Re: WicketStuff artifacts naming strategy

2011-03-25 Thread Michael O'Cleirigh
I'm planning on doing point releases this weekend for 1.4.16.1 and 1.5-rc2.1 and I'll make sure the artifacts generate using the longer name. Thanks, Mike In the most parent wicketstuff pom.xml: ${project.groupId}-${project.artifactId}-${project.version}.jar On Fri, Mar 25, 2011 at 9

Re: dynamic navigation/side content depending on login status

2011-03-17 Thread Michael O'Cleirigh
Hi, Look at the wicket-examples source code for:org.apache.wicket.examples.authentication.MyAuthenticatedWebSession This uses 'wicket-auth-roles' artifact and will give you the login detection and role information for the current user once you application is setup in the same way. Then on

Re: Fwd: wicket 1.5-rc2 and aggregate jar for osgi

2011-03-16 Thread Michael O'Cleirigh
Hello, The way releases have been working is that I take the current HEAD and then change the wicket.version to the current stable and the pom version to the next release. If you can commit your changes onto the master branch (wicket 1.5-SNAPSHOT) then I can create a new 1.5-rc2.1 point rele

Re: Storing ArrayList with over 10000 objects

2011-03-09 Thread Michael O'Cleirigh
Hi, Another way is to have a service manage the list. We have a reference data list (list of streets) in our application that has >100k elements that is stored in memory and we have a service hold one instance that is shared between all accessors (typically the autocomplete search fields) of

Re: DataProvider calling a Service/Dao that requires a domain object

2011-03-08 Thread Michael O'Cleirigh
Hi, Pass an IModelmodel into your dataprovider instead of the DomainObject itself. e.g. class MyPanel private final IModelmodel; public MyPanel (String id) { super (id); model = new LoadableDetachableModel() { protected DomainObject load() {// return object

[Announce] wicketstuff-core 1.4.16 is released.

2011-03-02 Thread Michael O'Cleirigh
- Version 1.4.16: Michael O'Cleirigh (10 commits) Summary: Brought the dojo integration back from the sandbox. Minor pom changes. seb (2 commits): Summary: - introduced IPushEventContext - introduced broad casting channels -> renamed IPushChannel to IPushNode -> added new I

[announce] Wicket Stuff Core 1.5-rc2 is released

2011-02-26 Thread Michael O'Cleirigh
rsion that match Wicket's dependencies) Improvements to the scala integration project. Michael O'Cleirigh (7 commits): Summary: Fixing breakage caused by upstream wicket changes since 1.5-RC1. Minor changes related to the release. Christian Strempfer (3 commits): Summa

Re: [Announce] Wicket Stuff Core 1.4.15 released

2011-02-16 Thread Michael O'Cleirigh
uff/core/tree/wicketstuff-core-1.4.15/info/refsnot found: did you run git update-server-info on the server? Please help! Regards, Pierre GOUPIL On Thu, Jan 6, 2011 at 2:34 AM, Michael O'Cleirigh< michael.ocleir...@rivulet.ca> wrote: Hi Martin, I appreciate your thoughts on the wicketstuf

Re: Ajax onChange but also submit all data on a form

2011-02-09 Thread Michael O'Cleirigh
Use AjaxFormSubmitBehavior instead of AjaxFormComponentUpdatingBehaviour. AjaxFormComponentUpdatingBehaviour is just for updating a single field in a form. AjaxButton uses AjaxFormSubmitBehaviour internally so look at that for an example. Mike Can you submit all of the data on a form based

Does anyone have example code using wicketstuff-dojo-api?

2011-02-07 Thread Michael O'Cleirigh
Hello, In wicket 1.3.x there was a fairly comprehensive dojo integration. The examples are still visible on the wicketstuff.org site. At some point the wicketstuff-dojo and wicketstuff-dojo-examples were archived into the attic in svn. This version used dojo version 0.4 Later there was a w

[Announce] wicketstuff-core 1.5-RC1.1 released

2011-02-07 Thread Michael O'Cleirigh
Hello, I have cut a point release for wicketstuff-core version 1.5-RC1.1. This is the second release against the wicket 1.5-RC1 version. There were problems with my release process for the wicketstuff-core 1.5-RC1 version (I promoted incomplete repositories) and the wicket trunk 1.5-SNAPSHO

Re: File upload progress bar

2011-02-02 Thread Michael O'Cleirigh
Hello, Have you looked at the wicket 1.4 examples here: http://wicketstuff.org/wicket14/upload (this is the source into the github mirror: https://github.com/apache/wicket/tree/wicket-1.4.x/wicket-examples) I tried both and they work to upload I'm not sure on the progress bar as I used a f

Re: Using Wicket with businness model classes that check for rules

2011-01-29 Thread Michael O'Cleirigh
Another way to handle this is to leverage the wicket validation process by extending FormComponentPanel. Your userEditPanel would be composed of individual textfields whose models are not linked to your IModel. Then implement the convertInput method that builds a new User object from the vali

Re: 1.5.x javadoc

2011-01-29 Thread Michael O'Cleirigh
The easiest is to just download it through maven (or in eclipse.org/m2e just check download sources and javadocs) but you can also get the javadoc.jar from the maven repository directly. i.e. wget http://repo2.maven.org/maven2/org/apache/wicket/wicket-core/1.5-RC1/wicket-core-1.5-RC1-javadoc.j

[announce] Wicket Stuff Core 1.5-RC1 is released

2011-01-22 Thread Michael O'Cleirigh
Hello, Following the release of wicket 1.5-RC1 I've cut a matching release for wicketstuff-core (https://github.com/wicketstuff/core). Many of the projects presently in the 1.4.15 release are present in this release. However there are several that still need to be adapted to the changes int

[wicketstuff-core] 1.4-SNAPSHOT is now the perpetual snapshot version for the core-1.4.x branch

2011-01-10 Thread Michael O'Cleirigh
Hello, If you are using the snapshot version from any wicketstuff-core artifact that is on the core-1.4.x branch you are going to have to change the version from 1.4.16-SNAPSHOT to 1.4-SNAPSHOT.I am getting rid of the next-stable-wicket-version-SNAPSHOT in favour of a direct current-wicke

Re: [Announce] Wicket Stuff Core 1.4.15 released

2011-01-05 Thread Michael O'Cleirigh
version is needed it should be called wicketstuff-1.4.15.1 So basically keep the number of branches code will be committed to low and keep the naming obvious for any developer, to make it easy to decide in which branch code needs to be committed to, to make it live in the upstream. mf Am 05.01

[Announce] Wicket Stuff Core 1.4.15 released

2011-01-04 Thread Michael O'Cleirigh
Hello, Following the release of wicket 1.4.15 I've cut a matching release for wicketstuff-core. This release was delayed due to the migration from sourceforge and subversion to github. The artifacts have been promoted and will be synced into the maven central repository within 1-2 hours.

[Announce] Migration of wicketstuff from sourceforge to github is now complete

2010-12-31 Thread Michael O'Cleirigh
Hello, I am pleased to announce that the migration of the wicketstuff project from sourceforge to github is now complete. Developers will again be able to commit their changes (pending registration as a committer); Users will be able to report their issues and new documentation can start to

Re: help me please!!! Wicket/Spring/Hibernate configuration woes

2010-12-15 Thread Michael O'Cleirigh
A good way to resolve the spring/hibernate/transactional errors first (to separate from the wicket errors) is to create a junit test case that bootstraps the spring context (everything except the "wicketapplication" bean). You can verify that your transaction demarcation is correct before inje

[Announce] Wicketstuff-core 1.4.14 Released

2010-11-29 Thread Michael O'Cleirigh
Hello, Following the release of wicket 1.4.14 I've cut a matching release for wicketstuff-core. The artifacts have been promoted and synced into the maven central repository. They can be retrieved like this: org.wicketstuff progressbar 1.4.14 The release tag is here: https://wicket-stu

Re: wicketNewbee Unable to finde Component with ID

2010-11-15 Thread Michael O'Cleirigh
Home Termine Mitglieder Mitglied werden Spiel vereinbaren

[wicketstuff-core] central change log for inclusion in the 1.4.14 release announce message

2010-11-05 Thread Michael O'Cleirigh
Hello, Since we don't have issue tracking right now for wicketstuff-core projects and because I am not familiar with all of the changes that are going on I've created a specific file in the 1.4.x stable branch to hold the key changes that should be announced with the 1.4.14 release. I've cre

Re: How can I create RadioGroups that are not defined by component hierarchy/layout ?

2010-11-03 Thread Michael O'Cleirigh
How can you nest them when you dont know how many there will be? On Wed, Nov 3, 2010 at 1:46 PM, Tom Howe wrote: Ah but I have varying number of groups, hence the radioGroupList ( Sorry I maybe didnt make this point clear enough). How can you nest them when you dont know how many there will

Re: How can I create RadioGroups that are not defined by component hierarchy/layout ?

2010-11-03 Thread Michael O'Cleirigh
Hi, The RadioGroup just needs to wrap the radio's in your markup. Typically it does not even render markup in the resultant page. Instead of this: < span wicket:id="radioGroupList"> < span wicket:id="radioGroup"/> < /span> do this: < /span> add (rg = new R

[announce] wicketstuff-core 1.4.13 released

2010-11-02 Thread Michael O'Cleirigh
Hello, Following the release of wicket 1.4.13 I've cut a matching release for wicketstuff-core. The artifacts have been promoted and synced into the maven central repository. They can be retrieved like this: org.wicketstuff push 1.4.13 The release tag is here: https://wicket-stuff.svn.

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Michael O'Cleirigh
give you access to svn. as far as builds, Michael O'Cleirigh takes care of those on regular basis. you might want to talk to him if you want more details. -igor On Fri, Oct 29, 2010 at 10:05 AM, Josh Glassman wrote: I would be willing to do so, at least temporarily. How do I get commit p

Re: how to add ImageAjaxLink into datatable???

2010-10-25 Thread Michael O'Cleirigh
Hi, The Column provides the component that is used for the cell in the table. Look at subclassing property column and overriding this method: public void populateItem(Item> item, String componentId, IModel rowModel) { item.add(new Label(componentId, createLabelModel(r

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread Michael O'Cleirigh
Hi, The wicketstuff push in 1.4.8 used jetty 6 (with the org.mortbay... package naming) where as the 1.4.12 release uses jetty 7 (with the org.eclipse.jetty ... package naming. I don't think the exact class you are looking for exists anymore. Here is the relevant section from the push-exam

Re: Accessing the cells in a row of a DataTable

2010-10-21 Thread Michael O'Cleirigh
Hi Mark, The cell's of a datatable are created by the IColumn. So you need to create a wrapping object or additional IModel that contains the edit-ability of each row and then use that inside the populateItem(...) method of the column to figure out which case to show (i.e. the label or the

Re: Problem with IHeaderResponse.renderOnEventJavascript

2010-10-13 Thread Michael O'Cleirigh
Hello, You can use: textfield.add (new AttributeModifier ("onkeydown", true, "if (window.event.altKey){if (window.event.keyCode == 80){document.getElementById('" + link.getMarkupId() + "').onclick();}}"); If you do this within the Component.onInitialize() you will have the true markupid of

Re: Initialization/Business Logic code before page loads

2010-10-06 Thread Michael O'Cleirigh
Hello, There is a sixth option, look at Component.onInitialize() which was added recently (in July 2010) to 1.4.x which lets you initialize the component after it has been added to the page. If you need to access state in the page and aren't passing a model through to your component this wo

Re: Workflow diagrams in wicket?

2010-10-01 Thread Michael O'Cleirigh
Hi I don't think there is any wicket implementation right now. But you can probably build something to do it. It looks like there are JSF components (I assume that you are looking for the same kind of wicket integration) that allow diagram creation. If you have access to the source you shou

Re: Programmatically change an HTML attribute value.

2010-09-30 Thread Michael O'Cleirigh
How about using a WebMarkupContainer? Then you can use an attribute modifier like the below example to set the class value. All you have to do is make the new component heirarchy match the markup heirarchy. ("even"))); add (c); c.add (new Form("form")); Another option might be to use

Re: Wicket Push for Java 5?

2010-09-30 Thread Michael O'Cleirigh
20:01 +0200, Sebastian wrote: Hi Mike, thanks for your resoponse. Maybe you can just have the push-comet module being compiled with Java 6? I am using the push.timer implementation currently. I recompiled it using Java5 and it works fine. Regards, Seb On 29.09.2010 19:55, Michael O'Cleirig

Re: Wicket Push for Java 5?

2010-09-29 Thread Michael O'Cleirigh
Hi Sebastian, Its related to the dependencies of the wicketstuff-push. When I switched the wicketstuff build to use a real JDK 5 instead of JDK 6 in compatibility mode errors like this were seen: [INFO] [INFO] Error

Re: onmouseover menu

2010-09-24 Thread Michael O'Cleirigh
Hello, Look into overriding dataTable.newRowItem (..) like this: protected Item newRowItem(final String id, int index, final IModel model) { Itemitem = new Item(id, index, model); item.add (new MyBehaviour(index, model)); } Then create a behaviour to implement the

Re: StackOverFlowError

2010-09-23 Thread Michael O'Cleirigh
Hello, Pages are serialized at the end of the request cycle (this includes at the end of ajax requests) Look at AbstractPageStore.serializePage(...) Specificically the call to Objects.objectToByteArray(page.getPageMapEntry()) which turns the page into a bytearray. http://grepcode.com/fil

Re: Inter-Component Validation (or how to marry two strangers)

2010-09-22 Thread Michael O'Cleirigh
Hi, You could look at creating a custom subclass of FormComponentPanel that would contain both panel A and panel B. Then for its validation you would process the checks that depend on the valid values from A and B. This way you don't need any type of "hack" and the data is naturally avail

[announce] wicketstuff-core 1.4.12 released

2010-09-16 Thread Michael O'Cleirigh
Hello, I've cut a matching release for wicket 1.4.12 that has just shown up in the maven central repositories. The stable branch for 1.4.12.1-SNAPSHOT is located here: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicketstuff-core-1.4.12 I will plan on releasing t

Preparing wicketstuff-core for wicket 1.5

2010-09-13 Thread Michael O'Cleirigh
Hello, wicketstuff-core trunk started tracking wicket 1.5-SNAPSHOT when the first milestone was released. Now that the second milestone will be out soon I think its time to start working on making the wicketstuff-core projects work with wicket 1.5. I've just committed some changes to trunk

Re: [wicket newbie] - appending query parameter to ajax link

2010-09-13 Thread Michael O'Cleirigh
I think its easier to attach an ajax behaviour to the text field (like onkeyup) that will push the changes to wicket for validation. You can use target.addComponent(indicator) to get the indication to be shown based on the results of the validation. Look at subclassing AjaxFormComponentUpdat

Re: [announce] wicketstuff-core 1.4.11 released

2010-09-10 Thread Michael O'Cleirigh
Hi Nino, Since I've begun picking up wicket 1.5.. Should we have a wicket stuff core 1.5? I could do some porting if needed? The wicketstuff-core trunk is tracking wicket-1.5-SNAPSHOT and hudson is building it (wicketstuff.org/hudson) even though I don't think anything can be built right no

[announce] wicketstuff-core 1.4.11 released

2010-09-10 Thread Michael O'Cleirigh
Hello, Last night I cut a matching wicketstuff-core release for wicket 1.4.11. The stable branch for 1.4.11.1-SNAPSHOT is located here: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicketstuff-core-1.4.11 I will plan on releasing the 1.4.11.1 point release within

Re: Issue Javascript command from Wicket

2010-09-09 Thread Michael O'Cleirigh
You can use the AjaxRequestTarget to emit javascript back to the browser like this: target.prependJavascript("alert('sent from the server');"); Typically you would have placed the javascript method definitions into the page so they would exist already in the browsers DOM and then you would j

Re: wicketstuff repo down again

2010-09-07 Thread Michael O'Cleirigh
Hi Steve, Wicketstuff-core artifacts have been released through the oss.sonatype.org repository and into central since version 1.4.7. (with the latest being 1.4.10.1) See: http://repo2.maven.org/maven2/org/wicketstuff/ Snapshots are here: https://oss.sonatype.org/content/repositories/snap

Re: DB lookup time-out within DataTable Iterator

2010-09-07 Thread Michael O'Cleirigh
Hi Frank , Are you sure that your dao is setting max results on the underlying query? The provider.iterator(...) should only be returning the current page values and typically the page size would be small like 25 to 100. Also it depends on your backend database since I know that some (older

Re: DropDownChoice - how to select default item

2010-09-01 Thread Michael O'Cleirigh
Hello, You should use a DropDownChoice and use the constructor that takes an IChoiceRenderer which allows you to define: 1. the text that is output for the account 2. the value that is output in the html for the account. This would be the place to pull out the long. I think the problem wit

Re: Wicket + Eclipse + Tomcat

2010-08-21 Thread Michael O'Cleirigh
Hello, If you are ok with using Jetty then I think the jetty:run plugin is the best way. With the m2eclipse plugin (http://m2eclipse.sonatype.org/installing-m2eclipse.html) you are able to launch war artifacts directly in debug mode. Most dynamic stack replacements work and all that is nee

[Notice] wicketstuff-core trunk is now tracking wicket 1.5-SNAPSHOT

2010-08-16 Thread Michael O'Cleirigh
Hello, Based on the vote there were 3 votes for and none against. All those who voted wanted trunk to track 1.5-SNAPSHOT versus a stable milestone. I have created a branch to track wicket 1.4-SNAPSHOT here: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicketstuff-co

[Vote] wicketstuff-core structure to support wicket 1.5 related development

2010-08-13 Thread Michael O'Cleirigh
Hello, With the first milestone of wicket 1.5 released there has been some interest expressed for a corresponding wicketstuff-core branch. Because wicket 1.5 is basically experimental right now I'm not sure if switching trunk to track it is the best idea. But eventually trunk will track 1.5

[announce] wicketstuff-core 1.4.10 released

2010-08-12 Thread Michael O'Cleirigh
Hello, Since wicket 1.4.10 was released this week it follows that a wicketstuff-core release is due as well. The branch for 1.4.10.1-SNAPSHOT is located here: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicketstuff-core-1.4.10 And the release tag: https://wicke

Re: [wicketstuff-core] Notice of java5/java6 restructuring ahead of 1.4.10 release

2010-08-10 Thread Michael O'Cleirigh
Hello, I have committed the changes related to moving the modules into seperate directories. Right now the hudson build server is not building snapshots correctly but I have just run through deploying them manually. I also have to fine tune how the maven compiler plugin is configured as right

[wicketstuff-core] Notice of java5/java6 restructuring ahead of 1.4.10 release

2010-08-10 Thread Michael O'Cleirigh
Hello, With wicket 1.4.10 almost here I am taking steps to get wicketstuff-core trunk to compile again. I have added profiles into the wicketstuff-core/pom.xml to allow building some modules using java5 and others using java6 but for release purposes I need to change the structure to somethi

Re: How to call javascript from panel constructor

2010-07-26 Thread Michael O'Cleirigh
Hello, You need to use a behaviour in your panel to emit the javascript. panel.setOutputMarkupId (true); panel.setOutputMarkupIdPlaceholder(true); panel.add(new AbstractBehaviour () { public void renderHead(IHeaderResponse response) { // markupid is determined for this pan

[announce] wicketstuff-core 1.4.9.2 released

2010-07-21 Thread Michael O'Cleirigh
Hello, I've staged and promoted a new wicketstuff-core version 1.4.9.2 and it is available through maven central now. The artifacts can be retrieved like this: org.wicketstuff datatable-autocomplete 1.4.9.2 The release contains all changes that were committed on the 1.4.9.x branch between

Re: Submitting a component value on a ajax call of a different component

2010-06-24 Thread Michael O'Cleirigh
Hello, What you need to do is add a parameter to the url of the behaviour. But the trick is that you don't attach a fixed string but rather an &otherFieldValue=' + document.getElementById(otherFieldComponentMarkupID).value which will use javascript to extract the current value of the referen

Re: Autoupdate Components of a ParentPage within a Ajax Request

2010-06-18 Thread Michael O'Cleirigh
On 06/18/2010 09:43 AM, peer wrote: Hi Wickets, My initial situation: A ParentPage which contains a TabbedPanel with tabs. On the Parent Page is a Feedbackpanel which works globally and displays every error message. The tabs in the TabbedPanel don't know anything about the Feedbackpanel of the p

[announce] wicketstuff-core 1.4.9.1 released

2010-06-15 Thread Michael O'Cleirigh
Hello, I've staged and promoted a new release of wicketstuff-core version 1.4.9.1. It is available in maven central now. All of the artifacts are available from maven central like this: org.wicketstuff datatable-autocomplete 1.4.9.1 Each module has its own artif

Re: wicketstuff-repo

2010-06-15 Thread Michael O'Cleirigh
Hello, The release artifacts for wicketstuff-core since 1.4.7 have been deployed through sonatype and are available through maven central. http://repo2.maven.org/maven2/org/wicketstuff/ This is only for the projects in wicketstuff-core directory structure, if you are looking at one of the ot

Re: [wicketstuff/wicket-contrib-jasperpreports] Is anyone supporting this?

2010-06-08 Thread Michael O'Cleirigh
Hi Charles, As long as wicketstuff-core builds locally with wicket-contrib-jasperreports in the core pom (as a module) you can commit the core pom. I have a hudson instance running that will build and auto deploy into the sonatype snapshot repository a 1.4.10-SNAPSHOT version of your artifa

[wicketstuff-core] planning a 1.4.9.1 point release next week.

2010-06-04 Thread Michael O'Cleirigh
Hello, For release I'm doing at work I need to generate a wicketstuff-core 1.4.9.1 release. I see that there have been some updates to trunk (1.4.10-SNAPSHOT) so if you would like these changes to be included in the this point release please back port your changes to the 1.4.9 branch. I've

[Announce] Wicketstuff-core 1.4.8 and 1.4.9 released

2010-05-30 Thread Michael O'Cleirigh
Hello, Based on the 2 positive votes (+my vote) and because any problems with these releases can be fixed with a point release I've promoted the 1.4.8 and 1.4.9 staged wicketstuff-core releases into the central maven repository. Release artifacts are now available automatically through maven

[Vote] release wicketstuff-core 1.4.8 and 1.4.9

2010-05-28 Thread Michael O'Cleirigh
Hello, I've created a new template for wicketstuff-core releases. After every wicket release we will create a branch from trunk that locks in the wicket version and cut a matching release like wicketstuff-core-1.4.9. At a certain point in time (either a window of time to be determined) or m

[wicketstuff-core] trunk is now 1.4.10-SNAPSHOT and branches are in place to allow subsequent releases per wicket release

2010-05-28 Thread Michael O'Cleirigh
Hello, Based on the feedback I received on when to cut the 1.4.8 and 1.4.9 releases I have decided to perform them now versus later. I have created branches for each wicket version starting from 1.4.7 through 1.4.9. 1.4.7 line : https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff

Scheduling the 1.4.8 and 1.4.9 wicketstuff-core releases

2010-05-25 Thread Michael O'Cleirigh
Hello, Now that wicketstuff-core 1.4.7 is released I want to schedule when the 1.4.8 and 1.4.9 releases should be performed to give everyone enough time to get their changes in and do any related testing. I think separate branching could be an option but we should wait until after we catch u

[announce] wicketstuff-core 1.4.7 released

2010-05-24 Thread Michael O'Cleirigh
Hello, Based on the positive reception for a 1.4.7 wicketstuff-core release, 4 positive votes (3 + mine) and no negative, I promoted the staged release into the sonatype repository and filed the ticket for central sync up. The sync up has now occurred and the 1.4.7 artifacts are available

[Vote] Release wicketstuff-core 1.4.7

2010-05-22 Thread Michael O'Cleirigh
Hello, I was able to successfully stage a release for wicketstuff-core 1.4.7 into the oss.sonatype.org infrastructure. All of the 1.4.7 artifacts can be retrieved from this staging repository: http://oss.repository.sonatype.org/content/repositories/orgwicketstuff-124/ This is the subversion

[NOTICE] wicketstuff-core artifacts now available through oss.sonatype.org

2010-05-22 Thread Michael O'Cleirigh
Hello, There was discussion on d...@wicket.apache.org about migrating away from self hosted developer tools (jira, wiki and maven repository) for wicketstuff.org. Because I wanted SNAPSHOTS of wicketstuff to be generating and Teamcity keeps getting banned by sourceforge I've done the setup t

Re: Best practises question

2010-05-15 Thread Michael O'Cleirigh
Hello, I'm not sure on the answer to your question about the anonymous inner class but in general sharing models between pages can be a bad idea. The memory issues comes into play if the IModel is like Model and the contained object is not transient (it is serialized as part of the page). W

  1   2   >