Atozed Forums

Full Version: IntraWeb 15.2.27 is out!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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!
Here's also a new demo showing several features of the new IWSelect control:

https://github.com/Atozed/IntraWeb/tree/...i/IWSelect
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.