AjaxCallListener and script of Component

2013-07-11 Thread Altuğ Bilgin Altıntaş
Hi all; We are trying to migrate from Wicket 1.4 to 6.9.0. We encountered a strange problem. Here is the migrated code (which is working incorrectly): @Override protected void updateAjaxAttributes(AjaxRequestAttributes attributes) { super.updateAjaxAttributes(attributes);

Re: AjaxCallListener and script of Component

2013-07-11 Thread Altuğ Bilgin Altıntaş
, Altuğ Bilgin Altıntaş alt...@gmail.com wrote: Hi all; We are trying to migrate from Wicket 1.4 to 6.9.0. We encountered a strange problem. Here is the migrated code (which is working incorrectly): @Override protected void updateAjaxAttributes(AjaxRequestAttributes attributes

DownloadLink

2012-12-05 Thread Altuğ Bilgin Altıntaş
Hi; Is it possible to trigger form submit before DownloadLink execution. We need to get some values from the form in order to process pdf. Any suggestions ? Thanks.

Re: DownloadLink

2012-12-05 Thread Altuğ Bilgin Altıntaş
Our Wicket version is 1.4.x On Wed, Dec 5, 2012 at 11:42 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi, See https://cwiki.apache.org/WICKET/ajax-update-and-file-download-in-one-blow.html On Wed, Dec 5, 2012 at 10:38 AM, Altuğ Bilgin Altıntaş alt...@gmail.com wrote

Re: DownloadLink

2012-12-05 Thread Altuğ Bilgin Altıntaş
Thanks On Wed, Dec 5, 2012 at 11:46 AM, Martin Grigorov mgrigo...@apache.orgwrote: s/handler/target/ On Wed, Dec 5, 2012 at 10:44 AM, Altuğ Bilgin Altıntaş alt...@gmail.com wrote: Our Wicket version is 1.4.x On Wed, Dec 5, 2012 at 11:42 AM, Ernesto Reinaldo Barreiro reier

Re: Wicket with Spring AOP

2011-06-02 Thread Altuğ Bilgin Altıntaş
Merhaba izlem; I think you should look at Proxy-based Approach. Spring and Wicket integration type is important. Please visit : https://cwiki.apache.org/WICKET/spring.html. A. 01 Haziran 2011 20:02 tarihinde İzlem Gözükeleş izl...@gmail.com yazdı: Furthermore, I changed the source code of

isValid and getFeedbackMessage

2011-02-03 Thread Altuğ Bilgin Altıntaş
Hi, Can i change TextField's (FormComponent) valid status and set a custom error message from outside ? Like : TextFieldString txtname = new TextFieldString(..) // setting valid false and custom error message if (!txtname.isValid) { // get custom error message now String error =

Re: isValid and getFeedbackMessage

2011-02-03 Thread Altuğ Bilgin Altıntaş
I try to print business exception below the related form components so here is solution i found : final TextFieldString txtName = new TextFieldString(txtName , new PropertyModelString(name, name)) { @Override protected void onRender(MarkupStream

ListChoice move up and down

2011-02-02 Thread Altuğ Bilgin Altıntaş
Hi; Any example about how to move up and down via Javascript ListChoice items. Thanks. -- *Altuğ* ** http://www.kodcu.com

Re: ListChoice move up and down

2011-02-02 Thread Altuğ Bilgin Altıntaş
Ok i can move up and dowm using jquery Here is the answer link : http://stackoverflow.com/questions/4168817/how-can-i-fix-my-jquery-methods-so-i-can-re-order-the-items-in-a-multiselect-opti but now i need to take ordered list items, any way to do this. For exampe 1 - original items in the

ListMultipleChoice getting all rows in user order

2011-02-02 Thread Altuğ Bilgin Altıntaş
Hi In my page user can move up and down ListMultipleChoice content by jquery and now I need to take all ordered ListMultipleChoice items, For exampe 1 - original items in the ListMultipleChoice 2- user move up and down some items 3 - I need to get new ordered ListMultipleChoice from wicket I

Re: ListMultipleChoice getting all rows in user order

2011-02-02 Thread Altuğ Bilgin Altıntaş
); } } }; But with if i use AjaxButton then jquery selection code doesn't work. Also I 've tried putting jquery code in AjaxCallDecorator but no way. Altug. 02 Şubat 2011 15:42 tarihinde Altuğ Bilgin Altıntaş alt...@gmail.comyazdı: Hi In my page user can move up and down

AjaxButton and opening popup

