Hi,
1) unfortiunately ,it's not possible to use back and next button into the prepare template
2) if you want to show other fields of your list view on mobile phone, then first locate this file : \components\com_contentbuilder\views\list\tmpl\default.php
Around the line 544, you should see this part of the code :
$hidden = ' class="hidden-phone"';
foreach($row As $key => $value){
// filtering out disallowed columns
if(in_array(str_replace('col','',$key), $this->visible_cols)){
if($label_count == 0){
$hidden = '';
}else{
$hidden = ' class="hidden-phone"';
}
Delete this part of the code "class="hidden-phone" , then you will be able to see all fields of your list view on the mobile view.
If you want to show just an id, then find this part of the code around the line 432 :
<?php
if($this->show_id_column){
?>
<td class="hidden-phone">
<?php
if(( $view_allowed || $this->own_only )){
?>
<a href="<?php echo $link; ?>"><?php echo $row->colRecord; ?></a>
<?php
} else {
?>
<?php echo $row->colRecord; ?>
<?php
}
?>
</td>
Also remove class="hidden-phone".
Let us know if that worked for you.
KInd regards
Tihomir
===============================================
Support Crosstec and get ALL EXTENSIONS and professional support for just $5
Here!
===============================================
Regards
Tihomir
==========================================
+++ Purchase Professional Support:
crosstec.org/en/support/purchase-additional-support.html +++