You can try wicket-plugin [1].
[1] https://github.com/decebals/wicket-plugin
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Pluggable-architecture-for-wicket-application-tp4676135p4676192.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi Martin
I don't understand you. I talk about the browser memory and I feel like
you're talking about java memory. My problem is the browser (tab process)
memory and not the java memory.
Best regards,
Decebal
--
View this message in context:
Thanks Martin!
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Wicketstuff-TimerPushService-memory-leak-tp4665418p4665548.html
Sent from the Users forum mailing list archive at Nabble.com.
-
To
I created another test. It' very simple. Just put a Label in a HomePage and
add AjaxSelfUpdatingTimerBehavior on this component (label.add(new
AjaxSelfUpdatingTimerBehavior(Duration.seconds(2)));)
The results are the same: the memory increases with time. The ajax call
looks ok.
To monitor the
Maybe wicket-plugin [1] help you.
Best regards,
Decebal
[1] https://github.com/decebals/wicket-plugin
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Register-Wicket-Components-Runtime-tp4664724p4664743.html
Sent from the Users forum mailing list archive at
Thanks! It is a major feature in Wicket 7.
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Component-Queueing-is-here-master-aka-Free-Wicket-From-Hierarchy-Hell-aka-Markup-Driven-Component-Tre-tp4664719p4664722.html
Sent from the Users forum mailing list archive at
Hi
I have an issue on wicket-jade
(https://github.com/decebals/wicket-jade/issues/1) and I cannot find a nice
solution.
The use case is that I have an EmbeddedPanel (html markup) in a JadePanel
(jade markup) and when I try to run my test I get a MarkupNotFoundException:
Failed to find markup
Forget about. I resolved my problem much easy.
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/About-getMarkupType-from-MarkupContainer-tp4664340p4664343.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi Sebastian
I see that in Component.internalBeforeRender() the call of onBeforeRender()
is conditioned by determineVisibility() and this explains all.
I think it's fine to change the hierarchy in onBeforeRender() ... , this is
even made explicit in the source
code of
Hi
First, the scenario (a simplified version):
I have a XPage (extends WebPage) and in the constructor of this page I want
to add a YPanel (extends Panel) but depending on a condition.
if (condiiton) {
add(new YPanel(panel));
} else {
add(new WebMarkupContainer(panel).setVisible(false));
I tested with:
public class MyPanel extends Panel {
public MyPanel(String id) {
super(id);
}
@Override
protected void onBeforeRender() {
super.onBeforeRender();
add(new MyLabel(l1,
Hi
Is it someone that can make a clean on the wicket forum? It is frustrating
to see a lot of spam posts (for example in start page only few posts are non
spam). For a new coming these spam posts create a bad impression.
Thanks,
Decebal
--
View this message in context:
Sorry, I talk about Mailling Lists [1]
[1] http://apache-wicket.1842946.n4.nabble.com/
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Please-remove-the-spam-post-from-the-wicket-forum-tp4662979p4662981.html
Sent from the Users forum mailing list archive at
Or it's a possibility to filter these spam posts? How do you read these
mailling posts?
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Please-remove-the-spam-post-from-the-wicket-forum-tp4662979p4662982.html
Sent from the Users forum mailing
Thanks Martin
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Please-remove-the-spam-post-from-the-wicket-forum-tp4662979p4662984.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi
I write this post for sven as a feedback for his excellent tree component
from wicket 6.
I encounter a problem with the tree component (nothing happens on expand) in
the conversion process of NextReports from wicket 1.5 to wicket 6. My
problem happened because the NestedTree.updateBranch
Hi
I have a platform for you (I created with other two friends, some time ago.)
:) I like to open this platform and to publish the code on github under a
friendly open source license (probably Apache License).
Now the platform it's converted for wicket 6 but need more tests. On this
platform we
My mistake. myagora.ro is built with wicket 1.4
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Blogging-platform-written-in-Wicket-tp4662033p4662051.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi
I post this announce on the wicket forum because NextReports Server [1] is a
wicket application and maybe it is useful for some wicket developers.
In few words, the entire NextReports Suite [2] (a reporting and dashboarding
tool released under Apache License) is available on github.
The
Hi
I try to implement a JadeMarkupFactory (wicket custom MarkupFactory).
You can see my current implementation at
https://gist.github.com/decebals/6183796
My problem is that if I want to render the jade template I need the map with
the variables. JadePanel takes as parameter in constructor a
Hi Heiner
I tested with maven 2 and it works fine:
$ mvn -version
Apache Maven 2.2.1 (r801777; 2009-08-06 22:16:01+0300)
Java version: 1.6.0_17
Java home: /opt/java/jdk1.6.0_17/jre
Default locale: en_US, platform encoding: UTF-8
OS name: linux version: 2.6.32-50-generic arch: i386 Family: unix
Hi
I implemented a tiny wicket-jade [1] integration solution. It's the first
version and it's a quick and dirty implementation (Proof of concept).
Jade [2] is a cool, high-performance (and probably the most used template
engine for Node.js) template engine. I like the HAML-like syntax of
Hi Martin
I will try to implement your idea. I know about wicket-freemarker,
wicket-velocity. I didn't know about wicket-mustache. By the way I think
that your wicket-ractive project is interested (I like it because it's ajax
aware without a custom AjaxRequestTarget). I think that jade/haml
Hi Martin
I created a branch
https://github.com/decebals/wicket-jade/tree/children-components for your
idea.
I increased the complexity of demo application a little bit.
Now, the HomePage contains a BooksPanel that contains an AuthorPanel. Both
panels extend JadePanel.
BooksPanel.jade contains a
Hi
If anybody is interested, Wicket Plugin
https://github.com/decebals/wicket-plugin is now available on github.
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Wicket-plugin-architecture-tp4652305p4660307.html
Sent from the Users forum
Hi
Can I see the code. The pastebin show me a Unknown Paste ID! message on
link [1].
[1] http://pastebin.com/p4cSNsUw
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Dynamic-Components-tp4654308p4656289.html
Sent from the Users forum mailing
See another implementation wicket-jqplot in wicketstuff
(https://github.com/wicketstuff/core/wiki/JqPlot-Plugin-Integration)
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Announce-Introducing-Wicked-Charts-tp4655519p4655581.html
Sent from
Hi Marc
Thanks for response. A custom Mapper with a RequestHandler that do my job
was one of ideas but onRespond I must implement a while loop and I know if
it's ok.
For example:
public void respond(IRequestCycle requestCycle) {
// se content type to
Hi
Is it possible to implement a motion jpeg in wicket [1]. I want to implement
a webcam viewer in wicket. I have a library that give me BufferedImage(s)
from a webcam. Now I can display an BufferedImage in wicket but I want to
move to the next level.
I see two option:
--- Implement M-JPEG over
Hi
@Marc Implementation using AjaxSelfUpdatingTimerBehavior is better that
nothing, it's quick and dirty but it's not scalable. Think at some webcams
on the same page with a FPS (frame per second) around 5.
@Ernesto Cabzola has a streamer based on multipart/x-mixed-replace mime
type but it uses
Thanks Paul for your interest. I'm curios to see how your dashboard looks
(and maybe some code that shows us how to integrate highcharts as widget in
wicket-dashboard; maybe we can create a wicket-dashboard-highcharts
project).
Best regards,
Decebal
--
View this message in context:
Hi
I removed wiquery as dependency. To control all resources (js, css - see res
folder) used by wicket-dashboard I created DashboardSettings class. All
resources are added to DashboardPanel using DashboardResourcesBehavior(that
uses DashboardSettings).
I will try to migrate to wicket 6 if it's
Thanks. I appreciate your contribution to wicket (ui components in special).
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/ANN-wicket-dnd-now-ready-for-Wicket-6-tp4654761p4654820.html
Sent from the Users forum mailing list archive at
Hi
I implemented a plugin framework for wicket that can be found at
https://github.com/decebals/wicket-plugin
I have a tiny demo application. The demo application is in demo folder. In
demo/api folder I declared an extension point (Section) that is a tab in a
wicket TabbedPanel. Each section
Thanks Martin
I'm working to implement this functionality. If you see some problems with
my wicket-plugin implementation please tell me.
Any suggestions and advice is welcome.
Have a nice day,
Decebal
--
View this message in context:
Hi
I'm working to first version of wicket-plugin. I encounter some problems.
In few words I implemented a PluginManagerInitializer that create a
PluginManager, load and start the plugins from a directory
and store the plugin manager to application using wicket meta data.
Each plugin is loaded
Hi
I will abort the solution with ResourceReference.
I will try to use a IRequestMapper (PluginResourceMapper) for each started
plugin (if request url is ./plugin/plugin-name/...). The mapRequest() method
will return a ResourceRequestHandler (PluginResourceRequestHandler) that
returns a
jqplot https://github.com/inaiat/jqplot4java . See some jqplot charts in
action with wicket-dashboard https://github.com/decebals/wicket-dashboard
.
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Charts-in-Wicket-tp4653548p4653555.html
Sent from the Users forum
Hi
In your Application.init() add this line:
getComponentInstantiationListeners().add(new LinkListener());
public class LinkListener implements IComponentInstantiationListener {
@Override
public void onInstantiation(Component component) {
if (component
Hi
First, onStopWidgetMove() function from dashboard.js is called on
sortableBehavior.setStopEvent(). That js function creates a json with the
new widgets positions. Second, the StopSortableAjaxBehavior (see respond
method) is called with parameter data (json created above).
For more info see:
First, I think that line 55 is not necessary because jquery makes the
modification on the client side. The important part is to save changes to
xml (on the server side).
Maybe a programmatic detach on your model resolves your problem. In the
update method you make some modifications on response,
HiSee how I resolved the problem in wicket-dashboard
https://github.com/decebals/wicket-dashboard . At the end drag and drop
operation I sent (using javascript) a json that keeps the positions for all
widgets to wicket. For more details see StopSortableAjaxBehavior
In your panel:
WebApplication application = getApplication();
application.mountPage(...); // for mount
and
application.unmount(...); // for unmount
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Mount-Page-tp4653318p4653322.html
Sent from the Users forum
public class DesignModeListener implements IComponentInstantiationListener {
private boolean designMode = true;
@Override
public void onInstantiation(Component component) {
if (component instanceof WebMarkupContainer) {
AbstractTransformerBehavior can be a solution but I must parse the output to
retrieve the component tag body. For a particular situation (Jesse Long
situation) to parse the output it's not a big deal but in my situation
(something general for all my markup containers) I don't see a solution.
Maybe
And this is my implementation:
private class DesignModeBehavior extends AbstractTransformerBehavior {
private static final long serialVersionUID = 1L;
@Override
public CharSequence transform(Component component, CharSequence
output)
Hi
I want to implement something like setOutputMarkupContainerClassName but
more dynamic (not a simple flag in IDebugSettings and not a hard-coded html
comment).
My situation is that I want to offer an application as a service. In my
application, in design mode (an url parameter in request), I
Thanks Martin for response.
I implemented an DesignModeListener that implements
IComponentInstantiationListener. The main problem is that my comment is
placed before the container markup tag.
Example:
div id=container
div id=header
...
/div
Hi
I prefer NextReports http://next-reports.com because is developed by me
and a friend of mine :) The designer and engine are free. The server is a
wicket application, very affordable, with support for scheduling, reports
delivery via email, ftp, ssh..., real time dashboard, security and much
Hi Michal
I will commit the initial version of my wicket-plugin
https://github.com/decebals/wicket-plugin project in a few days (now i'm
a little busy).
This project is based on another project developed by me PF4J
https://github.com/decebals/pf4j and is intended to add a little
improvement
Hi
I divided the project in modules and sub-modules:
- core
- demo
- widgets (repository for widgets: ofchart - open flash chart and loremipsum
- for test only)
Also I found a DI solution relative smooth.
My solution is based on these entities: DashboardContext,
DashboardContextAware,
Hi Paul
Thanks for the feedback. I will split the project in modules asap. In my
mind are some problems related to modularity that cannot be resolved so
easy: how can I inject some components (DashboardPersister, WidgetFactory,
WidgetRegistry) in wicket-dashboard? Now these components are
Hi James
I will improve the wiki with a new page Creating a custom widget. To
create a custom widget is very simple.
You must declare three components:
- a TableWidgetDescriptor (implements WidgetDescriptor) that supplies
information (meta data) about widget (display name, provider, description,
Hi
Thanks Paul for the nice words. wicket-dashboard code is used in production
in NextReports server (see
http://apache-wicket.1842946.n4.nabble.com/How-to-create-a-dashboard-with-draggable-widgets-tp4652210p4652218.html)
but with some additional features (multiple dashboards, detached widgets,
Hi
I implemented a simple dashboard for wicket that can be found at
https://github.com/decebals/wicket-dashbaord
You can drag and drop widgets, perform some actions on each widget, add or
remove new widgets, change widget settings, collapse widgets.
I have a tiny demo application. In this demo
Good question and good answers :)
I am searching for an answer too. In our product (NextReports server) we use
spring framework for this purpose. You can add contributors as section, menu
action, popup action, ... and at runtime a component (for example a menu
panel) takes all contributors and
Hi
Jenkins/Hudson has this ability (do it with class loaders management). See
more at
http://kohsuke.org/2011/12/06/installing-plugins-to-jenkins-without-restart/.
Jenkins is so popular because it uses a relative simple (vs osgi) with a
good versatility plugin system.
Probably it's possible to
Hi
I will release today or Monday a wicket-dashboard project on github. This
project it's an open source project (Apache license) based on the dashboard
implementations from nextserver (for a live demo see
http://http://demo.next-reports.com/ user:demo, password:demo).
I used jquery sortable
I analyzed these lines (two iframes = two sessions):
requestUrl =
widget?0-IResourceListener-widget-renderer-chartid=32836b83-27c5-43f7-a166-8ba38407d7dd
objectHashCode = 12027390
requestUrl =
widget?0-IResourceListener-widget-renderer-chartid=fb7e5efe-77c9-4494-9f99-9a577fef1687
Thanks Martin
I understand this. But why urlFor(IResourceListener.INTERFACE, null);
returns 0-IResourceListener-widget-renderer-chart in both situations (two
iframes in the same html file). The page version remains the same for both
calls. It's ok this behavior?
The problem appears only when I
Hi
I want to make a open flash chart visible for an external web application
using a iframe. For this, I create a ChartWebPage and mount this page to
/chart.
In a few words, my problem is that the json data (string) returned by
OpenFlashChart (implements IResourceListener) are identical for both
Additional information: if I put multiple OpenFlashChats in a
(Dashboard)Panel everything is ok. The problem appears if I use iframes.
Thanks,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/problem-with-IResourceListener-tp4652109p4652117.html
Sent from
Congratulations
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/WiQuery-6-0-0-has-been-released-tp4651802p4651832.html
Sent from the Users forum mailing list archive at Nabble.com.
-
To
Good job
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/The-Apache-Software-Foundation-Announces-Apache-Wicket-6-0-0-tp4651780p4651798.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi
In my opinion the main advantage of the jqwicket over
wiquery/wicket-jquery-ui is the impressive list of jquery plugins (ui
components). See http://code.google.com/p/jqwicket/w/list for more details.
Of course, it's not difficult to accommodate these jquery components with
Hi
On the jqwicket forum on Jul 14 I posted a simple question about jqwicket
and wicket 6.0. No response. The last commit on svn was on 30 Dec 2011.
Good luck :)
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Jqwicket-tp4651665p4651690.html
Hi Hielke
First, I want to say thanks for wiquery. I integrated wiquery in a big
project with success and we are happy with them.
I know that the 2 code snippets do exactly the same. The first uses the
wicket mechanism and the second uses the jquery mechanism. I read at
Hi
I implemented a simple pivot table for wicket that can be found at
https://github.com/decebals/wicket-pivot
Best regards,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/pivot-table-for-wicket-tp4651031.html
Sent from the Users forum mailing list
Nice. I see a beautiful future :) wicket-dnd integrated with wicket tree and
of course wicket-dnd part of wicket core.
Now, I'm waiting a clarification from a member of wiquery.
Thanks again,
Decebal
--
View this message in context:
Hi Julien
Thanks for the fast response. Sven says that for wicket 6, wicket-dnd will
be port to jquery but now I see that I have only one option: to give up one
library (wiquery or wicket-dnd). Both libraries are very good and I want to
keep both.
Is it a chance to activate jquery no conflict
Another technical question is who (I suppose wiquery) and why change
Wicket.Event.add(window, domready, function(event) { new
wicketdnd.DropTarget(...) });
in
$(document).ready(function(event){new wicketdnd.DropTarget(...)});
Best regards,
Decebal
--
View this message in context:
Hi
I use wicket-dnd (0.5.0) with wicket 1.5.5. Initial I developed a small
application with these libraries but now I want to integrate the code in a
big application (copy/paste with some rename on packages).
In the big application I retrieves Uncaught TypeError: Object
#HTMLDocument has no
Wicket.Event.add(window, domready, function(event) { new
wicketdnd.DropTarget(...) }); // works
$(document).ready(function(event){new wicketdnd.DropTarget(...)}); // error
(probably jquery not found or a conflict between jquery and prototype)
--
View this message in context:
Hi
First, is it a good question.
My solution use jqwicket tooltip and I touch both java and html files but
it's ok for me.
InlineHelp.java
public class InlineHelp extends Panel {
private static final long serialVersionUID = 1L;
public InlineHelp(String id, IModelString messageModel) {
In your Session override getLocale() ?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Missingresourceexception-only-in-Firefox-but-not-in-Chrome-or-Safari-tp4650503p4650508.html
Sent from the Users forum mailing list archive at Nabble.com.
See at
http://incubator.apache.org/isis/viewer/wicket/docbkx/html/guide/ch01s02.html
a comparison between apache isis wicket viewer and other wicket rad
frameworks.
--
View this message in context:
Thanks for the articles about wicket 6 on http://wicketinaction.com/
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Thanks-tp4650450.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi
I want to use a push technology (now I use comet-timer from wicketstuff) for
some notifications in my wicket (1.5) application and I have to chose
between cometd (wicketstuff) or atmosphere. I like wicket-atmosphere and
wicket-native-socket from wicket-experimental but these require wicket 6.
add(new AjaxLinkFile(delete) {
@Override
public void onClick(AjaxRequestTarget target) {
}
@Override
protected IAjaxCallDecorator
https://sites.google.com/site/wicketrad/getting-the-source-code
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650463.html
Sent from the Users forum mailing list archive at Nabble.com.
https://sites.google.com/site/wicketrad/downloads
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650464.html
Sent from the Users forum mailing list archive at Nabble.com.
See
http://apache-wicket.1842946.n4.nabble.com/wicket-1-5-confirmation-ajaxbutton-tp4650460p4650462.html,
works on wicket 1.5
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Confirmation-on-AjaxLink-tp4650466p4650467.html
Sent from the Users forum mailing list archive
See also http://code.google.com/p/wicket-jsr303-validators/. It's not
uptodate but you can see how it works.
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650389.html
Sent from the Users forum mailing list
https://sites.google.com/site/wicketrad/
http://wicketwebbeans.sourceforge.net/
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Generate-html-page-from-java-POJO-in-Wickets-tp4650360p4650361.html
Sent from the Users forum mailing list archive at Nabble.com.
Thanks. I like Twitter Bootstrap
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Twitter-Bootstrap-Navigation-and-JQuery-Impromptu-demo-tutorial-tp4650273p4650279.html
Sent from the Users forum mailing list archive at Nabble.com.
Robert Kimotho wrote
Why don't you try using jpivot, the front end is done using html and they
have css that you can override
to suit your needs. This also makes it easy to embed in your wicket pages.
Not unless you want to write one from scratch, which I think will be very
time consuming.
Hi
Has anybody implemented a (simple) pivot table in wicket? How can I store
the pivot data (maybe a java library)? I want to create a simple pivot table
in wicket with data retrieved from a database query.
Any advice is welcome.
Thanks,
Decebal
--
View this message in context:
Maybe you must override TextField.getConverter() because the text field
component cannot knows to convert text to object/serializable.
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-ListMultipleChoice-add-Serializable-values-tp4585991p4586299.html
Sent
Another question: I know what markup files are changed do you think that it's
a good idea to use MarkupCache.removeMarkup(String key) to improve the
performance?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Clear-markup-cache-tp4575033p4576743.html
Sent from the
Maybe Google Website Optimizer/ Google Analytics and not Google AddWords. My
idea is to use Component.getVariation() as start point.
Best reagrds,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/A-B-testing-with-wicket-tp4571946p4573185.html
Sent from the
Hi
I use a CustomResourceLocator (extends ResourceStreamLocator) to load markup
files. The workflow is to search in a custom folder and if the file doesn't
exists call super.locate
If I add/remove some markup files in/from custom folder I see that wicket
keeps in cache some old files and I want
I resolved with:
// clear markup cache
getApplication().getMarkupSettings().getMarkupFactory().getMarkupCache().clear();
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Clear-markup-cache-tp4575033p4575132.html
Sent from the Users forum
Hello
Any advice how can I implement the A/B testing
(http://en.wikipedia.org/wiki/A/B_testing) in wicket. Anybody already
implemented this concept in an ecommerce or page landing site?
Thanks,
Decebal
--
View this message in context:
Hi
I have the same problem. I changed WebResource to ByteArrayResource but I
don't know how I can migrate the following lines:
public void onResourceRequested() {
createJsonResource();
// TODO wicket 1.5
// jsonResource.onResourceRequested();
}
No method
Thanks Martin for the your prompt response.
In constructor of OpenFlashChart I have these lines:
jsonResource = new ByteArrayResource(text/plain,
getJsonData().getBytes());
CharSequence dataPath = urlFor(new ResourceRequestHandler(jsonResource,
null));
System.out.println(*** + dataPath);
Hi
I migrate my application from wicket 1.4 to wicket 1.5.4 but I cannot find
AnnotApplicationContextMock class.
Thanks,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Cannot-find-AnnotApplicationContextMock-in-wicket-1-5-tp4478148p4478148.html
Sent from
Hello
I have a form with new CompoundPropertyModelValueMap(properties) as model
where properties are loaded from a properties file (legacy). My problem is
that in properties file I have keys like x.y
and I cannot use form.add(new TextFieldString(body.background-color));
How do I solve this
Hello
I want to migrate from wiquery to jqwicket but I have a problem. In wiquery
I used
add(new HeaderContributor(new CoreJavaScriptHeaderContributor())) in
BasePage to force adding jquery.js first before others js (my_application.js
or jquery plugins).
How can I do this with jqwicket?
Thanks,
Hello
Do you know a public maven repository for JQWicket?
Thanks,
Decebal
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/maven-repository-for-JQWicket-tp3963213p3963213.html
Sent from the Users forum mailing list archive at Nabble.com.
Ignore. I found it.
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/maven-repository-for-JQWicket-tp3963213p3963258.html
Sent from the Users forum mailing list archive at Nabble.com.
-
To
1 - 100 of 120 matches
Mail list logo