This version corrects the Admin issue introduced by V4.4. V4.4.1 is available through the Joomla Updater or for download through your My Downloads area of our website.
Turns out a code change intended for our 5.0dev branch inadvertantly got pushed to the 4.x branch (by me, duh!). The javascript structure in 5.0 will change considerably and part of that change took effect with the inadvertant code change.
We have reverted the code change and released 4.4.1. V4.4 has been retracted.
Sorry for any inconvenience.
See the details here
Watched values are correct.main.js?65eb9b69:1 [Deprecation] Listener added for a synchronous 'DOMSubtreeModified' DOM Mutation Event...\
Yes, there are still issues with the usekey feature in general (not only CDD related)user_id by setting the row_id to -1.
$db = Joomla\CMS\Factory::getContainer()->get('DatabaseDriver');
$app = Joomla\CMS\Factory::getApplication();
$user = $app->getIdentity();
$user_id = $user->get('id');
$user_id_form = '{wic_users___user_id}';
if (! is_numeric($user_id_form)){// blank form
if ($user_id != $user_id_form){// user is logged in then load the form id based on the user
$query = "SELECT id FROM wic_users where user_id = '".$user->get('id')."'";
$db->setQuery($query);
$id = $db->loadResult();
if ($id) {
$link = '/my-profile/form/12/'.$id.".html";
$app->redirect($link);
}
}
}
//form not blank, just edit as normal.
That worked wonders!Can you please test
in plugins\fabrik_element\cascadingdropdown\cascadingdropdown.php
change line 216 from $rowId = $this->app->input... to
$rowId = $this->form->rowId;
(In case of menu rowid=-1 there's no rowid input parameter)
I attempted the fix, but unfortunately, it didn’t work for me. When I applied it, nothing happened. The second cascading dropdown doesn’t load, and the list displays ‘No records’ on both the frontend and backend. The data is intact in the backend. After 20-30 minutes, the records display correctly, but filtering them causes the issue to reoccur.[databasejoin] --> level 1
[cascadingdropdown] --> level 2
[cascadingdropdown] --> level 3
Make sure to disable the Joomla caching in the system settings. I encountered the same frustration of not seeing what I was expecting from the changes I made.After 20-30 minutes, the records display correctly
Make sure to disable the Joomla caching in the system settings. I encountered the same frustration of not seeing what I was expecting from the changes I made.