Atozed Forums
IntraWeb 15.2.27 is out! - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software (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: IntraWeb 15.2.27 is out! (/thread-2356.html)



IntraWeb 15.2.27 is out! - Alexandre Machado - 04-07-2021

Hi guys,

the new update bringing many enhancements to controls like TIWSelect, TIWjQGrid, TIWjQPageControl, TIWjqAccordion, and also some important bug fixes.

https://www.atozed.com/2021/04/intraweb-15-2-27/

Note: This version is *not* binary compatible with previous IW 15.2.26 (meaning, you need to rebuild dependent 3rd party packages from sources)

Enjoy!


RE: IntraWeb 15.2.27 is out! - Alexandre Machado - 04-07-2021

Here's also a new demo showing several features of the new IWSelect control:

https://github.com/Atozed/IntraWeb/tree/master/15/Delphi/IWSelect


RE: IntraWeb 15.2.27 is out! - Alexandre Machado - 04-09-2021

Someone asked me how to configure the language of IWSelect messages.

IWSelect (and also other controls) use the session language to decide what language file to render.

Better to set the language for the whole application in server controller:

procedure TIWServerController.IWServerControllerBaseConfig(Sender: TObject);
begin
Self.HTMLLanguage := 'es'; // <- ISO code for spanish
end;

It will set the language of IWSelect accordingly.