From brauer at nordakademie.de Fri Apr 1 09:15:46 2016 From: brauer at nordakademie.de (Johannes Brauer) Date: Fri Apr 1 09:15:49 2016 Subject: [Seaside] Seaside 3.1 vs Seaside 3.0.10 - WAComponent lightBox: doesn't work anymore? Message-ID: Hi, I am porting a Pharo2/Seaside30 application to Pharo4/Seaside31. At some places the application uses the WAComponent lightBox: message. But in the ported version of the application no box appears if you click the associated link. What may be wrong? Johannes -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20160401/0a14127e/attachment.htm From johan at inceptive.be Fri Apr 1 09:40:03 2016 From: johan at inceptive.be (Johan Brichau) Date: Fri Apr 1 09:40:08 2016 Subject: [Seaside] Seaside 3.1 vs Seaside 3.0.10 - WAComponent lightBox: doesn't work anymore? In-Reply-To: References: Message-ID: <704E7B37-BF40-4024-923A-7755F70CD68E@inceptive.be> Hi Johannes, I just fixed this for 3.2.0: https://github.com/SeasideSt/Seaside/issues/863 You can apply the fix to your code for now. A backport to Seaside 3.1 will follow. cheers Johan ps: you might want to move to 3.2.0 :) > On 01 Apr 2016, at 11:15, Johannes Brauer wrote: > > Hi, > > I am porting a Pharo2/Seaside30 application to Pharo4/Seaside31. At some places the application uses the WAComponent lightBox: message. But in the ported version of the application no box appears if you click the associated link. What may be wrong? > > Johannes > _______________________________________________ > seaside mailing list > seaside@lists.squeakfoundation.org > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20160401/41b1eaf9/attachment.htm From brauer at nordakademie.de Fri Apr 1 10:16:01 2016 From: brauer at nordakademie.de (Johannes Brauer) Date: Fri Apr 1 10:16:04 2016 Subject: [Seaside] Seaside 3.1 vs Seaside 3.0.10 - WAComponent lightBox: doesn't work anymore? In-Reply-To: <704E7B37-BF40-4024-923A-7755F70CD68E@inceptive.be> References: <704E7B37-BF40-4024-923A-7755F70CD68E@inceptive.be> Message-ID: <1B637B47-7AA3-4E59-B35F-802EEE6454F2@nordakademie.de> Thanks Johan! Am 01.04.2016 um 11:40 schrieb Johan Brichau >: Hi Johannes, I just fixed this for 3.2.0: https://github.com/SeasideSt/Seaside/issues/863 okay, that works You can apply the fix to your code for now. A backport to Seaside 3.1 will follow. cheers Johan ps: you might want to move to 3.2.0 :) how could I do this? Cheers, Johannes On 01 Apr 2016, at 11:15, Johannes Brauer > wrote: Hi, I am porting a Pharo2/Seaside30 application to Pharo4/Seaside31. At some places the application uses the WAComponent lightBox: message. But in the ported version of the application no box appears if you click the associated link. What may be wrong? Johannes _______________________________________________ seaside mailing list seaside@lists.squeakfoundation.org http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list seaside@lists.squeakfoundation.org http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20160401/dedf5569/attachment-0001.htm From jayalakshmi.lade at solteco.biz Sat Apr 2 14:32:28 2016 From: jayalakshmi.lade at solteco.biz (Jaya L) Date: Sat Apr 2 15:03:16 2016 Subject: [Seaside] Overridden style is not being applied Message-ID: <1459607548156-4887931.post@n4.nabble.com> Hi all, The style which is overridden in a class is not being applied on the elements. Please give me your suggestions. *Thanks, Jaya L* -- View this message in context: http://forum.world.st/Overridden-style-is-not-being-applied-tp4887931.html Sent from the Seaside General mailing list archive at Nabble.com. From dtrussardi at tiscali.it Wed Apr 13 10:49:34 2016 From: dtrussardi at tiscali.it (dtrussardi@tiscali.it) Date: Wed Apr 13 10:49:40 2016 Subject: [Seaside] Request dialog confirmation before callback Message-ID: <6E548855-FD23-4E3C-9530-8C5F1793A498@tiscali.it> Ciao, i have the following code: html anchor onClick: ( html jQuery ajax callback: [ masterView increaseVoce: aVoceCompilata ]); onClick: (self updateRow: anIndexRow with: aVoceCompilata on: html nominative: aNominative); with: [ html image url: DTRFileLibrary / #greenupGif ; altText: 'Incrementa'; title:'Incrementa']. Now i need ( in some case ) to to display a confirm dialog to the user and perform the callback block only if the user answer OK. I open the dialog with: html jQuery ajax script:[ :script | script confirm: 'It's right ?']; but i don't understand how i can intercept the answer. Thanks for considerations, Dario From jelena at misticnabica.hr Wed Apr 13 10:49:49 2016 From: jelena at misticnabica.hr (jelena@misticnabica.hr) Date: Wed Apr 13 10:49:57 2016 Subject: [Seaside] Request dialog confirmation before callback Message-ID: From pdebruic at gmail.com Wed Apr 13 15:33:49 2016 From: pdebruic at gmail.com (Paul DeBruicker) Date: Wed Apr 13 16:05:56 2016 Subject: [Seaside] Re: Overridden style is not being applied In-Reply-To: <1459607548156-4887931.post@n4.nabble.com> References: <1459607548156-4887931.post@n4.nabble.com> Message-ID: <1460561629584-4889761.post@n4.nabble.com> Hi Jaya, It sounds like a CSS specificity problem. https://css-tricks.com/specifics-on-css-specificity/ To be more helpful we'd need a code sample and also your css file. Or just a link to the running page. Paul Jaya L wrote > Hi all, > > The style which is overridden in a class is not being applied on the > elements. Please give me your suggestions. * > Thanks, > Jaya L * -- View this message in context: http://forum.world.st/Overridden-style-is-not-being-applied-tp4887931p4889761.html Sent from the Seaside General mailing list archive at Nabble.com. From pdebruic at gmail.com Wed Apr 13 15:36:55 2016 From: pdebruic at gmail.com (Paul DeBruicker) Date: Wed Apr 13 16:09:04 2016 Subject: [Seaside] Re: How to upgrade scriptaculous project to latest jQuery version In-Reply-To: <1458712954854-4886014.post@n4.nabble.com> References: <1458712954854-4886014.post@n4.nabble.com> Message-ID: <1460561815022-4889762.post@n4.nabble.com> Hi Jaya, Unfortunately this is one of those 'How long is a piece of string' type questions where there isn't a good answer. As a start I'd find all the senders of the scriptaculous specific messages in my project and attempt to convert them to their jQuery equivalents. And then when I ran into trouble doing that I'd ask questions here with code samples of showing what used to work, what you're trying that doesn't work, and a description of what you want to have work. Sorry I can't be more helpful Paul Jaya L wrote > Hi, > > This is Jaya. I did a project in pharo2.0 with seaside3.0 using > scriptaculous but multi select control is not working properly in this, > that is it is not showing multiple selected values instead showing only > one value. So I want to upgrade the whole project to the jQuery. please > let me know how to upgrade the existing project to jquery. > > Thank you and looking forward for your suggestions. * > Regards, > Jaya L * -- View this message in context: http://forum.world.st/How-to-upgrade-scriptaculous-project-to-latest-jQuery-version-tp4886014p4889762.html Sent from the Seaside General mailing list archive at Nabble.com. From pdebruic at gmail.com Wed Apr 13 15:40:58 2016 From: pdebruic at gmail.com (Paul DeBruicker) Date: Wed Apr 13 16:12:58 2016 Subject: [Seaside] Re: Request dialog confirmation before callback In-Reply-To: <6E548855-FD23-4E3C-9530-8C5F1793A498@tiscali.it> References: <6E548855-FD23-4E3C-9530-8C5F1793A498@tiscali.it> Message-ID: <1460562058332-4889764.post@n4.nabble.com> Hi Dario, Just make the onClick: handler like this: onClick: ( html jQuery ajax callback: [ masterView increaseVoce: aVoceCompilata ]; onSuccess: (self updateRow: anIndexRow with: aVoceCompilata on: html nominative: aNominative); confirm:'It's right ?'); And then you'll save updating the row too if they don't confirm. Hope this helps Paul dtrussardi@tiscali.it wrote > Ciao, > > i have the following code: > > html anchor > > onClick: ( html jQuery ajax callback: [ masterView increaseVoce: > aVoceCompilata ]); > > onClick: (self updateRow: anIndexRow with: aVoceCompilata on: html > nominative: aNominative); > > with: [ html image > url: DTRFileLibrary / #greenupGif ; > altText: 'Incrementa'; > title:'Incrementa']. > > Now i need ( in some case ) to to display a confirm dialog to the user > > and perform the callback block only if the user answer OK. > > > I open the dialog with: > > html jQuery ajax script:[ :script | script confirm: 'It's right ?']; > > but i don't understand how i can intercept the answer. > > Thanks for considerations, > > Dario_______________________________________________ > seaside mailing list > seaside@.squeakfoundation > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside -- View this message in context: http://forum.world.st/Request-dialog-confirmation-before-callback-tp4889697p4889764.html Sent from the Seaside General mailing list archive at Nabble.com. From jayalakshmi.lade at solteco.biz Wed Apr 13 15:43:02 2016 From: jayalakshmi.lade at solteco.biz (Jaya L) Date: Wed Apr 13 16:15:04 2016 Subject: [Seaside] Re: Overridden style is not being applied In-Reply-To: <1460561629584-4889761.post@n4.nabble.com> References: <1459607548156-4887931.post@n4.nabble.com> <1460561629584-4889761.post@n4.nabble.com> Message-ID: Thank you Paul for your suggestion. I will take a look at the link given. On Wed, Apr 13, 2016 at 9:03 PM, Paul DeBruicker [via Smalltalk] < ml-node+s1294792n4889761h15@n4.nabble.com> wrote: > Hi Jaya, > > It sounds like a CSS specificity problem. > > https://css-tricks.com/specifics-on-css-specificity/ > > To be more helpful we'd need a code sample and also your css file. Or > just a link to the running page. > > > > Paul > > Jaya L wrote > Hi all, > > The style which is overridden in a class is not being applied on the > elements. Please give me your suggestions. > > > *Thanks, Jaya L* > > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://forum.world.st/Overridden-style-is-not-being-applied-tp4887931p4889761.html > To unsubscribe from Overridden style is not being applied, click here > > . > NAML > > -- *Thanks,* *Jayalakshmi L* -- View this message in context: http://forum.world.st/Overridden-style-is-not-being-applied-tp4887931p4889765.html Sent from the Seaside General mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20160413/7aaa6eb6/attachment.htm From jayalakshmi.lade at solteco.biz Wed Apr 13 15:44:39 2016 From: jayalakshmi.lade at solteco.biz (Jaya L) Date: Wed Apr 13 16:16:47 2016 Subject: [Seaside] Re: How to upgrade scriptaculous project to latest jQuery version In-Reply-To: <1460561815022-4889762.post@n4.nabble.com> References: <1458712954854-4886014.post@n4.nabble.com> <1460561815022-4889762.post@n4.nabble.com> Message-ID: Yes I do agree with whatever the question I wrote it was not clear. Thank you for your time. On Wed, Apr 13, 2016 at 9:06 PM, Paul DeBruicker [via Smalltalk] < ml-node+s1294792n4889762h46@n4.nabble.com> wrote: > Hi Jaya, > > > Unfortunately this is one of those 'How long is a piece of string' type > questions where there isn't a good answer. As a start I'd find all the > senders of the scriptaculous specific messages in my project and attempt to > convert them to their jQuery equivalents. And then when I ran into > trouble doing that I'd ask questions here with code samples of showing > what used to work, what you're trying that doesn't work, and a description > of what you want to have work. > > > Sorry I can't be more helpful > > Paul > > > > Jaya L wrote > Hi, > > This is Jaya. I did a project in pharo2.0 with seaside3.0 using > scriptaculous but multi select control is not working properly in this, > that is it is not showing multiple selected values instead showing only one > value. So I want to upgrade the whole project to the jQuery. please let me > know how to upgrade the existing project to jquery. > > Thank you and looking forward for your suggestions. > > > *Regards, Jaya L* > > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://forum.world.st/How-to-upgrade-scriptaculous-project-to-latest-jQuery-version-tp4886014p4889762.html > To unsubscribe from How to upgrade scriptaculous project to latest jQuery > version, click here > > . > NAML > > -- *Thanks,* *Jayalakshmi L* -- View this message in context: http://forum.world.st/How-to-upgrade-scriptaculous-project-to-latest-jQuery-version-tp4886014p4889767.html Sent from the Seaside General mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20160413/1e61d5ab/attachment-0001.htm From bobn at rogers.com Fri Apr 15 13:48:09 2016 From: bobn at rogers.com (bobn@rogers.com) Date: Fri Apr 15 13:48:12 2016 Subject: [Seaside] ajax interval + clearTimeout for keep alive References: <938161647.1116387.1460728089296.JavaMail.yahoo.ref@mail.yahoo.com> Message-ID: <938161647.1116387.1460728089296.JavaMail.yahoo@mail.yahoo.com> Hello,I use the following to keep a session from expiring while a user has the browser open... ????????html script: (????????????html jQuery ajax? ????????????????callback: [ "Do nothing" ];? ????????????????interval: 10 minutes)? ...it works fine, but what I would also like to do is to stop the script after a couple of hours, and allow the session to time out normally. What is a clean way to add a?clearTimeout() to this with Seaside code? I'm working on some raw javascript to do this, but it would be nice to code it in Smalltalk. Thanks,Bob NemecHTS -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20160415/3cd11dd8/attachment.htm From jelena at misticnabica.hr Fri Apr 15 13:48:20 2016 From: jelena at misticnabica.hr (jelena@misticnabica.hr) Date: Fri Apr 15 13:48:35 2016 Subject: [Seaside] ajax interval + clearTimeout for keep alive Message-ID: <5625BD1A526C449AA8A4C9AD57ABE7C3.MAI@server2.totohost.hr>