Java Wicket outsourcing software development

2017-10-27 Thread Marc de GOUTTES
are interested. Marc. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Wicket Spring Boot Article

2017-04-02 Thread Marc
Hey sorry Tobias, I've had some problems with the Spring intetration. I don't remember exactly what the problem was but it was a little bit frustrating so that I'm lost the sight of it (Spring AOP / AspectJ related - no direct relation to your project) . @Andrea I've subscribed the mailing list

Re: Wicket Websocket - Exception is logged in WicketEndpoint if the user is closing the browser

2017-01-28 Thread Marc
It seems that this exception only occurs in Google Chrome... -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Websocket-Exception-is-logged-in-WicketEndpoint-if-the-user-is-closing-the-browser-tp4676886p4676889.html Sent from the Users forum mailing list archive

Wicket Websocket - Exception is logged in WicketEndpoint if the user is closing the browser

2017-01-27 Thread Marc
Hi, I've a page with a WebSocketBehavior. Everything is OK until the user is closing the browser or tab. An exception is logged in org.apache.wicket.protocol.ws.javax.WicketEndpoint. I don't know if this kind of exception should reach the onError method. Everything is working fine but the error

Re: Reload Wicket classes/markup without reloading Servlet Container

2016-09-06 Thread Marc
Spring Boot users can use Spring Boot developer tools: http://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html Not comparable to JRebel but does the job quite well. -- View this message in context:

examples7x.wicket.apache.org not available

2016-06-08 Thread Marc Ende
Hi, I've seen that the http://examples7x.wicket.apache.org/ is currently not available. There is an proxy error. It would be great if the examples would be available soon, they're a great resource. ;) Cheers Marc

Wicket & Spring Boot

2015-11-12 Thread Marc
Hi all, it's my first post, so I'm hopefully subscribed to the mailing list. Is there currently any Spring Boot integration support? I've started with a Spring Boot Wicket integration: wicket-spring-boot . Besides the maven pom.xml you

Re: Persisting optional fields (null vs empty object)

2013-03-05 Thread Marc Nuri San Félix
, in the user interface you should give this option too. The panel to edit the address fields should only be visible if the address field is not null. And the user should have an option to toggle the panel. Cheers -- Marc Nuri www.marcnuri.com On Tue, Mar 5, 2013 at 3:46 PM, pureza pur...@gmail.com

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
aren't equal... Cheers -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 4:20 PM, saty satya...@gmail.com wrote: Any thoughts on this please? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inmethod-grid-refresh-issue-tp4656910p4656936.html Sent from the Users

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
Ok, I see. Either way if it is a DataGrid, calling markAllItemsDirty() and update() from your ajax request should do the job. -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 4:35 PM, saty satya...@gmail.com wrote: Thanks Marc, i will take a look at these methods if they can help, however

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
The problem must be in your row models. What does your IDataSource implementation look like? -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 4:55 PM, saty satya...@gmail.com wrote: grid.markAllItemsDirty(); grid.update(); This does not help, for some reason grid is smart

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
What's the code for MyModel? -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 5:14 PM, saty satya...@gmail.com wrote: public class DataSource implements IDataSourceMyModel { private FilterMyModel myModelFilterChain; public DataSource(FilterChainMyModel myModelFilterChain

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
every time. You also say ...that may return different value if the context changes... what does context stand for? -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 5:39 PM, saty satya...@gmail.com wrote: Its a regular java bean with properties and setter and getter methods. Grid uses

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
You should start debugging your project instead of using print to see what is really happening (call stack, variable values...). PropertyColumn always calls the get method of your model object: code @Override public IRenderableI newCell(IModelI rowModel) { return new IRenderableI() { public void

Re: inmethod-grid refresh issue

2013-03-04 Thread Marc Nuri San Félix
to the response. Hope it helps -- Marc Nuri www.marcnuri.com On Mon, Mar 4, 2013 at 7:13 PM, saty satya...@gmail.com wrote: Actually i have overridden public Component newCell(WebMarkupContainer parent, String componentId, IModel rowModel) { ... } to use a separate panel for cell

Re: motion jpeg and wicket

2013-01-14 Thread Marc Nuri San Félix
program some kind of IRequestMapper that will handle your Requests and return your custom IRequestHandler. Regards -- Marc Nuri www.marcnuri.com On Fri, Jan 11, 2013 at 11:19 PM, Martin Grigorov mgrigo...@apache.orgwrote: You may try to push the updates with Atmosphere/Native WebSockets

Re: motion jpeg and wicket

2013-01-14 Thread Marc Nuri San Félix
the client would make a single request to your wicket server and cpu and memory usage would be minimized. Regards -- Marc Nuri www.marcnuri.com On Mon, Jan 14, 2013 at 10:30 AM, Decebal Suiu decebal.s...@asf.ro wrote: Hi Marc Thanks for response. A custom Mapper with a RequestHandler that do my

Re: motion jpeg and wicket

2013-01-11 Thread Marc Nuri San Félix
))) and add AjaxSelfUpdatingTimerBehavior to the Panel with the specified refresh rate. I believe this is the easiest and most straightforward way of doing what you need. Cheers -- Marc Nuri www.marcnuri.com On Fri, Jan 11, 2013 at 4:19 PM, Decebal Suiu decebal.s...@asf.ro wrote: Hi

