Re: Wicket merchandise

2013-09-19 Thread Raul
+1 Martin Grigorov -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-merchandise-tp4661378p4661390.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: u

Stateless pagination

2013-08-05 Thread Raul
Hello, anyone has done any component that is a stateless paginator, I read this tutorial, http://letsgetdugg.com/2009/05/27/wicket-stateless-pagination/, but it is for wicket 1.4 and is a paginator very simple. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Stateles

Re: The same URL to two different pages.

2013-08-04 Thread Raul
Not because in my platform, I have a hierarchy of inheritance, in which stateful pages, inherited from a page, which displays the menu, notifications, messaging, and stateless pages inherit from another with a simple menu, the login etc.. -- View this message in context: http://apache-wicket.18

The same URL to two different pages.

2013-08-03 Thread Raul
Hi I need to have the same url to two different pages, one page must show content to registered users, ie an internal page, the other page "stateless", should show the same content to guest users. The URL should be the same for the two pages and charge one or the other depending on whether the user

Re: Problem with AjaxButton and textarea CKeditor.

2013-08-03 Thread Raul
I've solved it myself, in case anyone finds it useful, pass the link where is the solution http://stackoverflow.com/questions/7657816/ckeditor-ajax-issue -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problem-with-AjaxButton-and-textarea-CKeditor-tp4660669p4660670

Possible bug with AjaxButton and textarea.

2013-08-03 Thread Raul
Hi, I have a form with a textarea using CKEditor, I need to send the contents of the textarea to the server. When using a standard Button, content is submit correctly, but when AjaxButton type, the data is not sent to the server. I tried to remove the comportamient CKEditor, and AjaxButton if it wo

Re: Problem loading dependency for wicket-6.8.0

2013-05-25 Thread Raul
Make sure you have downloaded the dependency correctly, ie that is in your local repository that can decompress, ever happened to me that have been downloaded "jar" with corrupted data. If so removes the corrupt jar to download them again. -- View this message in context: http://apache-wicket.1

Problems when upgrading Jquery

