
According to the documentation, DOpus should have a property, either DOpus.TabGroups or DOpus.tabgroups, which should provide a .Save() method for that.
https://www.gpsoft.com.au/help/opus12/i ... Groups.htm
https://www.gpsoft.com.au/help/opus12/i ... /DOpus.htm
But neither seems to exist.
What is going on, what am I missing?
Or in general, how do I best save the currently open tabs in my standard lister programmatically?
I want to prevent losing open tabs in the event of unexpected shutdowns or crashes. Sometimes when my system is unstable, I close and re-open DOpus, but that is a hassle; I'd much rather put it on a button or a timer.
Thank you

Laut Dokumentation sollte DOpus eine property haben, entweder DOpus.TabGroups oder DOpus.tabgroups, welche eine .Save() methode dafür zur verfügung stellen sollte.
https://www.gpsoft.com.au/help/opus12/i ... Groups.htm
https://www.gpsoft.com.au/help/opus12/i ... /DOpus.htm
Diese scheint aber nicht zu existieren.
Was geht hier vor, was mache ich falsch?
Oder generell: Was ist der beste Weg, um die offenen Tabs meines Standard-Listers programmatisch zu speichern?
Ich möchte vermeiden, offene Tabs im Falle unvorhergesehener Beendigungen oder Abstürze zu verlieren. Manchmal schließe ich dazu DOpus und starte es wieder - aber das ist lästig.
Ich hätte das gerne viel lieber auf Knopfdruck oder Timer.
Vielen Dank!
Code: Alles auswählen
function OnClick(clickData)
{
DOpus.TabGroups.Save();
DOpus.tabgroups.Save();
}
'DOpus.TabGroups' is null or not an object (0x800a138f)