![]() |
New demo has been published - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: New demo has been published (/thread-3363.html) |
New demo has been published - Alexandre Machado - 07-10-2023 A new demo has been published showing some new features introduced on version 15.3.10 that we have just released: https://github.com/Atozed/IntraWeb/tree/master/15/Delphi/IWLocker This has been a (very) frequent request from users that allow more control over the "page locking mechanism" (aka loading animation) in IntraWeb applications. Some users go a long way in order to have a customized version on their application. We believe that the new feature will eliminate the need for complicated 3rd party libraries and workarounds (yes, I'm talking to you, "HoldOn" user ![]() Enjoy ![]() RE: New demo has been published - Blanca80 - 07-11-2023 (07-10-2023, 09:30 AM)Alexandre Machado Wrote: A new demo has been published showing some new features introduced on version 15.3.10 that we have just released: Hello, Related to this question if i have got a callback called by showconfirm instruction, how can tell the ajax call to show the locker? Thank you very much. Blanca RE: New demo has been published - Alexandre Machado - 07-11-2023 (07-11-2023, 08:52 AM)Blanca80 Wrote: Hello, Hi Blanca, that's a good question. Here's how: Code: procedure TIWForm1.ShowConfirmationWithCallback(const Msg: string); basically you call ShowConfirm() the same way, but instead of passing the callback method name (the Delphi callback registered previously), you pass the actual code (JavaScript) that will execute the callback call, preceded by a "javascript:" prefix. I'll update our NewDialogs demo to show a case like this. Please notice that the js callback code is using single quotes as JavaScript string delimiter. That's because internally our code is not escaping the double quotes (Something that I'll fix). Cheers RE: New demo has been published - Alexandre Machado - 07-11-2023 The NewDialogs demo has been updated to also show this feature: https://github.com/Atozed/IntraWeb/tree/master/XIV/Delphi/NewDialogs Enjoy ![]() RE: New demo has been published - Blanca80 - 07-12-2023 (07-11-2023, 11:48 PM)Alexandre Machado Wrote: The NewDialogs demo has been updated to also show this feature: Thank you very much i'll take a look (07-11-2023, 09:58 PM)Alexandre Machado Wrote:Hello Alexandre,(07-11-2023, 08:52 AM)Blanca80 Wrote: Hello, I've tested on our application but i find a problem that makes impossible to use it for now. The parameter retvalue in the eventparams list when entering the callback had disappeared when calling showconfirm on this way and it's impossible to know wich button the user has pressed. I attach a pdf with the both event params list. Thank you. RE: New demo has been published - Alexandre Machado - 07-12-2023 Yes, I missed that small detail... The demo has been updated in our Git repo and it is working now as you expect. https://github.com/Atozed/IntraWeb/tree/master/XIV/Delphi/NewDialogs RE: New demo has been published - Blanca80 - 05-20-2024 hello i've got one more question about this demo and i hope you can answer. The default behaviour of the application is to show the locker in all syncronous events when enabled from servercontroller. How it is posible that it is also showed in the ajax call of the button, that is asynchronous? thank you very much. |