Hi,
I said, I will report back, so I do.
This is the result right now, and I am pretty happy with it: When making the screensize smaller, an extra save button (green) appears in the header which, in a very small screen is placed directly above the actual record. Please keep in mind: this is a 2nd save button which simply "clicks" the original using JS.

- 2ndSaveButton_v2.gif (220.05 KiB) Viewed 32512 times
The code I used in
tablename-dv.js:
Code: Select all
$j('#ecomo_container_dv_container').find('.col-xs-12 div.clearfix').append('<a class="hidden-xl hidden-lg hidden-md hidden-xs btn btn-success btn-lg pull-right hspacer-sm" href="#" id="update_2nd" onclick="document.getElementById(\'update\').click()"><i class="glyphicon glyphicon-ok"></i> Änderungen speichern</a><a class="visible-xs btn btn-success btn-lg btn-block vspacer-sm" href="#" id="xs_update_2nd" onclick="document.getElementById(\'update\').click()"><i class="glyphicon glyphicon-ok"></i> Änderungen speichern</a>');
This should be easy to adopt for anyone, simply exchanging the
#ecomo_container_dv_container to
#tablename_dv_container!
The resulting HTML part:

- ec2nd2.png (24.71 KiB) Viewed 32512 times
Request for help:
I would like to request your help again to "clean up" the created HTML result.
The button code should appear
above the clearfix -
not in the clearfix. What do I need to change in my jquery?
Thanks already
Olaf