2011-01-24 Thread Altuğ Bilgin Altıntaş
Hi all; Is it possible opening a new page at AjaxButton's onSubmit button ? I've tried PopupSettings popupSettings = new PopupSettings(); popupSettings.setTarget(' + url + '); target.appendJavascript(popupSettings.getPopupJavaScript()); but it doesn't work. Also throw new

Re: AjaxButton and opening popup

2011-01-24 Thread Altuğ Bilgin Altıntaş
Thanks Martin. 2011/1/24 Martin Grigorov mgrigo...@apache.org target.appendJavascript(window.open('+ url +', 'someName');); 2011/1/24 Altuğ Bilgin Altıntaş alt...@gmail.com Hi all; Is it possible opening a new page at AjaxButton's onSubmit button ? I've tried PopupSettings

Re: Different browsers behavior iframe

2011-01-19 Thread Altuğ Bilgin Altıntaş
Hi, Wicket code dees something special ? If yes then please paste it. 2011/1/19 mehmet.kaplanki...@t-systems.com I can download a zip document from the Internet with InternetExplorer and can read it. But with my wicket application (see html-code with iframe tag), I can not read a zip

Datatable filterToolbar TextField

2011-01-13 Thread Altuğ Bilgin Altıntaş
Hi; My Datatable works and I put FilterToolbar on it. When i enter some values in FilterToolbar 's TextField and press enter, FilterForm's onsubmit() doesn't triggered Has anyone encountered this problem before ? Thanks. -- *Altuğ* ** http://www.kodcu.com

AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
Hi, I've questions about AjaxFallbackDefaultDataTable, here they are 1 - Is it possible to remove NavigationToolbar from top of this because i want navigation bar at the end - I want to use addBottomToolbar 2 - I tried to export the data to excel using classic ComponentRequestTarget, it

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
/12 Altuğ Bilgin Altıntaş alt...@gmail.com: Hi, I've questions about AjaxFallbackDefaultDataTable, here they are 1 - Is it possible to remove NavigationToolbar from top of this because i want navigation bar at the end - I want to use addBottomToolbar 2 - I tried to export

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
15:08 tarihinde Altuğ Bilgin Altıntaş alt...@gmail.com yazdı: martin's suggestion is right, i've made my own DataTable but still couldn't find how to remove (visible = false) some columns from datatable while exporting to excel. 2011/1/12 Ernesto Reinaldo Barreiro reier...@gmail.com

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
/1/10 Martin Grigorov mgrigo...@apache.org Component#remove(behavior) you need to keep a reference to the behavior or you may iterate over the behavior and remove the one that match your criteria 2011/1/10 Altuğ Bilgin Altıntaş alt...@gmail.com Hi, Java code: final WebMarkupContainer

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
your solutions are hack but ok. invisible is ok but what if i wanna change the DOM structure... 2011/1/10 andrea del bene andrea.on@libero.it Or simply make it invisible replace it with dummy one that renders nothing 2011/1/10 Altuğ Bilgin Altıntaşalt...@gmail.com Thanks. Also i

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
Thanks Martin. 2011/1/10 Martin Grigorov mgrigo...@apache.org 2011/1/10 Altuğ Bilgin Altıntaş alt...@gmail.com your solutions are hack but ok. invisible is ok but what if i wanna change the DOM structure... then you need to use Panels use one Panel for structure1 and another panel

External resource Bundle + Wicket's resource Bundles

2011-01-10 Thread Altuğ Bilgin Altıntaş
Hi all, I tried https://cwiki.apache.org/WICKET/creating-a-custom-resource-locator.html it works great but i now i can't reach Wicket's core resource bundles Are there any way to load external resource bundle and still reaching Wicket's core resource bundles too. Thanks. -- *Altuğ* **

removing SimpleAttributeModifier after added

2011-01-09 Thread Altuğ Bilgin Altıntaş
Hi, Java code: final WebMarkupContainer delete = new WebMarkupContainer(delete); delete.setOutputMarkupPlaceholderTag(true); delete.add(new SimpleAttributeModifier(filter, false)); html : th wicket:id=delete /th then after i want to remove SimpleAttributeModifier - filter from

Start.java in debug mode jetty hangs up

2011-01-04 Thread Altuğ Bilgin Altıntaş
Hi I try to start jetty via in debug mode Here is Start.java Server server = new Server(); SocketConnector connector = new SocketConnector(); // Set some timeout options to make debugging easier. connector.setMaxIdleTime(1000 * 60 * 60); . try { System.out.println(

