Column headings
Posted: Wed May 13, 2020 1:10 pm
Can browse form column headings be multi-line? Line separator space.Can browse form column headings be multi-line? Line separator space.
Code: Select all
function increaseBrowseTitleHeight() {
// Increase holder height
$('#nuActionHolder').css({
'height': '60px'
});
// Increase title height
var t = -20;
$('.nuBrowseTitle').not('#nuBrowseFooter').css('top', t);
}
if (nuFormType() == 'browse') {
increaseBrowseTitleHeight();
}
Code: Select all
function increaseFrameTitleHeight() {
$('#nuBreadcrumbHolder').css({'height': '40px'});
// Increase title height
var t = -20;
$('.nuBrowseTitle').not('#nuBrowseFooter').css('top', t);
}
I only use this in iframe-mode and it looks right. Without this function, the table overlapped the header.kev1n wrote:Your code makes the nuBreadcrumbHolder element very high.