Re: Can't get AutocompleteBehavior to work

2012-12-14 Thread Marc Nuri San Félix
JQuery version as a a dependency solved the problem. Cheers -- Marc Nuri www.marcnuri.com On Thu, Dec 13, 2012 at 7:16 PM, Marc Nuri m...@marcnuri.com wrote: I meant Wicket 6.3, not 6.0.3 - -- Marc Nuri www.marcnuri.com -- View this message in context: http://apache-wicket.1842946.n4

Can't get AutocompleteBehavior to work

2012-12-13 Thread Marc Nuri San Félix
(this,[jqEvent]); } }); [/code] Both onkeydown and onkeypress are working, thus the list is only shown when the down arrow key is pressed in the TextField. Is anyone else having the same problem? Might be browser related (Chrome 23.0.1271.95 m)? or is it a bug? -- Marc Nuri http://www.marcnuri.com

Re: Can't get AutocompleteBehavior to work

2012-12-13 Thread Marc Nuri
I meant Wicket 6.3, not 6.0.3 - -- Marc Nuri www.marcnuri.com -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-t-get-AutocompleteBehavior-to-work-tp4654780p4654781.html Sent from the Users forum mailing list archive at Nabble.com

Re: adding swing Jframe inside Wicket webpage

2012-11-22 Thread Marc Nuri San Félix
or similar Component. I think you should reconsider the libary you are using to compare the documents, or see what the library is doing so that you can avoid the use of the JTextPane. Cheers -- Marc Nuri www.marcnuri.com On Thu, Nov 22, 2012 at 10:53 AM, Andrea Del Bene a.delb...@abanet.itwrote

Java Maps and non-SQL database

2012-04-21 Thread Marc Marc
way to having Java maps as model (instead of POJOs). Should I develop my own subclasses of IModel (see also thread demand for maps) Thanks for your insights, Marc-Mail.be, WebMail and Virtual Officehttp://www.mail.be

Re: Unable to find error during hello World

2012-04-18 Thread Marc Marc
Martin, thanks for your test. This allowed me to deduce that the cause is elsewhere: I found it now: I did not stopped the embedded Jetty server before trying my changes. Regards, Marc From: Marc Marc marc.m...@mail.be Sent: Sun Apr 15 08:47:21 CEST

Unable to find error during hello World