Re: Taking a moment ...

2010-12-24 Thread Altuğ Bilgin Altıntaş
Thanks Cemal. 2010/12/24 Cemal Bayramoglu jweekend_for...@cabouge.com This is an appropriate moment to explicitly say a sincere thanks and reiterate my respect and gratitude to everyone that has contributed to Wicket, all the useful satellite projects, and to this forum, the quality and

Re: Best Pattern for Admin Pages and User Pages

2010-12-06 Thread Altuğ Bilgin Altıntaş
You can add css object programatically. https://cwiki.apache.org/WICKET/including-css-resources.html altug 2010/12/6 Taner Diler jtdde...@gmail.com Hi all, I'm writing a blog application. as all blog applications it has an admin module. I wrote two abstract page : AdminPage and BlogPage.

Re: Problem on wicket-auth-role ve Spring-security integration

2010-12-02 Thread Altuğ Bilgin Altıntaş
why you don't just use Spring Security + Wicket ? 2010/12/2 Taner Diler jtdde...@gmail.com Hi, I'm trying to integrate Wicket-auth-roles 1.4.9 and Spring Security 3.0.4 by following https://cwiki.apache.org/WICKET/spring-security-and-wicket-auth-roles.html . @AuthorizeAction and

Re: exception

2010-10-29 Thread Altuğ Bilgin Altıntaş
wicket version ? 2010/10/29 fachhoch fachh...@gmail.com this is another exception I get after I click on any download link , the file download works without any problem but this exception is thrown I donot know how to control these , code 2010-10-29 15:39:32,221 [http-8080-5] ERROR

Re: sending ajax response part by part

2010-10-25 Thread Altuğ Bilgin Altıntaş
and then deliver its response 2010/10/22 Altuğ Bilgin Altıntaş alt...@gmail.com Hi all; username.add(new AjaxFormComponentUpdatingBehavior(onblur) { @Override public void onUpdate(AjaxRequestTarget target) { String thisUsername = username.getModelObject

Re: sending ajax response part by part

2010-10-25 Thread Altuğ Bilgin Altıntaş
; } } } } *** Altug. 25 Ekim 2010 09:10 tarihinde Altuğ Bilgin Altıntaş alt...@gmail.com yazdı: Thanks Martin; AjaxTimerBehavior doesn't tackle this issue I solved the issue by using IAjaxCallDecorator. Here is the code : final TextFieldString username = new TextFieldString(username, new ModelString

sending ajax response part by part

2010-10-22 Thread Altuğ Bilgin Altıntaş
Hi all; username.add(new AjaxFormComponentUpdatingBehavior(onblur) { @Override public void onUpdate(AjaxRequestTarget target) { String thisUsername = username.getModelObject(); username.add(new SimpleAttributeModifier(class, thinking)); //

Re: TextField submit via Ajax

2010-10-20 Thread Altuğ Bilgin Altıntaş
;}; } }; } ; }); Altug. 2010/10/19 Martin Grigorov mgrigo...@apache.org 1. you need AjaxFormSubmitBehavior(onkeyup) 2. you'll have to add AjaxCallDecorator to it do fire only when the key is ENTER, i.e. event.keyCode === 13 2010/10/19 Altuğ Bilgin

TextField submit via Ajax

2010-10-19 Thread Altuğ Bilgin Altıntaş
Hi; How can i submit a form via Ajax when user hit the enter key on a TextField ? I did below but it doesn't work. myTextField.add(new AjaxFormComponentUpdatingBehavior(onsubmit) { @Override protected void onUpdate(AjaxRequestTarget target) { //...

Re: DownloadLink with AjaxIndicator

2010-10-13 Thread Altuğ Bilgin Altıntaş
my below example codes works on http://jquery.malsup.com/block/ //** public class BlockerBehaviour { @SuppressWarnings(unused) private String componentId; public BlockerBehaviour(String componentId) { this.componentId =

Re: could not serialize the page java.lang.OutOfMemoryError: PermGen space

2010-10-13 Thread Altuğ Bilgin Altıntaş
What is your application server or container ? Is it a heavy object page ? Every application can get java.lang.OutOfMemoryError: PermGen space potentially First countermeasure you can take is to increase your container's memory. Altuğ 2010/10/13 fachhoch fachh...@gmail.com could not

Re: could not serialize the page java.lang.OutOfMemoryError: PermGen space