2013-05-24 Thread Raul
Hello, I updated my application to use Jquery 1.9.1, for this I added the following to the Init method of my application class. JavaScriptResourceReference resource = new JavaScriptResourceReference( MyApplication.class, "../../../ass

Re: JQuery contribution question

2013-05-23 Thread Raul
Hello, I also need to upgrade the version of jQuery to 1.9.1, I do it with getJavaScriptLibrarySettings (). setJQueryReference (resource), but I have some problems running this version with AjaxEventBehavior. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/JQuery-con

Re: Possible bug with AjaxLazyLoadPanel

2013-05-16 Thread Raul
Michael Zhavzharov the way you've indicated, it works correctly. Thank you. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Possible-bug-with-AjaxLazyLoadPanel-tp4658793p4658846.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Possible bug with AjaxLazyLoadPanel

2013-05-15 Thread Raul
I know how it works, in my case the component is already loaded, and I can access it, the problem is I have to access the internal components of the "AjaxLazyLoadPanel". -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Possible-bug-with-AjaxLazyLoadPanel-tp4658793p465

Possible bug with AjaxLazyLoadPanel

2013-05-14 Thread Raul
Hello, I'm trying to get a component to update with Ajax from a AjaxLink, but always returns null, the access component is as follows. Component current = this.getPage().get("commentsPanel").get ("modalPanel"); Where "commentsPanel" is a "AjaxLazyLoadPanel" and "modalPanel" is of type "Panel", I

Error in the semantics of names. AjaxLazyLoadPanel.java

2013-05-07 Thread Raul
Error in the semantics of names. AjaxLazyLoadPanel.java I saw a little mistake semantic,:>, Class AjaxLazyLoadPanel, Wicket 6.7.0 / ** * Called When the placeholder component is Replaced with the lazy loaded one. * * @ Param target * The Ajax request handler * @ Param component * The lazy loaded c

Re: Performance replace panel with AjaxLink.

2013-05-07 Thread Raul
Hello, in this project we are not using unit tests, and I can not add a breakpoint, but I managed to narrow down the error. The call to the constructor of the page disappears, commenting javascript call panel markup. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/

Re: Performance replace panel with AjaxLink.

2013-05-02 Thread Raul
Indeed the page is not repainted, but its constructor is called, How to put a breakpoint?. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Performance-replace-panel-with-AjaxLink-tp4658473p4658484.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: Performance replace panel with AjaxLink.

2013-05-02 Thread Raul
Let's see, I have a page that receives a parameter, and since I do a query parameter to the database to load a panel, within that panel there is another panel with a AjaxLink, that when you click I want to be replaced by another panel, everything works fine, ie the panel is replaced, but in my trac

Performance replace panel with AjaxLink.

2013-05-02 Thread Raul
Hi, I have a problem to replace a panel with Ajax, I use a AjaxLink to replace a panel on the other, as follows. Component current = this.getParent(); current.replaceWith (editorPanel); target.add (editorPanel); The problem I have it because it makes a call undue page builder. Thing I do not want

Re: Datatable with Image in Cell

2013-04-24 Thread Raul
To create a table with data, you can use the DataView component and use a DataProvider for loading data. In onPopulate method, you can create the table rows dynamically. I recommend you to look at the examples of the free guide. http://code.google.com/p/wicket-guide/downloads/list -- View this

Re: Datatable with Image in Cell

2013-04-23 Thread Raul
Hi Antonio. For this you can use the Image component and the ContextRelativeResource. if ( isaIcon() ) { relativeResource = new ContextRelativeResource( "/images/a_icon.png"); } else { relativeResource = new ContextRelat

Re: Update ListView with Ajax, performance.

2013-04-15 Thread Raul
Thanks to you, I look forward to the update, a greeting. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Update-ListView-with-Ajax-performance-tp4657948p4657995.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: Update ListView with Ajax, performance.

2013-04-15 Thread Raul
http://ul.to/847ee7uh >From his example I just changed the RowsNavigatorPage -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Update-ListView-with-Ajax-performance-tp4657948p4657989.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Update ListView with Ajax, performance.

2013-04-15 Thread Raul
Recreate the error is very simple, you just have to modify your example as follows, in the labeling of RowsNavigatorPage.html add a div, so that it looks like. http://www.apache.org/licenses/LICENSE-2.0 UNLESS required by applicable law or Agreed to in writing, software distributed under t

Re: Update ListView with Ajax, performance.

2013-04-15 Thread Raul
Exactly the error occurs when you click on the above item, item affects the bottom, but not vice versa. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Update-ListView-with-Ajax-performance-tp4657948p4657984.html Sent from the Users forum mailing list archive at Nabb

Re: Update ListView with Ajax, performance.

2013-04-15 Thread Raul
Hi, vineetsemwal, I think I found a bug in the project developed, having several QuickView, inside a ListView or DataView, errors occur. I recreated the error in your project, simply. Within RowNavigationPage class, I added a ListView with a list of three items and each item I have added the QuickV

Re: Update ListView with Ajax, performance.

2013-04-13 Thread Raul
I think the functionality that gives your project is essential to many Web projects, and in many companies there is a policy not to use third party libraries that can not be maintained or updated in the future. I therefore believe that the number of components "official" Wicket, should increase in

Re: Update ListView with Ajax, performance.

2013-04-13 Thread Raul
I tried the project and give you my congratulations, it's just what I need, but it would be ideal that was included as an extension of the core wicket. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Update-ListView-with-Ajax-performance-tp4657948p4657961.html Sent f

Re: Update ListView with Ajax, performance.

2013-04-13 Thread Raul
QuickView The project looks great, but I want to try, why not stay at maven central repository?. It is very cumbersome installation is proposed. Https://github.com/vineetsemwal/quickview/wiki -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Update-ListView-with-Ajax-p

Re: Update ListView with Ajax, performance.

2013-04-12 Thread Raul
Nick, I sensed that the solution was going to use Javascript, my question was if there was any easier than the framework could provide. Select2 prove. Alexy single client solution does not help me as I have a large volume of data. Regards and thanks for the guidance. -- View this message in co

Update ListView with Ajax, performance.

2013-04-12 Thread Raul
Hello, I need to implement a component that can display a list of users from a ListView, at the end of the list you should see a link to "see more users." What I need is to update the list of users displayed but without rendering at all in ListView again. Because right now I use a AjaxLink that upd

Re: Atmosphere problem with JBoss 7.1

2013-04-12 Thread Raul
All libraries are included in the wicket application. The difference is created in the web.xml. I have set the following parameter to false org.atmosphere.useNative true And to deploy the application log tells me that the Atmosphere is started, but on entering the application, I still return

Re: Atmosphere problem with JBoss 7.1

2013-04-12 Thread Raul
I have asked in this forum because the problem I have when running Wicket application, any of these examples made ​​with other frameworks, work perfectly in Jboss, https://github.com/Atmosphere/atmosphere/wiki/Getting-Started-with-the-samples And on the second question, I mean, if you can give me a

Atmosphere problem with JBoss 7.1

2013-04-11 Thread Raul
Hi, I have two questions concerning the atmosphere framework, I use wicket 6.6.0 and JBoss 7.1. I configured my application following the example, https://github.com/papegaaij/wicket-atmosphere-quickstart. And the application displays correctly, but when trying to enter, it returns a 404. Taking th

Re: DropDownMenu with AjaxLink

2013-04-04 Thread Raul
I found this solution, but if someone thinks another more elegant ... linkNotifications = new AjaxLink("linkNotifications") { @Override public void onClick(AjaxRequestTarget target) { target.appendJavaScript("$('#" +

DropDownMenu with AjaxLink

2013-04-04 Thread Raul
Hello, I need to dynamically load a dropdown menu, I use bootstrap natively, but by combining AjaxLink with the link, which contains data-toggle = "dropdown" menu does not display, the link must display a menu with notifications, but these should be loaded so lazy to click. The html is as follows.

Re: Problem with ClientProperties

2013-02-07 Thread Raul
II tried with the sample code and the output of the toString ClientProperties is this. browserInternetExplorer=false 13:12:22,532 ERROR [stderr] (http--127.0.0.1-8080-1) browserKonqueror=false 13:12:22,534 ERROR [stderr] (http--127.0.0.1-8080-1) browserMozilla=true 13:12:22,535 ERROR [stderr] (ht

Problem with ClientProperties

2013-02-07 Thread Raul
Hi, I need to keep the browser name and version, using it my clients, but some ClientProperties class methods return null, I use wicket 6.5.0. Does anyone knows what could it be? PD, properties.isBrowserMozilla method (), it works correctly. -- View this message in context: http://apache-wick

ThreadContext.getSession(); return null in wicket 6.5.0

2013-01-24 Thread Raul
Hi, in my application I use ThreadContext.getSession () to get the session, and works well in wicket 6.4.0, upgrade to 6.5.0 but returns null, what is due? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ThreadContext-getSession-return-null-in-wicket-6-5-0-tp4655741

Re: Problem with RuntimeConfigurationType.DEPLOYMENT.

2013-01-23 Thread Raul
Was using using div has fixed the problem. Thank you. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problem-with-RuntimeConfigurationType-DEPLOYMENT-tp4655679p4655681.html Sent from the Users forum mailing list archive at Nabble.com. -

Problem with RuntimeConfigurationType.DEPLOYMENT.

2013-01-23 Thread Raul
Hello, I have a problem and Deployment Mode is that some of my templates are not working properly, I use AjaxFormComponentUpdatingBehavior specifically to hide or show some components of templates. I have succeeded recreate the development mode error, adding the application init, this line. getMark

Re: Autocomplete for mentions how to use Twitter

2012-12-21 Thread Raul
Hello, I have the same problem as Alpiske, does anyone have any idea how to do this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Autocomplete-for-mentions-how-to-use-Twitter-tp4654876p4654999.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Model is null after submit, using FormComponentPanel

2012-12-07 Thread Raul
Thanks, your suggestion solved my problem. Greetings from Spain. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Model-is-null-after-submit-using-FormComponentPanel-tp4654441p4654594.html Sent from the Users forum mailing list archive at Nabble.com.

RE: Model is null after submit, using FormComponentPanel

2012-12-07 Thread Raul
Here is the example to prove it's package it and deploy it in an application server. http://ul.to/ymfabds0 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Model-is-null-after-submit-using-FormComponentPanel-tp4654441p4654586.html Sent from the Users forum mailing l

RE: Model is null after submit, using FormComponentPanel

2012-12-06 Thread Raul
I created a quickstart, Where I can upload it for what you may see? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Model-is-null-after-submit-using-FormComponentPanel-tp4654441p4654566.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Model is null after submit, using FormComponentPanel

2012-12-06 Thread Raul
I've tried to override FormComponentPanel#convertInput (), but in the execution of this, both the method TextField#getConvertedInput () and TextField#getModelObject () return null. By the way I'm using Wicket 6.3 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Model

Re: Model is null after submit, using FormComponentPanel

2012-12-06 Thread Raul
Thanks for the reply, I tried to use the component on the form with the object CompoundPropertyModel. As follows, ccc = new CustomerAccountCode("ccc", new CompoundPropertyModel(new Account(config.getCcc(; form.add(ccc); But this does the same as before, ie load correctly disp

Re: Model is null after submit, using FormComponentPanel

2012-12-04 Thread Raul
I tried to use CompoundPropertyModel in CustomerAccountCode object constructor, and similarly -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Model-is-null-after-submit-using-FormComponentPanel-tp4654441p4654490.html Sent from the Users forum mailing list archive at

RE: Model is null after submit, using FormComponentPanel

2012-12-04 Thread Raul
Thank Col, But I have no validation, my component code is the code of the component is public class CustomerAccountCode extends FormComponentPanel { private FormComponent entity; private FormComponent office; private FormComponent dc; private FormCo

Model is null after submit, using FormComponentPanel

2012-12-03 Thread Raul
Hello, I want to create a reusable component for use as part of a form, for this class use FormComponentPanel, As the following article. https://cwiki.apache.org/WICKET/creating-custom-formcomponentpanels-to-build-valid-objects-using-wickets-form-validation-logic.html My problem is that when I su

Twitter boostrap

2012-12-01 Thread Raul
Hello, I want to integrate Wicket-Bootstrap in my application, anyone can tell me what steps should I follow?. Should I integrate twitter bootstrap on my own or through an existing project?. Thank you. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Twitter-boostrap

Re: Wicket and file upload with blueimp jquery file upload

2012-11-16 Thread Raul
I solved the problems I had, modifying the main.js file of the demo, as follows. $(function () { 'use strict'; $('#${componentMarkupId}').fileupload({ url: '${url}', paramName: '${paramName}', singleFileUploads: true, maxFileSize: 500, acceptFi

Re: Wicket and file upload with blueimp jquery file upload

2012-11-15 Thread Raul
Thanks for the demo, everything works fine except for some problems I've found in the configuration, for example, the demo comes with the option (previewSourceFileTypes: / ^ image \ / (gif | jpeg | png) $ /,). But really allow to upload all types of files. On the other hand (and this is important

Re: Resources only for session

2012-11-05 Thread Raul
Thank Ernesto, I already knew the article. My problem is that I am using a ResourceLink as follows. ResourceReference imagesResourceReference = new ImageResourceReference( ImageUtil.getNamePhotoForURL(user.getId(), album.getId(), ph

Resources only for session

2012-11-05 Thread Raul
I have a question, Is it possible that resources (example DynamicImageResource) will not recorded and only available as long as the session is active. This is necessary because the user need to show images uploaded by the same and are not available to other users. Besides the amount of images is