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 > 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 ehcache, for caching.. >

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: Listview excel

2010-08-30 Thread Altuğ Bilgin Altıntaş
n/vnd.ms-excel". > > ** > Martin > > 2010/8/30 Altuğ Bilgin Altıntaş : > > Hi all; > > > > Is it possible to export a ListView to excel. Should i use always > Datatable > > ? > > > > Thanks. > > > > -

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 > Re-render it before going to excel.. > > 2010/8/31 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 wan

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 > 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 word "descrição" for exam

Re: Wicket Problem: Ajax request encoding

2010-09-01 Thread Altuğ Bilgin Altıntaş
:22 tarihinde Altuğ Bilgin Altıntaş yazdı: > Hi Ronaldo; > > Did you find any solution on that problem ? > > Thanks. > > 2010/7/20 Ronaldo Cisneiros Veras > > Hi, >> >> We're using Wicket framework (Version 1.4.9) on our systems. Our problem >> occurs

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 > you have the webresponse, can you not simply write into it? > > -igor > > On Thu, Jun 4, 2009 at 9:49 AM, Frank Silbermann > wrote: > > > > I, too, am tryin

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 respond(Requ

Re: Page Expired after WebResponse

2010-09-22 Thread Altuğ Bilgin Altıntaş
sen > Use an AjaxLink (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

Re: Page Expired after WebResponse

2010-09-27 Thread Altuğ Bilgin Altıntaş
hment;filename=" + Constants.DEFAULT_EXCEL_FILE); } }; Any suggestions or samples ? . Thanks. 2010/9/22 Rodolfo Hansen > Have you thought about using simply using a ResourceStremRequestTarget ? > > > On Wed, 2010-09-22 at 20:26 +0300, Altuğ Bilg

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 > This will not save you. > You need BookmarkableLink for this case. > > 2010/9/28 Altuğ Bilgin Altıntaş > > > Hi, > > > > How can i open a link with a different pagemap so th

Re: pagemap and link

2010-09-28 Thread Altuğ Bilgin Altıntaş
d see Igor 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 > The same. > > 2010/9/28 Altuğ Bilgin Altıntaş > > > BookmarkableLink ?? Do you mean BookmarkablePageLink

Re: Which component to use for html iframe

2010-09-30 Thread Altuğ Bilgin Altıntaş
WebMarkupContainer 2010/9/30 > Hi, > > I would like to use html iframe tag. Example in html: > height="400px"> > > My Example to use Wicket: > height="400px"> > > Which Wicket component can I use for iframe > > Regards, > > Mehmet > > >

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 su

Re: StatelessLink

2010-10-03 Thread Altuğ Bilgin Altıntaş
tateless link generates > should be stateless...got a quickstart? > > -igor > > On Tue, Sep 28, 2010 at 2:09 AM, Martin Grigorov > wrote: > > You may use wicket-devutils. There is a stateless checker. It will tell > you > > which component makes the page sta

Re: StatelessLink

2010-10-03 Thread Altuğ Bilgin Altıntaş
bviously 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ğ Bilg

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 > > You can always read it on your Mac or PC (there's a free Kindle reader)

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 > Ernesto, > > ... nothing is impossible. > > Regards - Cemal > jWeekend > Training, Consulting, Development > http://jWeekend.com > > > > > On 4 October 2010 10:55, Ernesto Reinaldo Barreiro > wrote: > > Cemal, > > > > Are you willing/able to consider applications

Re: wickert:id changes to attribute

2010-10-04 Thread Altuğ Bilgin Altıntaş
Quickstart please 2010/10/5 James Carman > Show some code > > On Mon, Oct 4, 2010 at 8:48 PM, Jered Myers > wrote: > > My markup looks like this: > > ... > > > > stuff > > > > ... > > > > When I render the code and swap in another panel via > > canvasPanel.replaceWith(newPanel);, the page so

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: mountBookmarkablePage and BookmarkablePageLink with PageParameters

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

Re: mountBookmarkablePage and BookmarkablePageLink with PageParameters

2010-10-05 Thread Altuğ Bilgin Altıntaş
Quickstart please ... 2010/10/5 virtualizer > > > Altuğ Bilgin Altıntaş wrote: > > > > Also could you please try without just > > > > add(new BookmarkablePageLink("testlink1", Test1.class, pp)); > > > > Which wicket version ? >

Re: Modal window and Ajax exception

2010-10-05 Thread Altuğ Bilgin Altıntaş
ipt error Altuğ. 2010/9/30 Igor Vaynberg > it may be that jquery is screwing things up. try without it first. > > -igor > > 2010/9/30 Altuğ Bilgin Altıntaş : > > Hi; > > > > I have Webmarkupcontainer which includes ListView and I am using jquery > > Table

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 - beforeR

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 > Hi Team; > > Is it possible to get the IP address of the client and how? > > kind regards. >

Re: multiple html pages to 1 class

2010-10-08 Thread Altuğ Bilgin Altıntaş
Thanks... 2010/10/8 Jeremy Thomerson > 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 link to the quicks

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 > 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 overridden getC

Re: "Page Expired" page with PatternDateConverter

2010-10-11 Thread Altuğ Bilgin Altıntaş
; Hemant > > > > On 10/10/2010 5:03 PM, Altuğ Bilgin Altıntaş wrote: > >> Did you look at Wicket's logs ? >> >> Be sure serialization is done correctly. >> >> 2010/10/10 Hemant Shah >> >> I am new to the Wicket framework and I hope

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 > > 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. > > If a validationErro

Re: "Page Expired" page with PatternDateConverter

2010-10-11 Thread Altuğ Bilgin Altıntaş
plication. > > > - 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 Shah >> >> Altuğ, thanks for responding. >>> >>&

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 = co

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 > > could not serialize the page

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 > > 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 initialization of V

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: TextField submit via Ajax

2010-10-20 Thread Altuğ Bilgin Altıntaş
ode(event) == 13){" + script + " return false;}"; } }; } ; }); Altug. 2010/10/19 Martin Grigorov > 1. you need AjaxFormSubmitBehavior("onkeyup") > 2. you'll have to add AjaxCallDecorator to it do fire only when the key is

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: sending ajax response part by part

2010-10-24 Thread Altuğ Bilgin Altıntaş
t until the > whole XML response is delivered. > > You can use AjaxTimerBehavior to check whether the *slow* calculation is > finished and then deliver its response > > 2010/10/22 Altuğ Bilgin Altıntaş > > > Hi all; > > > > username.add(new AjaxFormC

Re: sending ajax response part by part

2010-10-24 Thread Altuğ Bilgin Altıntaş
name").focus(); document.getElementById("username").select(); document.getElementById("register").disabled = true; } } } } *** Altug. 25 Ekim 2010 09:10 tarihinde Altuğ Bilgin Altıntaş yazdı: > Thanks Martin; >

Re: exception

2010-10-29 Thread Altuğ Bilgin Altıntaş
wicket version ? 2010/10/29 fachhoch > > 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 , > > > 2010-10-29 15:39:32,221 [http-8080-5] ERROR > org.apache.wicket

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ğ Bil

Re: DownloadLink

2012-12-05 Thread Altuğ Bilgin Altıntaş
Thanks On Wed, Dec 5, 2012 at 11:46 AM, Martin Grigorov wrote: > s/handler/target/ > > > On Wed, Dec 5, 2012 at 10:44 AM, Altuğ Bilgin Altıntaş >wrote: > > > Our Wicket version is 1.4.x > > > > > > > > > > On Wed, Dec 5, 2012 at 11:42

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 > 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 @AuthorizeInsta

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 > 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. the > differen

Re: Taking a moment ...

2010-12-24 Thread Altuğ Bilgin Altıntaş
Thanks Cemal. 2010/12/24 Cemal Bayramoglu > 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 value of which I have not wi

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(">>>

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 : then after i want to remove SimpleAttributeModifier - filter" from WebMarkupContainer - delete, A

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
r. Thanks. 2011/1/10 Martin Grigorov > 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ş > > > Hi, > > > > Java code:

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 > Or simply make it invisible > > replace it with dummy one that renders nothing >> >> 2011/1/10 Altuğ Bilgin Altıntaş >> >> Thanks. A

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
Thanks Martin. 2011/1/10 Martin Grigorov > 2011/1/10 Altuğ Bilgin Altıntaş > > > 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 a

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ğ* **

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 wo

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
> > > > > > > >[cell] > > > > > > Haven't tried to do the above trick myself but I think It might work;-) > > Ernesto > > 2011/1/12 Altuğ Bilgin Altıntaş : >

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
ak 2011 15:08 tarihinde Altuğ Bilgin Altıntaş 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 E

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ğ* **

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 > 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 document with InternetExplorer. >

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 RestartRespon

Re: AjaxButton and opening popup

2011-01-24 Thread Altuğ Bilgin Altıntaş
Thanks Martin. 2011/1/24 Martin Grigorov > target.appendJavascript("window.open('"+ url +"', 'someName');"); > > 2011/1/24 Altuğ Bilgin Altıntaş > > > Hi all; > > > > Is it possible opening a new page at AjaxButton'

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ğ* **

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 ListC

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ş
"--> " + s); } } }; 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ş yazdı: > Hi >

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 : TextField txtname = new TextField(..) // setting valid false and custom error message if (!txtname.isValid) { // get custom error message now String error = txtname.getFeedbackMessa

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 TextField txtName = new TextField("txtName ", new PropertyModel(name, "name")) { @Override protected void onRender(MarkupStream markupStream) {

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ş yazdı: > Furthermore, I changed the source code of spring framework

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); Ajax

Re: AjaxCallListener and script of Component

2013-07-11 Thread Altuğ Bilgin Altıntaş
Thanks. On Thu, Jul 11, 2013 at 3:42 PM, Martin Grigorov wrote: > Hi, > > Read > > https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-o.a.w.ajax.IAjaxCallDecoratorisreplacedwitho.a.w.ajax.attributes.IAjaxCallListener > . > > > On Thu, Jul 11, 20