Generate ajax link

2011-07-14 Thread Lurtz Nazgul
Hi all; I can generate normal links in to my dynamic menu lia href='?thePanel=com.test.PanelOne'/a/li ... I wonder if i can generate those links in ajax link format ? Thanks.

Re: Generate ajax link

2011-07-14 Thread Lurtz Nazgul
I mean; generating ajax link format Instead of lia href='?thePanel=com.test.PanelOne'/a/li I want to generate ajax link on the fly Example : a onclick=var wcall=wicketAjaxGet('wicket/page?2-1.IBehaviorListener.0-c1--link',function() { }.bind(this),function() { }.bind(this), function()

Re: Generate ajax link

2011-07-14 Thread Lurtz Nazgul
: Generate ajax link See how AjaxLink generates its markup. On Thu, Jul 14, 2011 at 2:31 PM, Lurtz Nazgul lu...@ymail.com wrote: I mean; generating ajax link format Instead of lia href='?thePanel=com.test.PanelOne'/a/li I want to generate ajax link on the fly Example : a onclick=var wcall

Forward to Bookmarkable

2011-07-21 Thread Lurtz Nazgul
Hi; How can i forward user to a BookmarkablePage. I don't need redirection. I don't want user to see url. Thanks.

Re: Forward to Bookmarkable

2011-07-21 Thread Lurtz Nazgul
); Thanks. From: Lurtz Nazgul lu...@ymail.com To: users@wicket.apache.org Sent: Thu, July 21, 2011 12:15:19 PM Subject: Forward to Bookmarkable Hi; How can i forward user to a BookmarkablePage. I don't need redirection. I don't want user to see url. Thanks.

Re: Forward to Bookmarkable

2011-07-21 Thread Lurtz Nazgul
, July 21, 2011 12:35:21 PM Subject: Re: Forward to Bookmarkable You can setResponePage or throw one of the RestartResponse*-Exceptions Regards Hans Am 21.07.11 11:19 schrieb Lurtz Nazgul unter lu...@ymail.com: I also tried WebRequestCycle cycle = (WebRequestCycle) RequestCycle.get

dynamic DataTable

2011-07-21 Thread Lurtz Nazgul
Hi, How can we create a dynamic DataTable which has dynamic Columns? I want to create a page that has following components: - A TextArea for SQL Statement input (User will type any SELECT Sql here) - A Submit button to run the SQL - A Table to view the SQL Resultset. Since TextArea can contain

Re: dynamic DataTable

2011-07-21 Thread Lurtz Nazgul
Any simple way ? Thanks. From: Wilhelmsen Tor Iver toriv...@arrive.no To: users@wicket.apache.org users@wicket.apache.org Sent: Thu, July 21, 2011 3:10:16 PM Subject: RE: dynamic DataTable Since TextArea can contain any SELECT statement, Column names, count

catch jquery event at AjaxEventBehavior

2011-08-01 Thread Lurtz Nazgul
Hi; I used jquery dialog. I can open and close jquery dialog box. I represent jquery dialog as a panel at wicket side. My question is how can i catch jquery close event ? I tested like below but it doesn't work dialogConfirmation.add(new AjaxEventBehavior(close) {

Re: catch jquery event at AjaxEventBehavior

2011-08-01 Thread Lurtz Nazgul
Hi ; I used AbstractDefaultAjaxBehavior to catch jquery close event. On jquery side i triggered event when jquery event window closed. wicketAjaxGet('+behavior.getCallbackUrl()+ '); It is little tricky. Thanks. From: Lurtz Nazgul lu...@ymail.com

flush ajaxRequestTarget.appendJavascript

2011-08-03 Thread Lurtz Nazgul
Hi; When i append jquery progressbar script to AjaxRequestTarget like below for (int i = 0; i 101; i++) { ajaxRequestTarget.appendJavascript($(document).ready(function() {\n + $(\#progressbar\).progressbar({ value: + i + });\n +

Re: flush ajaxRequestTarget.appendJavascript

2011-08-03 Thread Lurtz Nazgul
I used AjaxSelfUpdatingTimerBehavior and it's done. Thanks. From: Lurtz Nazgul lu...@ymail.com To: users@wicket.apache.org Sent: Wed, August 3, 2011 11:36:50 AM Subject: flush ajaxRequestTarget.appendJavascript Hi; When i append jquery progressbar script

rendering component

2011-08-11 Thread Lurtz Nazgul
Hi,  Is it possible not to render a component for security issues.  I know i can use IAuthorizationStrategy for this but i want to to it manually I don't need just setVisible(false), i really need not to render that component.  I don't know which method to override. Below code gives error.

Re: rendering component

2011-08-11 Thread Lurtz Nazgul
@wicket.apache.org; Lurtz Nazgul lu...@ymail.com Sent: Thursday, August 11, 2011 1:32 PM Subject: Re: rendering component org.apache.wicket.Component.setVisibilityAllowed(boolean) is for that purpose. if component.isVisibleInHierachy() returns false then the component is not rendered. What exactly

FeedbackPanel rendering

2011-08-25 Thread Lurtz Nazgul
Hi all; I have two panels. Panel one have the standart form with one Label + TextField (required field) + AjaxButton. Panel two have one FeedbackPanel. Ok, here is the the problem : I can reach Panel Two' FeedbackPanel from Panel One. So in AjaxButton    AjaxButton submit = new

Re: FeedbackPanel rendering

2011-08-25 Thread Lurtz Nazgul
Hi Andre; Thanks for your answer. I didn't override form's onSubmit method. From: Andrea Del Bene adelb...@ciseonweb.it To: users@wicket.apache.org Sent: Thursday, August 25, 2011 11:42 AM Subject: Re: FeedbackPanel rendering Hi Lurtz, what does your form