2012-04-15 Thread Marc Marc
not found the solution. I add my simple code hereunder. Thanks! Marc __ my application: public class WicketApplication extends WebApplication { @Override public ClassHomePage getHomePage() { return

Re: Application with name 'xxxx' already exists.

2011-07-02 Thread Marc Ende
:266) at org.apache.catalina.core.ApplicationFilterConfig.init(ApplicationFilterConfig.java:120) ... 40 more It doesn't affect the functionality of the web-page. It's served as usual. On the GF is nothing else deployed (Ok. Just one Database Pool). Yours marc

Re: Inmethod Grid Select All or Reload Grid

2011-04-20 Thread Marc Nuri San Félix
Hello. Of course, objects updated in the database shouldn't be equal to those previously displayed in the table (they aren't equal). If you don't comply to this you'll have problems not only with inmehtod grid. The equals method of my beans always include at least this: if (this.id !=

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Marc Nuri San Félix
Try this: +++ grid.markAllItemsDirty(); grid.update(); // - This adds the grid to AjaxRequestTarget, so target.addComponent(grid) is not necessary +++ Regards -- Marc Nuri On Mon, Apr 18, 2011 at 10:15, GJT taulant.gju...@helvetic.com wrote: I am using wicket 1.4.16 and inmethod-grid 1.4.17

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Marc Nuri San Félix
Have you debugged your project to see if the IDatasource is queried when you perform the Ajax reload?? If you reload the page does the data update?? -- Marc Nuri On Mon, Apr 18, 2011 at 13:19, GJT taulant.gju...@helvetic.com wrote: I tried that before and I tried it again, but it doesn't work

Re: Inmethod Grid Select All or Reload Grid

2011-04-18 Thread Marc Nuri San Félix
something wrong in the way the Datagrid keeps track of selected items, you can implement your own isItemSelected, resetSelectedItems, selectAllVisibleItems methods in a custom implementation of Datagrid or Abstractdatagrid. -- Marc Nuri On Mon, Apr 18, 2011 at 14:19, GJT taulant.gju

Re: Dealing with json in wicket

2011-01-19 Thread Marc Nuri San Félix
Hi I use a combination of an IRequestTarget implementation and an extended UrlCodingStrategy. Regards. -- Marc Nuri This is what I use, maybe it helps public abstract class JSONRequestTarget implements IRequestTarget { private final

Re: Dealing with json in wicket

2011-01-19 Thread Marc Nuri (GMail)
Hi I use a combination of an IRequestTarget implementation and an extended UrlCodingStrategy. Regards. -- Marc Nuri This is what I use, maybe it helps public abstract class JSONRequestTarget implements IRequestTarget { private final

Re: visural-wicket 0.6.5 released!

2010-11-26 Thread Marc Ende
May be you should mention the need for visural-common in the basic-usage. When using the InputHintBehavior I got an ClassNotFound exception. anyway: a visural-wicket is a great collection of components. ;) marc 2010/11/25 Richard Nichols r...@visural.com What error are you getting? It may

Re: Free wicket from component hierarchy hell

2010-11-05 Thread Marc Nuri San Félix
think that your proposal gives the best of both worlds. Regards -- Marc Nuri

wicketstuff-repo

2010-06-15 Thread Marc Ende
Hi, is there another wicketstuff-repo (a mirror for example)? Wicketstuff is now down for some days and I'll need some artifacts from the repo. marc

Re: wicketstuff-repo

2010-06-15 Thread Marc Ende
Ah, I've found it: http://repo1.maven.org/maven2/org/wicketstuff/ Thanks marc 2010/6/15 nino martinez wael nino.martinez.w...@gmail.com someone mentioned sonatype..Search the list for sonatype.. 2010/6/15 Marc Ende mli...@e-beyond.de Hi, is there another wicketstuff-repo (a mirror

Re: Wicket And GAE

2010-04-14 Thread marc fawzi
pretty good Wicket apps running on GAE. It's certainly a lot harder, though, than running it on your own. Jake marc fawzi wrote: Hey guys I'm new to Wicket I've made two discoveries with respect to GAE and Wicket: 1. I figured out how to keep my GAE app instance hot at all times

Re: Wicket And GAE

2010-04-13 Thread marc fawzi
for newbies like me to post questions and get help? Thanks, Marc On Tue, Apr 13, 2010 at 6:20 AM, jbrookover jbrooko...@cast.org wrote: I'm pretty committed to a project using Wicket on GAE. I haven't encountered any deserialization issues that people have been bringing up, which makes me

Re: How to use DateTimeField with java.sql.Timestamp

2009-12-17 Thread Marc Nuri (GMail)
(timeinDate.getTime()); } [/CODE] Now you can simply bind to timeinDate and you will get your Timestamp as a Date. Hope it helps -- Marc Nuri

Re: How to use DateTimeField with java.sql.Timestamp

2009-12-17 Thread Marc Nuri (GMail)
, wicket, reporting...) then you can always bind a field to known data type. I use this too when I need to combine two fields in one. If you have a Person class and name and surname fields, you can add a getter method to read name+surname and bind that in a read only field or a report. Cheers. -- Marc

Release 1.4.3

2009-10-26 Thread Marc-Andre Houle
actually waiting for a bug fix on wicket-guice and would like to have it in the near future. Thanks in advance. Marc-Andre

end tag not found in panel-div

2009-10-24 Thread Marc Ende
anybody have an idea? Marc - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: end tag not found in panel-div

2009-10-24 Thread Marc Ende
Hi Igor, ah, you're completly right. I have forgotten to remove the wicket:message-tags from the panels after seperating them. Thanks for the hint! Have a nice saturday. Marc Igor Vaynberg schrieb: so headerLogo is a Panel? you cannot do that, you cannot have markup with wicket:ids inside

