Next/Previous buttons

Post here questions and problems related to editing and publishing DITA content.
Tristan
Posts: 30
Joined: Tue Jun 02, 2015 2:01 pm

Next/Previous buttons

Post by Tristan »

Hi,

Since the oxygen 18 update next & previous buttons (e.g. family=sequence is set) are no longer showing in the topheader of the classic webhelp output.
Any reason why they don't show anymore or is there a known workaround to get them back in the output?

Thanks,

Tristan
bogdan_cercelaru
Posts: 222
Joined: Tue Jul 01, 2014 11:48 am

Re: Next/Previous buttons

Post by bogdan_cercelaru »

Hello Tristan,

Thank you for reporting this issue.
To resolve this issue you should open the [DITA-OT]\plugins\com.oxygenxml.webhelp\oxygen-webhelp\resources\skins\desktop\toc_driver.js file and replace the code below

Code: Select all


	$('#navigationLinks').html($('#frm').contents().find('div.navheader .navparent, div.navheader .navprev, div.navheader .navnext'));
$('#frm').contents().find('div.navheader').hide();
with the following one:

Code: Select all


	$('#navigationLinks').html($('#frm').contents().find('span.navheader .navparent, span.navheader .navprev, span.navheader .navnext'));
$('#frm').contents().find('span.navheader').hide();
This fix will be also included in the next maintenance build of Oxygen XML Editor.

Regards,
Bogdan
Bogdan Cercelaru
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Tristan
Posts: 30
Joined: Tue Jun 02, 2015 2:01 pm

Re: Next/Previous buttons

Post by Tristan »

Thanks for the quick support!
I applied the fix and the buttons are indeed back.

Cheers,

Tristan
Post Reply