I had used the inline edit plugin with F3 and Joomla 3 for quick/simple edits as well (and it worked great updating something like a phone number or address). I'm pretty sure it came with a big warning about using it with joined tables (where a list had 1 or more joined tables). Just mentioning it as a heads up.
My scenario is a little different. In the past (Fabrik 3 & Joomla 3), I ran into issues with opening forms that had several joined lists, repeating groups and elements that were cascading dropdowns. Depending on the number of repeating rows, the queries would end up using too much memory and cause page timeouts.
This time around, I used SP Pagebuilder to create an "edit" page that opens the form for my main list as a Fabrik Module. The main list doesn't have any joins (the only joins within the query to open the form is from a couple dropdown select elements). I pass the rowid as a parameter in the URL by having a menu item that points to a copy of my main list - where it has a custom edit link pointing to my custom "edit" page. This way, the Fabrik form module knows which row to open.
On my "edit" page, in place of using Fabrik's bootstrap tabs layout and loading several related groups at once, I created separate lists for related content such as documents, contacts, fee schedule, notes etc... that act as groups (that would have been joined Fabrik lists) and each list has an element named "parent_id" that has the same purpose as what is done within Fabrik, but I use it a little differently.
Each of the associated lists have their own Fabrik list module created to load into my edit page when they are called via fetch request. Rather than how the bootstrap tabs layout would still pull everything at once, I mimic the functionality by having another section below the main form on my edit page that lists tabs (named accordingly to each associated list module). To get this to work, each tab has a class associated to it and an event listener (in js) waiting for an onclick action to trigger a fetch request. The request includes the rowid value (from the edit page's url) and the Fabrik list module pre-filter is set to only return records where the associated list's "parent_id" is equal to the main form's "id" (from the rowid parameter). The fetch response gets inserted into the div below the tab list that was just clicked. To do all this, I created a form_#.js file (where "#" is the id of my main list's form) and saved it in components/com_fabrik/js/. It gets loaded when my main form loads within my edit page. All works great except...
Within each associated list module's advanced settings, I set the "Ajaxify Links" option to "Yes" to have a modal open when I click either the Add or Edit buttons of the associated list that is open. The modal does open, but the ajax request fails. I used to work before I updated Fabrik from 4.0Zeta to 4.2 and Joomla from 4.2 to 4.4. I don't know what changed, but troester suggested that it might have been a template update (I'm using Helix Ultimate) or a SP Pagebuilder update (totally possible). So, I've reached out to JoomShaper to see if they might be able to help...
Currently, if I turn off "Ajaxify Links" in the modules, each list opens its form in the same window and when I click "Save", I'm directed back to my edit page (with all of the updated content saved). It is useable this way, but I preferred the modal as it didn't reload the edit page (similar to what you were hoping for).
Anywho, good luck with the plugin!