immediate display alert to user while Ajax request
Sabine Manaa <[email protected]>
| Newsgroups | gmane.comp.lang.smalltalk.squeak.seaside |
|---|---|
| Message-ID | <CA+UbgZa3Jadh9kdV-eu0MZ0pdMNLBwsrHVkVv7C8xuv-64=avA@mail.gmail.com> |
Hi, while generating reports, I want to show the user some kind of information about the status of the report generation. After each step, I want to alert him about the status. Alert is only an example for reducing the problem here. will use the mdlSnackbar for it. When he clicks on "create reports", an alert should show before the first step and then after each next step. In my reduced example below, the alerts are all shown at the end, AFTER the script. How can I do this, I don't get it and could need some help... Sabine reducedExample>>html mdlButton onClick: (html jQuery ajax script: [ :script | self session reportModel: RKAReportHead new. script alert: 'Reisekosten' inspect. RKAPDFWriter new createCostReports: self session. script alert: 'Belege' inspect. RKAPDFWriter new createReceiptReports: self session. script alert: 'Fahrten' inspect. RKAPDFWriter new createVehicleReports: self session. script alert: 'Buchungen' inspect. RKAPDFWriter new createBookingReports: self session ]); with: 'test' _______________________________________________ seaside mailing list [email protected] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside