jformer icon indicating copy to clipboard operation
jformer copied to clipboard

Setting PageNavigator label to 'title' does nothing

Open set321go opened this issue 13 years ago • 0 comments

the documentation says that there are 3 options for the 'label' on the page navigator http://www.jformer.com/documentation/form-features/page-navigator/

setting to title or prefixLabels gives the same result.

My modification is to just display the title if it is set to


 if ($this->pageNavigator['label'] == 'title'){
     $pageNavigatorLabelText = strip_tags($jFormPage->title);
 } else {
     $pageNavigatorLabelText = '' . $jFormPageArrayCount . ' ' . strip_tags($jFormPage->title);
 } 

this was added on line 1027 in the production code the equivilent line is 695 of the JFormer.php file on the project site

set321go avatar Oct 27 '11 22:10 set321go