Confusing check box in list

Status
Not open for further replies.

Fred04

Member
my list now shows a confusing checkbox before my edit / display icon

it was not the case before. Please see snapshot
 

Attachments

  • ScreenHunter_03 Oct. 04 21.48.gif
    ScreenHunter_03 Oct. 04 21.48.gif
    7.4 KB · Views: 299
  • ScreenHunter_04 Oct. 04 21.49.gif
    ScreenHunter_04 Oct. 04 21.49.gif
    6.5 KB · Views: 272
friendly bump

I'm ok if you want to control the position of the checkbox, but can you give us 3 options: left/right/none?

before the checkbox did not display at all and it was nice for me.
 

Attachments

  • ScreenHunter_01 Oct. 06 10.53.gif
    ScreenHunter_01 Oct. 06 10.53.gif
    2.5 KB · Views: 263
friendly bump,

how can I remove this check boxes in my list ??
FYI, I do not display the 'delete' button (delete record = nobody) , so I really don't need the check boxes.
 
Yup, this is something we're aware of and will work on as soon as we can.

We've been tweaking how the checkbox displays, and it gets kind of complex, as it depends on lots of criteria, like whether there are any list plugins that require it, list access permissions, individual row access permissions, and checkbox display mode. We obviously haven't gotten it tweaked quite right yet!

-- hugh
 
I got rid of it by changing default_row.php in the template override for my list to this:

PHP:
<?php defined('_JEXEC') or die('Restricted access'); ?>
<tr id="<?php echo $this->_row->id;?>" class="<?php echo $this->_row->class;?>">
	<?php foreach ($this->headings as $heading => $label) {
		$style = empty($this->cellClass[$heading]['style']) ? '' : 'style="'.$this->cellClass[$heading]['style'].'"';
		// do not display checkbox column
		if (strpos($this->cellClass[$heading]['class'],'fabrik_actions') !== false) { break; }
		else {
			?>
			<td class="<?php echo $this->cellClass[$heading]['class']?>" <?php echo $style?>>
				<?php echo @$this->_row->data->$heading;?>
			</td>
			<?php
		}
	} ?>
</tr>
 
Status
Not open for further replies.
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top