Form delete button still not working

It was my thread you are referring to but it's working since then without problem.

Not sure what you mean with "I cannot find the updated media/com_fabrik/js/form.js". The fix was more than one year ago, the code is in the current 3.3.1 download and GitHub version.
 
Sorry, I was not very clear.
In the media/com_fabrik/js/form.js file I see the change: this.doSubmit(e, del); but in media/com_fabrik/js/form.min.js I see at the same spot: this.doSubmit(g,a).
I assume the minimised version is actually used?

Best,
Eric
 
If formjs or form.min.js is used depend on your debug settings.
But form.min.js is the minimized version, so yes, it's this.doSubmit(g,a) here.

Both versions are working on my site.
 
Hmmm, is says: 'Form saved' but seems to do nothing. Makes no difference if I am in debug mode or not. I can delete records from List view though.
 
Which Joomla template are you using?
Can you see JS errors?
Is it working in the backend?
 
I am using Joomla 3.4.0 with an Artisteer tempate. Additionally I have to load bootstrap and added in index.php:
JHtml::_('bootstrap.tooltip');
$doc = JFactory::getDocument();
$doc->addStyleSheet($this->baseurl .
'/media/jui/css/bootstrap.min.css');
$doc->addStyleSheet($this->baseurl .
'/media/jui/css/bootstrap-responsive.min.css');
$doc->addStyleSheet($this->baseurl .
'/media/jui/css/bootstrap-extended.css');
$doc->addStyleSheet($this->baseurl .
'/media/jui/css/icomoon.css');
I do not see any errors with debug on or debug js.
BUT: I found the Delete button works when I set the List to 'Ajaxify links' No !!!
Then I get no pop-up but a full screen form and that works.
 
Back
Top