feature request - csv export button below table on right side in default list

rw1

Moderator
Hello,

I tried changing the position of the button for csv export on the front end list (default template) to below the table on the right and it looked pretty good I think, but the table headings disappeared, so obviously i wasn't doing it right. But these are the files i hacked:

To Move CSV Export Button, in:
Code:
/public_html/components/com_fabrik/views/list/tmpl/default/default.php
Find:
Code:
<?php echo $this->loadTemplate('buttons');

if ($this->showFilters) {

	echo $this->loadTemplate('filter');

}

//for some really ODD reason loading the headings template inside the group

//template causes an error as $this->_path['template'] doesnt cotain the correct

// path to this template - go figure!

$this->headingstmpl =  $this->loadTemplate('headings');

?>
move to just before:
Code:
<?php	print_r($this->hiddenFields);?>
To Add Text To The Export Button, in:
Code:
/public_html/components/com_fabrik/views/list/tmpl/default/default_buttons.php
Find:
Code:
<a href="#">

				<?php echo $this->buttons->csvexport;?>

				<span><?php echo JText::_('COM_FABRIK_EXPORT_TO_CSV');?></span>

			</a>
Replace With:
Code:
<a href="#">
				<?php echo $this->buttons->csvexport;?>
		Export Records To CSV				
			</a>
To Move The Button To The Right Hand Side, in:
Code:
/public_html/components/com_fabrik/views/list/tmpl/default/template_css.php
Find:
Code:
#listform_$c .fabrik_buttons{

	/* remove this if you want the top menu bar to be on the right hand side*/

	float:left !important;

}
Replace With:
Code:
#listform_$c .fabrik_buttons{

	/* remove this if you want the top menu bar to be on the right hand side*/

	/*float:left !important;*/

}
To Remove Link Underline:

I then replaced the above with:
Code:
#listform_$c .fabrik_buttons a {

	/* remove this if you want the top menu bar to be on the right hand side*/

	/*float:left !important;*/
        text-decoration: none;

}
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top