Page 1 of 1
					
				Next/Previous buttons
				Posted: Mon Apr 25, 2016 4:51 pm
				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
			 
			
					
				Re: Next/Previous buttons
				Posted: Tue Apr 26, 2016 3:39 pm
				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
 
			 
			
					
				Re: Next/Previous buttons
				Posted: Tue Apr 26, 2016 5:00 pm
				by Tristan
				Thanks for the quick support!
I applied the fix and the buttons are indeed back.
Cheers,
Tristan