Re: [Wicket-user] bookmarkable ajax link

2006-07-17 Thread Eelco Hillenius
I think Matej and Igor have been working on that. Maybe they can
comment on this.

Eelco


On 7/17/06, Nili Adoram [EMAIL PROTECTED] wrote:
 Hi all,
 I have an AjaxLink that opens a modal dialog (which is implemented as an
 iframe that displays the URL of that link).
 The link is embedded inside a ListView that refreshes itself every 30
 seconds via ajax.
 The URL of that link is generated of course by Ajax and include session
 mapping parameters so it is not bookmarkable.
 Whenever I click the link just before the table is refreshed, the target
 of that link page is expired from session.
 Is it possible to generate a bookmarkable ajax link ?
 Thanks
 Nili


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] bookmarkable ajax link

2006-07-17 Thread Matej Knopp
What URL do you exactly display in the iframe? I think the behavior is 
caused by PageMap in 1.2 which behaves as stack. So to get over this you 
have to put the page that is shown in the iframe to separate pagemap.

You can change the pagemap in which wicket is created by either 
specifying it in Page constructor or as URL parameter of 
bookmarkablePages (wicket:pageMapName=myModalPageMap)

-Matej

Nili Adoram wrote:
 Hi all,
 I have an AjaxLink that opens a modal dialog (which is implemented as an 
 iframe that displays the URL of that link).
 The link is embedded inside a ListView that refreshes itself every 30 
 seconds via ajax.
 The URL of that link is generated of course by Ajax and include session 
 mapping parameters so it is not bookmarkable.
 Whenever I click the link just before the table is refreshed, the target 
 of that link page is expired from session.
 Is it possible to generate a bookmarkable ajax link ?
 Thanks
 Nili
 
 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] bookmarkable ajax link

2006-07-17 Thread Nili Adoram
1. The generated URL is:
javascript:var 
wcall=wicketAjaxGet('/page;jsessionid=66D2B1310B47081B62EE203A648CDAE8?wicket:interface=:0:statusForm:data:nodeGroups:0:deprovision::IBehaviorListenerwicket:behaviorId=0',
 
function() { }, function() { });
2. Can you please explain what is th purpose of PageMap in this case?
Thanks
-Nili

Matej Knopp wrote:
 What URL do you exactly display in the iframe? I think the behavior is 
 caused by PageMap in 1.2 which behaves as stack. So to get over this you 
 have to put the page that is shown in the iframe to separate pagemap.

 You can change the pagemap in which wicket is created by either 
 specifying it in Page constructor or as URL parameter of 
 bookmarkablePages (wicket:pageMapName=myModalPageMap)

 -Matej

 Nili Adoram wrote:
   
 Hi all,
 I have an AjaxLink that opens a modal dialog (which is implemented as an 
 iframe that displays the URL of that link).
 The link is embedded inside a ListView that refreshes itself every 30 
 seconds via ajax.
 The URL of that link is generated of course by Ajax and include session 
 mapping parameters so it is not bookmarkable.
 Whenever I click the link just before the table is refreshed, the target 
 of that link page is expired from session.
 Is it possible to generate a bookmarkable ajax link ?
 Thanks
 Nili


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 



 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

   


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] bookmarkable ajax link

2006-07-17 Thread Matej Knopp
This is generated url of the ajax link. you said you open a page in an 
iframe, so I asked, what URL do you display in the iframe (iframe 
src=??/

How do you create the iframe?

-Matej

Nili Adoram wrote:
 1. The generated URL is:
 javascript:var 
 wcall=wicketAjaxGet('/page;jsessionid=66D2B1310B47081B62EE203A648CDAE8?wicket:interface=:0:statusForm:data:nodeGroups:0:deprovision::IBehaviorListenerwicket:behaviorId=0',
  
 function() { }, function() { });
 2. Can you please explain what is th purpose of PageMap in this case?
 Thanks
 -Nili
 
 Matej Knopp wrote:
 What URL do you exactly display in the iframe? I think the behavior is 
 caused by PageMap in 1.2 which behaves as stack. So to get over this you 
 have to put the page that is shown in the iframe to separate pagemap.

 You can change the pagemap in which wicket is created by either 
 specifying it in Page constructor or as URL parameter of 
 bookmarkablePages (wicket:pageMapName=myModalPageMap)

 -Matej

 Nili Adoram wrote:
   
 Hi all,
 I have an AjaxLink that opens a modal dialog (which is implemented as an 
 iframe that displays the URL of that link).
 The link is embedded inside a ListView that refreshes itself every 30 
 seconds via ajax.
 The URL of that link is generated of course by Ajax and include session 
 mapping parameters so it is not bookmarkable.
 Whenever I click the link just before the table is refreshed, the target 
 of that link page is expired from session.
 Is it possible to generate a bookmarkable ajax link ?
 Thanks
 Nili


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job 
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

   
 
 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] bookmarkable ajax link

2006-07-17 Thread Ittay Dror


Matej Knopp wrote:
 This is generated url of the ajax link. you said you open a page in an 
 iframe, so I asked, what URL do you display in the iframe (iframe 
 src=??/
 
 How do you create the iframe?

it is statically in the page, but hidden. the ajax link calls a javascript that 
sets the iframe's src to a given url

 
 -Matej
 
 Nili Adoram wrote:
 1. The generated URL is:
 javascript:var 
 wcall=wicketAjaxGet('/page;jsessionid=66D2B1310B47081B62EE203A648CDAE8?wicket:interface=:0:statusForm:data:nodeGroups:0:deprovision::IBehaviorListenerwicket:behaviorId=0',
  
 function() { }, function() { });
 2. Can you please explain what is th purpose of PageMap in this case?
 Thanks
 -Nili

 Matej Knopp wrote:
 What URL do you exactly display in the iframe? I think the behavior is 
 caused by PageMap in 1.2 which behaves as stack. So to get over this you 
 have to put the page that is shown in the iframe to separate pagemap.

 You can change the pagemap in which wicket is created by either 
 specifying it in Page constructor or as URL parameter of 
 bookmarkablePages (wicket:pageMapName=myModalPageMap)

 -Matej

 Nili Adoram wrote:
   
 Hi all,
 I have an AjaxLink that opens a modal dialog (which is implemented as an 
 iframe that displays the URL of that link).
 The link is embedded inside a ListView that refreshes itself every 30 
 seconds via ajax.
 The URL of that link is generated of course by Ajax and include session 
 mapping parameters so it is not bookmarkable.
 Whenever I click the link just before the table is refreshed, the target 
 of that link page is expired from session.
 Is it possible to generate a bookmarkable ajax link ?
 Thanks
 Nili


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job 
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 

 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job 
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

   

 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 
 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 


-- 
===
Ittay Dror, 
Chief architect, openQRM TL, 
RD, Qlusters Inc.
[EMAIL PROTECTED]
+972-3-6081994 Fax: +972-3-6081841

http://www.openQRM.org
- Keeps your Data-Center Up and Running


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user