2010-10-13 Thread Altuğ Bilgin Altıntaş
http://javahowto.blogspot.com/2006/06/6-common-errors-in-setting-java-heap.html 2010/10/13 fachhoch fachh...@gmail.com I added this to eclipse -XX:PermSize=256m -XX:MaxPermSize=512m but the problem is I cannot start my jetty container I get this error Error occurred during

Re: Page Expired page with PatternDateConverter

2010-10-12 Thread Altuğ Bilgin Altıntaş
application. - Hemant On 10/11/2010 6:24 AM, Altuğ Bilgin Altıntaş wrote: if you don't override IConverter then everything works fine ? 2010/10/11 Hemant Shahprot...@gmail.com Altuğ, thanks for responding. There are no errors reported in the log. All the classes in the project

Re: Page Expired page with PatternDateConverter

2010-10-11 Thread Altuğ Bilgin Altıntaş
PM, Altuğ Bilgin Altıntaş wrote: Did you look at Wicket's logs ? Be sure serialization is done correctly. 2010/10/10 Hemant Shahprot...@gmail.com I am new to the Wicket framework and I hope I can get some help with a problem I am facing. I am using version 1.4.12. I am overriding

Re: DropDownChoice loses Selection in Disabled Panels

2010-10-11 Thread Altuğ Bilgin Altıntaş
did you bind DropDownChoices with models (ex : PropertyModel) ? 2010/10/11 splitshade martin.dil...@googlemail.com Hi, i have spent some time researching this strange behaviour. I have a Page with some Panels, that contain DropDownChoices. These Panels are initially disabled on the Page.

Re: Page Expired page with PatternDateConverter

2010-10-10 Thread Altuğ Bilgin Altıntaş
Did you look at Wicket's logs ? Be sure serialization is done correctly. 2010/10/10 Hemant Shah prot...@gmail.com I am new to the Wicket framework and I hope I can get some help with a problem I am facing. I am using version 1.4.12. I am overriding the AjaxEditableLabel class and its

Re: multiple html pages to 1 class

2010-10-08 Thread Altuğ Bilgin Altıntaş
Thanks... 2010/10/8 Jeremy Thomerson jer...@wickettraining.com I forgot to include the URLs you should try in that quickstart: http://localhost:8080/example1 http://localhost:8080/example1?template=red http://localhost:8080/example2 http://localhost:8080/example2?template=red Here's the

Re: Getting client IP address

2010-10-06 Thread Altuğ Bilgin Altıntaş
Read with order 1 - http://www.javadb.com/get-users-ip-address 2 - https://cwiki.apache.org/WICKET/raw-httpservletrequest.html 2010/10/6 Josh Kamau joshnet2...@gmail.com Hi Team; Is it possible to get the IP address of the client and how? kind regards.

Re: mountBookmarkablePage and BookmarkablePageLink with PageParameters

2010-10-05 Thread Altuğ Bilgin Altıntaş
Also could you please try without Test1 just add(new BookmarkablePageLink(testlink1, Test1.class, pp)); Which wicket version ? Altug 2010/10/4 virtualizer jan.bic...@ppimedia.de Hello, in my tomcat I have a context (home.xml) with the path home. So I open my wicket-stuff with

Re: mountBookmarkablePage and BookmarkablePageLink with PageParameters

2010-10-05 Thread Altuğ Bilgin Altıntaş
Quickstart please ... 2010/10/5 virtualizer jan.bic...@ppimedia.de Altuğ Bilgin Altıntaş wrote: Also could you please try without Test1 just add(new BookmarkablePageLink(testlink1, Test1.class, pp)); Which wicket version ? Without generic type it is the same problem. I´m

Re: Modal window and Ajax exception

2010-10-05 Thread Altuğ Bilgin Altıntaş
2010/9/30 Altuğ Bilgin Altıntaş alt...@gmail.com: Hi; I have Webmarkupcontainer which includes ListView and I am using jquery Table Sorter. When i open a update modal window and close model window and refresh table via Ajax i got : Wicket.Ajax.Call.processEvaluation: Exception

Re: Modal Window and Fade In effect

2010-10-05 Thread Altuğ Bilgin Altıntaş
are you sure dlgTerms is markup id; please look at your generated html and check it if id is dlgTerms or something like dlgTerms17... my advice is to generate jquery code on the fly using actual model's markup id. After that you can stream this jquery code before model window is rendered -

Re: Coding - On Software Design Process