i18n and resource bundles (wicket wiki)

2009-10-24 Thread Marc Ende
above it'll result in a PackageResourceBlockedException. marc - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Class not found error when using OSGi classloader and wicket-guice integration

2009-10-17 Thread Marc-Andre Houle
Class.forName, Wicket-Guice is using Classes.resolveClass and the class resolver that is given by the user application. I hope I didn't think something for granted and that it is not a fix that can broke something else. Thanks to check this issue. Marc-Andre

NullPointer in SharedResources when ussing Resourcereference and OSGi

2009-10-13 Thread Marc-Andre Houle
possibility for me? Thanks in advance for the answer. Marc-Andre

Re: NullPointer in SharedResources when ussing Resourcereference and OSGi

2009-10-13 Thread Marc-Andre Houle
). I'll take a look if the resolver option is easy to implement and if not, I'll take a look to find out those osgi specific attribute are available. Again thanks a lot for the fast answer. Marc-Andre On Tue, Oct 13, 2009 at 2:49 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: On Tue, Oct 13

Re: rpc question

2009-09-18 Thread Marc Ende
Hi Petr, I think you should use a LoadableDetachableModel. Within the method load() you can execute your call to the webservice or other remote-service. http://cwiki.apache.org/WICKET/working-with-wicket-models.html#WorkingwithWicketmodels-DetachableModels yours marc Am Fri, 18 Sep 2009 14:20

Re: rpc question

2009-09-18 Thread Marc Ende
17:48:01 +0200 schrieb Marc Ende mli...@e-beyond.de: Hi Petr, I think you should use a LoadableDetachableModel. Within the method load() you can execute your call to the webservice or other remote-service. http://cwiki.apache.org/WICKET/working-with-wicket-models.html

Re: Dynamic Query????

2009-07-08 Thread Marc Nuri (GMail)
Have a look at inmethod grid and its datasource interfaces. I use it in one of my projects to display JPA queries and it works great.Features include sorting, and inline editing. -- Marc Nuri

Re: Wicket behind proxy (AJP)

2009-07-03 Thread Marc Ende
Hello Sergey, I had the same problems but I solved them using the virtual-host-feature of tomcat. After that the ProxyPass looks very easy: VirtualHost... ... ProxyPass / ajp://localhost/ ... /VirtualHost yours marc Sergey Podatelev schrieb: Hello, I know this question had already been

FileUploadField updating model

2009-06-09 Thread Marc Ende
the FileUploadField and I didn't provide a new file in this field. Will it set to null and loose the existing information or is it kept because there is no new content? Thanks marc signature.asc Description: OpenPGP digital signature

Re: How to avoid code duplication on forms?

2009-05-08 Thread Marc Nuri (GMail)
(), StringValidator.maximumLength(50)); /code Maybe you could then use it in a class factory as you suggested. At least it will shorten a few lines of code. Best regards. -- Marc Nuri http://blog.marcnuri.com On Fri, May 8, 2009 at 11:14 AM, Christian Helmbold christian.helmb...@yahoo.de wrote: I think

Re: wicketstuff-core:jquery accordion broken?

2009-05-06 Thread Marc Nuri San Félix
Hi. Had same problem but found something at google: http://www.nabble.com/select-next-n-%22somethings%22-td21550403s27240.html Simply remove the '.r' from the expression and it will work. Best regards -- Marc Nuri hi currently the accordion in jquery-examples does not work in FF nor IE

Example for FormComponentPanel/best-practice for reusable form-components

2009-05-05 Thread Marc Hauptmann
am experiencing problems doing that. Is there any example using the FormComponentPanel-class? Do you have any (other) best-practices creating reusable FormComponents? Any help would be appreciated! :-) Best regards, Marc

Re: Wicket-Guice: Inject into Session

2009-04-28 Thread Marc Ende
another approach which uses the session only as a information-container and get those needed information from the database in the page-lifecycle. That keeps the session-object small (which is also an aspect). just my 5 cent... :) Marc Jan Torben Heuer schrieb: Hi, I'm a Wicket and Guice

Re: Wicket-Guice: Inject into Session

2009-04-28 Thread Marc Ende
Torben Heuer schrieb: Marc Ende wrote: webapps do. In this case you've got to serialize the connection. I don't think that's easy/possible to seralize a database connection. I would go another approach which uses the session only as a information-container and get those needed information

