Re: [Wicket-user] ajax-parameters

2006-08-01 Thread Sergey Dryganets
on the _javascript_ side you can use the wicket _javascript_ lib to make the call on the java side you can use a ajaxcalldecorator to append the parameters to the callback url. if you have a more specific usecase we can help you more. I want use POST method to send data I want

Re: [Wicket-user] ajax-parameters

2006-08-01 Thread Igor Vaynberg
see how AjaxFormSubmitBehavior does it-IgorOn 8/1/06, Sergey Dryganets [EMAIL PROTECTED] wrote: on the _javascript_ side you can use the wicket _javascript_ lib to make the call on the java side you can use a ajaxcalldecorator to append the parameters to the callback url. if

Re: [Wicket-user] ajax-parameters

2006-08-01 Thread Sergey Dryganets
public class AjaxDataSubmitWrapper extends TextField{ //no one overloaded method}Page code:submiter = new AjaxDataSubmitWrapper(submiter, onclick, params);add(submiter);Page html:input type=text wicket:id=submiter/WicketMessage: Markup element at index 7 failed to advance the markup

Re: [Wicket-user] ajax-parameters

2006-08-01 Thread Sergey Dryganets
I extend wicket AjaxEventBehaviorcom.enterra.wicket.components.update.I get such script tag generation:script type=text/_javascript_ src=/wizard-0.0.1/resources/wicket.ajax.AbstractDefaultAjaxBehavior/wicket-ajax.js/scriptscript type=text/_javascript_

Re: [Wicket-user] ajax-parameters

2006-08-01 Thread Johan Compagner
what is wrong with that path? What part isn't right?johanOn 8/1/06, Sergey Dryganets [EMAIL PROTECTED] wrote: I extend wicket AjaxEventBehavior com.enterra.wicket.components.update.I get such script tag generation: script type=text/_javascript_ src=/wizard-

[Wicket-user] ajax-parameters

2006-07-31 Thread Сергей Дрыганец
How I can send parameters to server sideFor example I want realize ajax Drag DropAs Minimum I need send 2 paramttersFrom_component_idTo_component_idI want do it without forms - Take Surveys. Earn Cash. Influence

Re: [Wicket-user] ajax-parameters

2006-07-31 Thread Igor Vaynberg
on the _javascript_ side you can use the wicket _javascript_ lib to make the callon the java side you can use a ajaxcalldecorator to append the parameters to the callback url.if you have a more specific usecase we can help you more. -IgorOn 7/31/06, Сергей Дрыганец [EMAIL PROTECTED] wrote: