You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Context: admin.php uses $config->ajax to control output and output buffering (ob_...). In case of true a process modules output is send directly otherwise the modules output is embedded as "content" in an admin page.
when you use htmx in an modules execute<...> method you want this ajax like handling.
Problem:
in admin.php $config ->ajax is overruled by the return value of ProcessController->isAjax(). And ProcessController is not modifiable whether by overriding isAjax() nor by hooks and it knows only how to detect incoming ajax requests (by checking HTTP headers)
It is not possible to arrange direct HTMX output (like in case of classic ajax) in a execute<...> method of a modules object.