We are in the process of upgrading to Version 11 of LTM and are making changes to Candidate Space. Currently it defaults to display Recent Jobs. Is there a way to change this to display all jobs? Thank you.
Hi Jim!
This is Jomel Inovejas from the Development team, you can adjust content.html to have it default to "All" instead of "Recent"
I am pasting the code changes here but do let me know if you want a copy of the word file for easier viewing.
The file you need to adjust is content.html
From:
parent.setMainPageActiveLink('jobListing');
$('#seeRecentPosting).addClass('activeLink');
$("#clearBtn").attr('disabled', true);
To:
$('#allPosting').addClass('activeLink');
} else {
$().getJobList(window.ENVIRONMENT.hrOrganization, window.ENVIRONMENT.jobBoard, 'recent');
$.setParentStorage('jobId', '');
$.setParentStorage('jobTitle', '');
$().getJobList(window.ENVIRONMENT.hrOrganization, window.ENVIRONMENT.jobBoard, 'all');
<div class="themeSubtitle" id="divTitleRecent">
<span id="RecentJobPosting" ></span>
</div>
<div id="divTitleAll" class="themeSubtitle">
<span id="AllJobListings" style="display: none;" ></span>
<div class="themeSubtitle" id="divTitleHotJobs">
<span id="HotJobs" style="display: none;"></span>
<span id="RecentJobPosting" style="display: none;"></span>
<span id="AllJobListings"></span>
<a id="seeRecentPosting" href="#Joblisting"></a>
<span id="hotJobsSeparator">|</span>
<span id="hotJobsIcon" style="width: 18px; background-repeat: no-repeat; background-position: 0px 0px; background-image: url('images/hotjobs.png'); vertical-align: bottom; height: 17px; display: inline-block"></span>
<a id="seeHotJobs" href="#JobListing"></a> | <a id="allPosting" href="#Joblisting"></a>
<a id="allPosting" href="#Joblisting"></a>
<a id="seeHotJobs" href="#JobListing"></a> | <a id="seeRecentPosting" href="#Joblisting"></a>
[View:/cfs-file/__key/communityserver-discussions-components-files/60/Customization-for-making-All-be-the-default-_2800_updated_2900_.docx:320:240]