Release Notes
23 Aug 2026: ver. 4.0.17 Beta
Bug fixes
- Opening a Calendar view no longer logs the user out — the calendar loads its events with a
fetchthat cannot carry theX-KittoXheader, so the navigation guard mistook it for a top-level navigation and bounced it to the app root (which signs the session out); the guard now uses the browser'sSec-Fetch-Modeheader to tell a real navigation from a data request
Desktop host
- The MainForm log is now asynchronous and thread-safe — worker threads enqueue log lines, the UI drains them onto the memo from a timer (no more cross-thread VCL access)
Refactoring
- New typed config readers
21 Aug 2026: ver. 4.0.16 Beta
Help Chat — AI provider (Claude)
- New
claudeprovider: streams answers from Anthropic's Claude, grounded on the documentation index (RAG); the reply fills in token by token via the existing client polling (no server-push), on every deployment mode - Assistant replies rendered from Markdown to safe HTML with the MarkdownProcessor library (headings, lists, tables, code blocks)
- Help Chat and Notification Center are now opt-in units added to
UseKitto.pas(no longer forced byKitto.Html.All); a clear startup error names the missing unit when a feature is enabled in config but not linked - API key kept out of the public repo (config macro /
ANTHROPIC_API_KEYenvironment variable)
Forms & data — bug fixes
- Save & Clone / Dup now insert a new record instead of updating the source
- A validation error no longer leaves the record unusable for further editing
- Fields with server-side rules notify their change again — the
AfterFieldChangecascade (computed totals, derived data) works even withAlwaysNotifyChange: False; form rules run again on standalone Add Form views - Currency fields select their content on focus; double-click in a lookup window selects the row
- GroupingList honours the Grid layout in headers and rows, with column aggregates in the group headers
Authentication
- Restored the first-access authentication chain and logout on root / return-to-home after logout
- Change password no longer asks for the old one when the change is enforced
Other
- Fixed the languages offered by the LanguageSwitcher and the related application reloads
12 Aug 2026: ver. 4.0.15 Beta
Localization — full multi-language support
- Updated some views of Examples
Security
- A request without a session cookie is no longer attached to an existing session: the lookup fell back on the client address, which behind a reverse proxy is the same for every user
Controller/FilterExpressionnow also constrains a record key supplied by the client (/form,/save,/delete,/blob);DefaultFilterwas never affected- Imposed steps (
MustChangePassword,MustConfirmAccess) enforced on every request, not only by the home page LoginType: PINrequires a per-userSECRET_CODE: the TOTP secret is no longer derived from the (public) user nameAuth: DBServerrefuses to start unless itsConnectionblock reads the typed credentials through%Auth:...%- New
TKAuthenticator.SupportsPasswordChange, checked before writing:TextFile,LDAP,DBServerandNullno longer report a successful password change while discarding it Auth: TextFileno longer accepts an empty password.GetStringHash('')returns''andTStrings.Values[]returns''for a missing key, so any user name with a blank password compared two empty strings and logged in — including a user disabled with a leading#. An empty password is now refused outright and an empty stored hash never takes part in the comparison. The passepartout is compared with the password as typed (never with its hash) and ignored when left empty, but it keeps working as a master password for any listed user, matching whatAuth: DBdoes- No account can be entered with an empty or NULL stored password. The comparison was a plain string equality, and
GetStringHash('')returns'', so an activeKITTO_USERSrow whose password column was empty or NULL was matched by a blank typed password — onDBand onDBCrypt, where the legacy branch went further and stored a bcrypt hash of the empty password. The refusal is keyed on the newIsPasswordTheStoredCredential, soAuth: OSDBkeeps authenticating the operating-system user without a password, which is legitimate. A user with no password gets in through the password-reset flow, which mails them a temporary password and forces a change; that flow does not go through authentication and is unaffected - The passepartout is refused when
PassepartoutPasswordis left empty: with the passepartout enabled and no master password configured, both sides of the comparison were'', so a blank password logged in as any existing user Auth: DBServerrefuses an empty password before opening the connection
Authenticators
Auth: DBCryptworks: thePASSWORD_B_HASHcolumn was never read, so no bcrypt password could be validatedAuth: Nullworks: the session was never marked as authenticated- An unknown
Auth:class id fails at startup, listing the registered ones, instead of serving a blank page - New
TKAuthenticatorDecorator: the JWT wrapper's forwarding contract is now checked by the compiler
Bug fixes
- Fixed Clone Record function.
- Fixed access violations on session termination (use-after-free in the deferred session-end closure) and in the VCL session monitor
- Unhandled exceptions raised while serving a request are logged, so service / ISAPI / Apache deployments have a trace
10 Aug 2026: ver. 4.0.14 Beta
Localization — full multi-language support
- New LanguageSwitcher controller (flag dropdown) on both the login and the home, alongside the ThemeSwitcher (Takitto and HelloKitto demos).
- Interface language auto-detected from the browser (
Accept-Language) whenLanguageIdis left empty - Examples now shipped in English, Italian, German, Spanish and Portuguese; framework and app translation catalogs completed
Help Chat — new
- In-app help assistant: a floating bubble + drawer, enabled per app with
HelpChat/Enabled - Pluggable provider model with a deterministic docsearch provider that answers from the KittoX documentation index and links back to the doc pages
- Runs on a dedicated async worker pool (separate from the HTTP threads and the notification job runner); attribute-routed endpoints; XSS-safe markdown replies
- Contextual ? button on List/Form toolbars opens the chat anchored to the current screen
Notification Center — refinements
- Now opt-in via
Notifications/Enabled(default off) - Header with close and clear-all (finished jobs only), themed SVG icons, per-job remove; new
POST /kx/notifications/clear - Downloads via fetch + blob — no more top-level navigation closing the app on a 404
Client error handling
- New
[Retry]/[Reset]error dialog (like htmx) for every user-initiated fetch action; background polling stays silent
Bug fixes
- Toast messages with accented / non-ASCII text no longer corrupted (the
HX-Triggerheader is now ASCII-escaped) - Help button no longer appears on display-only panels (e.g. dashboard KPI); added the
PreventHelpflag
04 Aug 2026: ver. 4.0.13 Beta
Notification Center & background tools — new
- Run a download-file tool (CSV/TXT/XML/Excel, MergePDF, ReportBuilder) as a background job on a worker pool separate from the HTTP threads — opt-in per tool with a single YAML line,
RunMode: Background - A notification center bell shows each job with its status (queued/running %, completed, failed) and lets the user download, cancel or dismiss the result; the badge stays until the job leaves the list
- Jobs are persisted per-user on disk and reloaded on startup, so results survive logout/login and a process restart
- Configurable via
Server/Jobs(PoolSize,Directory,ArtifactRetentionHours)
Licensing — new
- License Registration into Registry under HKEY_CURRENT_USER\Software\Ethea\KIDEX
- Updated License procedure (Company Name + developer email)
- Now is possible to use multiple versions of KittoX in the same machine.
Repository layout — changed
- The framework packages folder has been renamed from
Projects/toPackages/.
31 Jul 2026: ver. 4.0.12 Beta
LDAP / Active Directory authentication — new
- New Kitto.Auth.LDAP authenticator (
Auth: LDAP): LDAP simple bind (Active Directory or generic LDAP), no local user table, reads name/e-mail from the directory
ReportBuilder Tool — ported
Controller: ReportBuilderToolupdated to latest ReportBuilder version
28 Jul 2026: ver. 4.0.11 Beta
REST / JSON API (opt-in) — new
- Expose an app's data views as a REST/JSON web service, by default under
/api/v4/{View}in parallel to the HTMLx GUI, on the same engine, models, rules and ACL — opt-in - Plugin available adding Kitto.Web.Rest unit to UseKitto.pas
- Full CRUD with model-level permissions
- Bearer-token (stateless) auth
- Self-describing OpenAPI 3.0 spec and a built-in Swagger UI
- Configurable base path, opt-in CORS
Bug fixes
TEFDBConnection.Openmade idempotent — fixes open datasets being silently emptied when a query is created on a busy connection- Robust date parsing in
ValueToDateTime/ValueToDate(locale dates no longer raiseEConvertError)
20 Jul 2026: ver. 4.0.10 Beta
Oracle & Database
- Oracle is now a fully supported backend: new DDL + Data scripts for the HelloKitto and TasKitto examples (Oracle XE 21c), plus
TasKitto_Oracle_ShiftDates.sqlto re-center the demo dashboard dates - Oracle SQL dialect fixes: corrected the top-N pagination off-by-one (Oracle
ROWNUMis 1-based — single-row fetches previously returned 0 rows, full pages were short by one) and reintroduced the portable%DB.CONCAT%macro (||on Oracle/PostgreSQL/Firebird,+on SQL Server); new%DB.FROM_DUAL%and%DB.CURRENT_DATE%macros make hand-written YAML SQL portable across all five dialects - FireDAC Oracle wired up in the examples: the
Oradriver is registered inUseKitto.pasand a ready-to-useFireDAC_Oracleconnection block ships (commented) inConfig.yaml - New optional ODAC backend (
EF.DB.ODAC, ClassIdODAC): an alternative Oracle path built on Devart ODAC, modelled on the FireDAC adapter (connection, commands, queries, transactions, metadata introspection via the Oracle data dictionary). It reuses the existing Oracle dialect and is not in the core package (commercial dependency) — enable it per-app by referencing the unit; the examples ship it defined-but-disabled so they still compile without ODAC installed - Fix
ftUnknownparameter binding under MS ODBC Driver 17/18: withDirectExecutethe driver no longer infers untyped parameter types (as SQL Server Native Client 11 did), which rejected optional/unassigned columns — now bound safely - New
KittoX_Oracle.mddocumenting the full Oracle setup; a note in everyUseKitto.pasclarifies that the client/server FireDAC/DBExpress drivers require Delphi Enterprise/Architect (Professional ships only local/embedded drivers)
Routing (attribute-based refactor complete)
- The whole
kx/*request surface is now attribute-routed: after the auth family in 4.0.9, this release migrates the entire view domain (view,data,form,save,delete) and all ancillary endpoints (lookup,tool,blob,upload,notify, master-detaildetail/{i}/data|save|delete,wizard-finish) into typed handlers running under a single shared request-filter chain (error → JWT auth → navigation guard → authorization) - Legacy
TKWebApplication.DoHandleRequestnow serves only the Home page (/); zeroIsKX*Requestmatchers remain (down from ~24) — the monolithic dispatcher is gone - New
TKXResourceRegistry.RegisterOverrideAPI: an application can subclass a framework handler and override a single endpoint or hook (e.g. a customsave) without forking the whole route — register the subclass and it replaces the default for its base path
Security
- Navigation guard: direct browser navigation to an internal
kx/*fragment endpoint (e.g. pasting.../kx/view/SomeChartin the address bar) is now rejected and redirected to login / home. Only in-app HTMX requests are served the partial; typing a fragment URL no longer leaks a bare HTML partial (when logged in) nor returns a bald404(when not)
Master-Detail & Forms
{MasterRecord.*}macros now resolve in detail-form lookup filters: the detail store is linked to the session master record, so dependent lookups populate correctly instead of coming up empty- Dedicated lookup grids apply the calling field's
LookupFilter(including{MasterRecord.*}), with search/paging state preserved - Detail-record rules fire on save:
HandleDetailSavenow applies each field'sAfterFieldChangerules (calculated fields — avoids NOT NULL violations) andApplyBeforeRules(rules that roll detail values up into the master, e.g. totals) - Reference caption & AutoAddFields resolve on newly-added in-memory records: the derived-values cascade (previously skipped because populate runs with notifications off) now runs via
RefreshDerivedReferenceValues, so a reference column is filled immediately instead of staying blank until reloaded from the DB
UI
- Mobile dashboard fix: cards in a maximized-dialog dashboard (
Controller: Dashboard/ FlexPanel) no longer overflow the screen width and the panel now scrolls vertically, so cards below the fold are reachable
Documentation
- Framework public-API XMLDoc coverage raised from ~32% to ~74%, spanning the routing namespace, the in-memory store, the metadata system, the web engine/server, the HTMLx controllers,
EF.DB, the config/rules/SQL core, the tool controllers and the third-party integration shims — surfaced in KIDEx through[YamlNode]descriptions
06 Jul 2026: ver. 4.0.9 Beta
Bug fixes
- Double URL-decode of request values — form/query values were URL-decoded twice (a second decode over already-decoded text), silently corrupting any value containing
%,+or (on some RTL versions)?: passwords (login failing), saved form fields (e.g.50%,C++), search/filter terms and record keys. Values are now decoded exactly once
Routing
- The authentication family (
kx/login,kx/logout,kx/resetpassword,kx/changepassword) migrated to the attribute-based router — first core group to "bring its own routing" (the login page is still served byHome()at/, unchanged) - Attribute-routed requests now run inside the full per-request context (authenticator, macro engine, and — for
Auth: JWT— a session hydrated from the verified token)
Tooling
Examples/build_Examples.cmdnow accepts command-line arguments to build a single example / deploy mode / config, e.g.build_Examples.cmd TasKitto Desktop Debug(the interactive menu is kept when run with no arguments)
08 Jun 2026: ver. 4.0.8 Beta
Theming
- User-selectable theme: set
Theme/UserSelection: Trueand drop aController: ThemeSwitcheranywhere in the GUI — the end user picks Light / Auto / Dark live, persisted per-app inlocalStorage, FOUC-safe boot, no page reload Themeis now a structured config block discoverable by KIDEx:Theme/Mode(Auto/Light/Dark), shared font/icon settings, and per-modeLight:/Dark:palettes (each with its ownPrimary-Color) — replaces the old flatTheme: <mode>value (existing configs still load)
Login
- Full-width footer and side-panel layout refinements; optional per-section theme switcher
KIDEx
- Boolean
[YamlNode]defaults now carry the inverse of the runtime default, so the "Add node" menu writes the meaningful value instead of a no-op
MCP-KittoX
- Many new tools added — full CRUD on Models / Views / Layouts, database introspection (connections, tables, columns), config read/update, locale (
.po) reading, metadata validation, and grid/list view scaffolding (40+ tools total, up from 16)
18 May 2026: ver. 4.0.7 Beta
Controller/AutoOpenandController/PagingToolsbased on model'sIsLargeflag- A Reference field whose target Model has
IsLarge: Truerenders as a searchable lookup popup
JWT / ACL hardening
Auth: JWTno longer emits the legacy<AppName>session-id cookie norkx_db— the JWTsidanddbclaims carry the same info- Server-side ACL enforcement on every
HandleKX*route (view/data/save/delete/form/lookup/blob/upload/tool/detail*/wizard) - New auth gate in
DoHandleRequestreturns 404 on protected routes for unauthenticated requests (public views excluded) - Toolbar Add/Edit/Delete/Dup stay
disabledfor ACL-denied users - Per-thread JWT context cache uses
TObjectDictionary<TThreadID, ...>
IDE / wizard
- New RAD Studio IDE plugin gallery:
KittoXIDE.bplregisters 4 entries under File > New > Other > KittoX Projects (Standalone .exe / Desktop .exe / ISAPI .dll / Apache .dll) - Three paths to scaffold a new app: KIDEx standalone, the new IDE gallery, and
MCP-KittoX project_create_app - New project default:
Auth: TextFilewith a ready-to-useHome/FileAuthenticator.txt(admin/admin demo accounts) so the generated app authenticates out of the box, no users table required. JWT envelope kept as default.AccessControldefault switched toNullto avoid deny-all post-login on a brand-new project.DB.FD.yamltemplate now setsODBCAdvanced: TrustServerCertificate=yesso SQL Server ODBC Driver 17/18 connects on first try - Model Wizard
Beautify namesoption now also handles DB names with spaces (Northwind-style:Quarterly Orders→QuarterlyOrders,Sales by Category→SalesByCategory); the original name is preserved inPhysicalNamefor the SQL layer - Model Wizard — new editable
DisplayLabelandHintfields on every Add/Update Field action: auto-populated from the database's native column comment when present (MSSQLMS_Description, PostgreSQLpg_description, FirebirdRDB$DESCRIPTION, MySQLCOLUMN_COMMENT, OracleUSER_COL_COMMENTS), fully editable before Apply - Action "New TreeView..." on the Views folder is now idempotent: pointing it at an existing
MainMenu.yamlmerges the Models that aren't yet referenced under theFolder: Menublock, preserving every hand-edited entry, instead of raising a duplicate-object error
MCP-KittoX
- New tool
models_create_from_db— the headless equivalent of the Model Wizard. AI agents can reverse-engineer Models from a database connection conversationally: defaults todry_run: true(preview only); passdry_run: falseto commit. Output is byte-identical to what the visual wizard writes.DisplayLabelauto-populated from the database's native column comments; optionalfield_descriptionsarray lets the agent inject labels from a non-DB source (CSV, glossary, prior YAML) with per-property override precedence - New tools
models_list/models_read/views_list/views_read/resources_list/resources_read— enumerate and read project metadata and static resources headlessly - New tool
menu_generate_main_menu— create or refreshMainMenu.yamlwith one entry per Model under a top-levelFolder: Menu; idempotent (existing entries preserved, only missing Models appended) - Database column comments are now auto-fetched for all 5 supported engines (MSSQL, PostgreSQL, Firebird, MySQL, Oracle) and flow into both the KIDEx wizard and the MCP tool
- 16 tools now implemented (was 9)
- Better error reporting from MCP tools: errors are now propagated verbatim to the JSON-RPC client (class name + message) instead of being replaced by a generic fallback
Setup / tooling
- Setup installer ships
MCPKittoX.exealongsideKIDEX.exesharing OnGuard license Tools/SetVersion.ps1now also bumps the 12 dprojs of the 3 official examples (HelloKitto, TasKitto, KEmployee — 4 deployment variants each), and inserts<VerInfo_Release>and other VerInfo tags when the .dproj has them stripped (Delphi removes VerInfo tags whose value is 0)
01 May 2026: ver. 4.0.6 Beta
- New
Auth: JWTwrapper authenticator (signedkx_tokencookie, sliding expiration, programmatic key registration) - New
AccessControl: JWTreading grants fromkx_aclclaim snapshotted at login, with optional DB fallback - Updated examples to JWT Auth (TasKitto / HelloKitto / KEmployee)
- Updated TasKitto example with three-tier ACL (
admin/user/viewer) - Multi-database support on TasKitto and HelloKitto: SQL Server / PostgreSQL / Firebird
- Cross-dialect macros:
%DB.TRUE%/%DB.FALSE%,%DB.DATEDIFF,%DB.DATETIME_FROM - Login form with optional "Environment" combo for multi-database apps (
Auth/DatabaseChoices) - Native boolean types on the three sample DBs (
BIT/BOOLEAN); Firebird setup is now SQL-script-only - Firebird Activity Dashboard views translated from the SQL Server originals
- TasKitto SQL Server DDL split (tables / views in separate scripts because of T-SQL batch rules)
- New
Tools/SetVersion.ps1: one-shot version bump across constant, dproj, README and Inno Setup - New
Projects/BuildAllPackagesD{10_4,11,12,13}.ps1wrappers: rebuild Core + Enterprise per Delphi version - YAML metadata files included in every
.dproj(visible in Project Manager, KIDEx highlighting) EF.Logger.TextFileactive out-of-the-box for the standalone Indy hosts
23 Apr 2026: ver. 4.0.5 Beta
- Architectural refactor: DB connection ownership unified in
TKConfig - New API
TKConfig.DatabaseFor(Name)andTKConfig.CreateStandaloneDBConnection(Name) CreateDBConnectionmoved frompublictoprotectedClearDatabase/DestroyInstancenow clear bothFDatabaseandFDatabases- New
InDBConnection/InDBTransactionhelpers
22 Apr 2026: ver. 4.0.4 Beta
- Manual column resize in grids
- Tooltip on truncated grid cells (only when actually truncated)
- Fix: in-memory lookup popup closing on resize
- Tooltip on TreePanel menu nodes
- Multi-column sort in grids
- Multi-page form validation
- Edit-mode accent border for combobox and other non-text-editable fields
- SunEditor readonly rendering
- Checkbox styled like other form inputs
- DetailTables Style (Tabs/Bottom/Popup)
- Added CSS
.disabledclass
23 Apr 2026: ver. 4.0.3 Beta
- Editing-mode field borders
- Form toolbar anchoring
- DateTime field fixes
- Fixed KittoEmailSenderSrvc
- Grid keyboard navigation
- SunEditor theming and resize
- Dialog focus
- DetailTables Style (Tabs/Bottom/Popup)
- ExportExcel / ExportFlexCel
- Fixed Date/time filters SQL conversion
- Date/time filter trigger
- Error dialog consistency
Controller: Windowrestored backward-compatibility
19 Apr 2026: ver. 4.0.2 Beta
- Simplified Apache/IIS deployment: static resources served internally, no RewriteRule needed
- New deployment mode: Windows Service + reverse proxy (nginx/Apache/IIS) with install/uninstall scripts
- Fixed ViewMode to EditMode save bug in master-detail forms
- Implemented Apply*Rules event chain (EditRecord, NewRecord, Duplicate, AfterShowEditWindow)
- Master-detail: "Confirm" button (save-cache) and "Save All" only visible in ViewMode
- HTTP error feedback (htmx:responseError) with Retry/Reset dialog
- Updated Italian localization (.po/.mo) with all KittoX strings
- Extensive documentation updates (deploy, proxy, localization, form state machine, routing)
- Added DDL and DML script for Example databases
09 Apr 2026: ver. 4.0.1 Beta
- Fixed Field Rules client-side (ForceUpperCase, ForceCamelCaps, MinValue/MaxValue)
- Fixed PackageGroup
- Fixed modal lookup for Reference fields
- Fixed Example for Apache modules
07 Apr 2026: ver. 4.0.0 Beta (first public release)
First public release of Kittox, the fourth generation of the Kitto framework. Complete rewrite of the client-side from ExtJS to HTMX + AlpineJS + TemplatePro, with a new modular server architecture.
Architecture
- HTMX + AlpineJS client: server-generated HTML fragments with partial page updates via AJAX. No heavy JavaScript framework.
- Attribute-Based Routing (RTTI): URL routing via Delphi custom attributes, inspired by MARS/WiRL. Resource classes register in
initializationsections; the framework discovers them via RTTI. Dependency injection for request context ([TKXContext]). Dynamic JS/CSS injection viaTKXScriptRegistry. - Open Core licensing: Core (Apache 2.0), Enterprise modules (AGPL-3.0 / Commercial), KIDEX (Commercial only). Separate packages:
KittoXCore.dpkandKittoXEnterprise.dpk. - Server-Side Store: persistent in-session data stores with record state tracking (
rsNew,rsClean,rsDirty,rsDeleted), transactional master-detail saving (INSERT/UPDATE/DELETE in a single DB transaction), blob lazy-loading, and store lifecycle management (save/cancel/close/timeout).
Controllers
- List (grid with CRUD toolbar, server-side paging, sorting, column layouts, row colors, grouping)
- GroupingList (collapsible group headers)
- Form (data-aware editing with field pages, detail tabs, ViewMode/EditMode state machine)
- Wizard (multi-step data-aware with Back/Next/Finish, per-step validation)
- BorderPanel, TabPanel, FlexPanel, TreePanel, TilePanel, HtmlPanel, StatusBar, ToolBar
- Enterprise: ChartPanel (Chart.js), CalendarPanel (EventCalendar), GoogleMap (Google Maps JS API), Dashboard (auto-refresh)
- Card View: List controller with
TemplateFileNamefor custom HTML card layouts with full CRUD - Desktop Embedded Mode: KittoX app inside a WebView2 (TEdgeBrowser) VCL window
Data & Database
- Database agnostic: pluggable via FireDAC (preferred), DBExpress, ADO
- Master-detail transactional save: master + all detail stores persisted in one transaction
- Detail CRUD in memory: add/edit/delete detail records without DB round-trips until final Save All
- Record state after Load: records loaded from DB correctly marked as
rsClean - Server-Side Store cache: blob lazy-load from session store, store released on save/cancel/close/timeout
Forms & Editing
- Form State Machine: ViewMode (Edit / Save All / Close) and EditMode (Save / Cancel) with CSS-based button toggling
- Save-cache endpoint: saves master to memory without DB persistence, enables Save All workflow
- Detail tables: lazy-loaded tabs, auto-built views, FK pre-fill on Add, transactional cascading save
- Unified Editor Factory (
Kitto.Html.Editors): centralized HTML input generation shared between Form and FilterPanel - Help button: configurable via
Defaults/Help/HRefin Config.yaml, appears in forms (first button) and list toolbar (after Refresh)
Mobile Support
- Automatic mobile detection: user agent + screen size cookie
- Fullscreen dialogs on mobile:
IsModal+Maximizedforced for all fragment views/forms viaAdjustControllerForContext - Panel properties:
IsModal(dialog overlay),Maximized(fullscreen viewport),AllowClose(X button and Close button) - Width/Height getters: return 0 when Maximized is True (original values preserved for restore)
kxApp.openView: single JS function for view opening from menus (TreePanel and TilePanel use identical logic)body.kx-mobileCSS class: forces dialog and login fullscreen on mobile devices- TilePanel: tile-based menu controller for mobile home pages, with touch support (
role="button",touch-action: manipulation) - Home view selection:
HomeTinyView(phone),HomeSmallView(tablet),HomeView(desktop)
UI & UX
- Toast notifications: shown after save ("Data saved") and delete ("Data deleted"), auto-dismiss 3 seconds
- Error handling: DB errors (EEFDBError) non-fatal with clean messages (driver prefixes stripped). Session-level errors trigger reload.
- Draggable dialogs: all message boxes and error dialogs draggable by title bar via
kxMakeDraggable - Refresh button: in CRUD toolbar (visible by default, hidden with
PreventRefreshingor on read-only controllers) - Column sorting: click to sort ascending, click again for descending, sort arrows via CSS pseudo-elements
- Double-click to open: automatic edit/view form from grid rows
- Session lost detection: fatal error dialog with reload on server restart
- Timeout handling: configurable
AjaxTimeoutfor both HTMX and fetch channels, Retry/Reset dialog
Filters
- Filter Panel with:
FreeSearch,List,DynaList,ButtonList,DynaButtonList DateSearch,TimeSearch,DateTimeSearch,NumericSearch,BooleanSearch- Layout with
ColumnBreakandLabelWidth
Custom Layouts
- Custom Layout for Grid and Form
- Grid Layout with Column position, alignment
- Form Layout "multipage", with collapsible regions
Authentication & Access Control
- Pluggable authenticators:
DB,DBCrypt,TextFile,DBServer,OSDB,Null - Pluggable access controllers:
DB,Null - BCrypt password hashing, Google OTP (TOTP) two-factor authentication, QR code generation
- Session abstraction:
IKXSessionProviderwithTKXCookieSessionProvider(JWT-ready for future)
Tools
- CSV export (
ExportCSVTool), Excel export via ADO (ExportExcelTool), SQL tool, file download/upload - FlexCel integration (commercial, Enterprise edition)
- ReportBuilder integration (commercial, Enterprise edition)
- DebenuQuickPDF for PDF merging
Deployment
- Standalone (VCL desktop or Windows service with embedded Indy HTTP server)
- Desktop Embedded (WebView2 inside VCL window)
- Console (headless server)
- IIS (ISAPI DLL via WebBroker)
- Apache (module via WebBroker)
KIDEX (Visual IDE — Enterprise)
- RTTI-based property discovery (replaced 215 MetadataTemplate YAML files)
- 6 custom YAML attributes:
YamlNode,YamlRequiredNode,YamlContainer,YamlSubNode,YamlChildType,YamlEnumValue - SVG icon support (Material Design Icons)
- Database reverse engineering (model creation from DB schema)
- Project wizard, validators, tree editors
Examples
- HelloKitto: simple party/invitation manager (Parties, Girls, Dolls, Invitations)
- TasKitto: activity tracking with dashboard, charts, calendar, projects, customers
- KEmployee: employee/customer management with master-detail, card views
Supported Delphi Versions
Available from Delphi 10.4 to Latest (Win32 or Win64 platforms).