2010-10-04 Thread Altuğ Bilgin Altıntaş
Hi; I am living in Turkey and Amazon says no Kinda for Turkey :( I couldn't understand why a software cannot be available for a such country. Kinda is a big filter against readability. Altuğ. 2010/10/3 Jonathan Locke jonathan.lo...@gmail.com You can always read it on your Mac or PC

Re: [JOB] Developer with exceptional OO, Java, Wicket skills. Scala a plus.

2010-10-04 Thread Altuğ Bilgin Altıntaş
+1 2010/10/4 Cemal Bayramoglu jweekend_for...@cabouge.com Ernesto, ... nothing is impossible. Regards - Cemal jWeekend Training, Consulting, Development http://jWeekend.com On 4 October 2010 10:55, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Cemal, Are you

Re: wickert:id changes to attribute

2010-10-04 Thread Altuğ Bilgin Altıntaş
Quickstart please 2010/10/5 James Carman ja...@carmanconsulting.com Show some code On Mon, Oct 4, 2010 at 8:48 PM, Jered Myers jer...@maplewoodsoftware.com wrote: My markup looks like this: ... td div wicket:id=canvasPanelstuff/div /td ... When I render the code and swap in

Re: What is the correct way to extending a window - if I've not content to add

2010-10-04 Thread Altuğ Bilgin Altıntaş
I don't know if there is a another way; but it is consistent abstract Class TopMost_Parent { abstract void methodZ(); } abstract Class SubParent extends TopMost_Parent { public void methodZ() {.}; abstract void methodY(); } class Class Child extends SubParent { // Should Child

Re: StatelessLink

2010-10-03 Thread Altuğ Bilgin Altıntaş
a quickstart? -igor On Tue, Sep 28, 2010 at 2:09 AM, Martin Grigorov mgrigo...@apache.org wrote: You may use wicket-devutils. There is a stateless checker. It will tell you which component makes the page stateful. 2010/9/28 Altuğ Bilgin Altıntaş alt...@gmail.com Hi ; I used

Re: StatelessLink

2010-10-03 Thread Altuğ Bilgin Altıntaş
obviously holding a reference to the aspect, which can't be serialized. Jeremy Thomerson http://wickettraining.com -- sent from my smart phone, so please excuse spelling, formatting, or compiler errors On Oct 3, 2010 2:16 PM, Altuğ Bilgin Altıntaş alt...@gmail.com wrote: I found the problem

Re: Which component to use for html iframe

2010-09-30 Thread Altuğ Bilgin Altıntaş
WebMarkupContainer 2010/9/30 mehmet.kaplanki...@t-systems.com Hi, I would like to use html iframe tag. Example in html: iframe src=/eba/test.pdf border=1 width=900px height=400px/iframe My Example to use Wicket: iframe wicket:id=iframe src=# border=1 width=900px height=400px/iframe

Modal window and Ajax exception

2010-09-30 Thread Altuğ Bilgin Altıntaş
Hi; I have Webmarkupcontainer which includes ListView and I am using jquery Table Sorter. When i open a update modal window and close model window and refresh table via Ajax i got : Wicket.Ajax.Call.processEvaluation: Exception evaluating javascript: [object Error] *INFO: *Response processed

Re: Page Expired after WebResponse

2010-09-28 Thread Altuğ Bilgin Altıntaş
. 2010/9/22 Rodolfo Hansen kry...@gmail.com Have you thought about using simply using a ResourceStremRequestTarget ? On Wed, 2010-09-22 at 20:26 +0300, Altuğ Bilgin Altıntaş wrote: AjaxLink doesn't throw an Excel file to user. Also I changed the code like

StatelessLink

2010-09-28 Thread Altuğ Bilgin Altıntaş
Hi ; I used StatelessLink but i still get Page Expired , is it normal ? Also this StatelessLink is in StatelessForm and Page is Bookmarkable but wicket - 1.4.9 still generates : http://localhost:8080/ac/customer?wicket:interface=:1:frmSearch:linkExcel::ILinkListener :: why ? Thanks.

pagemap and link

2010-09-28 Thread Altuğ Bilgin Altıntaş
Hi, How can i open a link with a different pagemap so that i expect not to get page Expired error. Link link = new Link{ public void onClick() { // how can i set a new page map here ? } } Thanks.

Re: pagemap and link

2010-09-28 Thread Altuğ Bilgin Altıntaş
BookmarkableLink ?? Do you mean BookmarkablePageLink 2010/9/28 Martin Grigorov mgrigo...@apache.org This will not save you. You need BookmarkableLink for this case. 2010/9/28 Altuğ Bilgin Altıntaş alt...@gmail.com Hi, How can i open a link with a different pagemap so that i expect

Re: pagemap and link

2010-09-28 Thread Altuğ Bilgin Altıntaş
wrote that Use different PageMap to get rid of Page Expired but still couldn't find how to set a new pageMap into Link. Thanks. 2010/9/28 Martin Grigorov mgrigo...@apache.org The same. 2010/9/28 Altuğ Bilgin Altıntaş alt...@gmail.com BookmarkableLink ?? Do you mean BookmarkablePageLink 2010

Page Expired after WebResponse

2010-09-22 Thread Altuğ Bilgin Altıntaş
Hi, Here is code to export excel; Link linkExcel = new Link(linkExcel) { public void onClick() { getRequestCycle().setRequestTarget( new ComponentRequestTarget(tableContainer) { @Override public void

Re: Page Expired after WebResponse

2010-09-22 Thread Altuğ Bilgin Altıntaş
(or extends abstractlink), this way the page version is not expected to increment. On Wed, 2010-09-22 at 18:27 +0300, Altuğ Bilgin Altıntaş wrote: Hi, Here is code to export excel; Link linkExcel = new Link(linkExcel) { public void onClick() { getRequestCycle

Re: Export Excel file containing string and rendered component

2010-09-16 Thread Altuğ Bilgin Altıntaş
Hi; After using WebResponse to export excel then clicking a Link gives *Page expired* error. Any suggestion ? 2009/6/4 Igor Vaynberg igor.vaynb...@gmail.com you have the webresponse, can you not simply write into it? -igor On Thu, Jun 4, 2009 at 9:49 AM, Frank Silbermann

Re: Wicket Problem: Ajax request encoding

2010-09-01 Thread Altuğ Bilgin Altıntaş
=/ parameter-encoding default-charset=UTF-8/ /locale-charset-info /sun-web-app Again ISO-8859-1 problem. 01 Eylül 2010 08:22 tarihinde Altuğ Bilgin Altıntaş alt...@gmail.comyazdı: Hi Ronaldo; Did you find any solution on that problem ? Thanks. 2010/7/20 Ronaldo Cisneiros Veras ronaldo.cisnei

Listview remove columns on the fly

2010-08-31 Thread Altuğ Bilgin Altıntaş
Hi all; How can i disable Listview's column/s while post it to excel on the fly. I mean i don't want to post all columns into excel. Link linkExcel = new Link(linkExcel) { private static final long serialVersionUID = 1L; @Override public void onClick() {

Re: Listview remove columns on the fly

2010-08-31 Thread Altuğ Bilgin Altıntaş
Any code example ? Thanks. 2010/8/31 Martin Makundi martin.maku...@koodaripalvelut.com Re-render it before going to excel.. 2010/8/31 Altuğ Bilgin Altıntaş alt...@gmail.com: Hi all; How can i disable Listview's column/s while post it to excel on the fly. I mean i don't want to post

Re: Wicket Problem: Ajax request encoding

2010-08-31 Thread Altuğ Bilgin Altıntaş
Hi Ronaldo; Did you find any solution on that problem ? Thanks. 2010/7/20 Ronaldo Cisneiros Veras ronaldo.cisnei...@cesar.org.br Hi, We're using Wicket framework (Version 1.4.9) on our systems. Our problem occurs when there is a submission of ajax request in text fields. When you type the

Re: Listview excel

2010-08-30 Thread Altuğ Bilgin Altıntaş
to application/vnd.ms-excel. ** Martin 2010/8/30 Altuğ Bilgin Altıntaş alt...@gmail.com: Hi all; Is it possible to export a ListView to excel. Should i use always Datatable ? Thanks. - To unsubscribe, e-mail

Spring security + remember me question

2010-05-24 Thread Altuğ Bilgin Altıntaş
Hi all; I am using wicket + spring 3.0 + spring security 3.0 Problem is : Spring security authenticate the user via cookie (remember-me service) but AuthenticatedWebSession couldn't understand this and populate login panel. How can i solve it ? Thanks Regards. Altug.

Re: Caching menu

2010-05-14 Thread Altuğ Bilgin Altıntaş
Hi; For distributed caching i can advice hazelcast.com, take a look. Cheers Altug. 2010/5/7 nino martinez wael nino.martinez.w...@gmail.com Id go for at pojo dao provider which then can cache the menu, and just use that from your wicket menu components.. You could then use something like