wicket, slf4j and logback

2009-04-08 Thread Marc Ende
!!! marc signature.asc Description: OpenPGP digital signature

Re: Wicket-auth-roles + EJB 3 (Authentication and Authorization)

2009-03-23 Thread Marc Ende
Hi Barry, I've running three webapps using wicket (1.3) wicket-security (SWARM/WASP) together with JAAS. It's working great. Ok, the logout isn't very nice but it's doing it's job. At first I had the same impression that's a hack and complicated but now, using it several times. It looks easy

Handling 404 in wicket?

2009-02-06 Thread Marc Ende
jsps for this. I've some messages on this list in mind which are related to this topic but I haven't found them anymore. Ist there anything easy (like an setErrorPage) to get all requests which are directed to non existing Pages? Thanks for your help Marc signature.asc Description: OpenPGP

Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Marc Ende
Hi Philipp, are your texts are stored in a database? Then you've got two more points where you can search: The encoding of the table and the encoding of the connection. Do you've got the same issues with the templates? Marc Philipp Daumke schrieb: Hi Mathias, 'äöü' is actually already

Re: Class aliases for shared resources

2009-01-16 Thread Marc S.
Nobody here with an answer? Problem still open here. Marc S. wrote: I have the same problem now with Wicket 1.4-rc1. Anyone knows if this is a bug or am I doing something wrong? Thanks, Marc hbf wrote: I have a shared resource that I add in my application's init() method

Re: Class aliases for shared resources

2008-12-31 Thread Marc S.
I have the same problem now with Wicket 1.4-rc1. Anyone knows if this is a bug or am I doing something wrong? Thanks, Marc hbf wrote: I have a shared resource that I add in my application's init() method via SharedResources sharedResources = getSharedResources

Re: Set the HTML id programmatically

2008-11-21 Thread Marc-Andre Houle
The attributeModifier behavior should do the trick. description.add(new AttributeModifier(id, true, myDescription)); See here http://wicket.apache.org/docs/wicket-1.3.2/wicket/apidocs/org/apache/wicket/AttributeModifier.htmlfor mor details. Marc-Andre On Fri, Nov 21, 2008 at 3:19 PM, Bruno Cesar

Re: overLIB Integration...

2008-11-17 Thread Marc Ende
Hi, imho this would be a nice feature. What about the mentioned constructor is it still OverlibBehavior(String) or do you plan also a OverlibBehavior(IModel)? It would be nice to have such a constructor when the contents should be loaded from a model. Marc James Carman schrieb: Would anyone

swarm wicket 1.4

2008-11-17 Thread Marc Ende
Hi, currently I'm using swarm securing some webpages build on wicket. Now, that's wicket 1.4 is getting nearer, I would like to know if there is something planned with swarm for wicket 1.4. Do you know if it's compatible or is there a new release needed? yours Marc signature.asc

Wicket Security

2008-10-06 Thread Marc Ende
? Sorry for this stupid questions. I had used other frameworks before and now I'm a complete beginner on wicket (and JAAS was used by me a long time ago...) Anyway: The few steps I had done with wicket and I really like it. It's a great framework! You've done a really good job!!! marc

wicket 1.3.4/wicket-contrib-javaee compilation error

2008-10-01 Thread Marc Ende
addComponentInstantiationListener(new JavaEEComponentInjector(this)); Does anybody have an Idea? I'm using Wicket 1.3.4, Wicket-Auth-Roles 1.3.4 and Wicket-contrib-javaee 1.1 (latest downloadable) Yours Marc - To unsubscribe

Re: wicket 1.3.4/wicket-contrib-javaee compilation error

2008-10-01 Thread Marc Ende
to manage your dependencies if you dont know how to do that yourself. -igor On Wed, Oct 1, 2008 at 3:00 AM, Marc Ende [EMAIL PROTECTED] wrote: Hi, I wanted to use the wicket-contrib-javaee extension to use annotations for my beans. Following the steps in the doc I have added

Re: wicket 1.3.4/wicket-contrib-javaee compilation error

2008-10-01 Thread Marc Ende
will be brought in via transitive dependency because it is declared in javaee's pom. -igor On Wed, Oct 1, 2008 at 9:02 AM, Marc Ende [EMAIL PROTECTED] wrote: a) Thanks for the help, I'll try that tomorrow. b) I _have_ used maven but there is NO repository which contains this wicket-contrib