× Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues

Is there a way to display a field in admin form but not in site form?

1 jaar 4 dagen geleden #10110 door Bizhan Rahim
Is there a way to display a field in admin form but not in site form? Same for listing. Some columns should be visible in admin that should not be in front end for the same view/table.

Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.

11 maanden 3 weken geleden #10128 door Ryan Minnig
Yes, you will edit the resulting com_xxx\src\tmpl\{table name here}\default.php file for the list view and com_xxx\src\tmpl\{table name here}\edit.php for the form view. In that you will find the code that generates the HTML for your component similar to:

<form action="<?php echo htmlspecialchars(Uri::getInstance()->toString()); ?>" method="post"
name="adminForm" id="adminForm">
<?php if(!empty($this->filterForm)) { echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this)); } ?>
<div class="table-responsive">
<table class="table table-striped" id="xxList">
<thead>
<tr>
<th class=''>
<?php echo HTMLHelper::_('grid.sort', 'COM_XX_ID', 'a.id', $listDirn, $listOrder); ?>
</th>
.......more columns here.........
</tr>
</thead>



Simple remove the headers for the columns you wish to hide makign sure to do this in the head and body part of the table.

A similar method is used for both the admin part and the site part.

Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.

11 maanden 2 weken geleden - 11 maanden 2 weken geleden #10130 door Charlotte Garner
Hello,

Yes, you can use the Django admin ModelAdmin class to define fields to be displayed in the admin form and list view, separate from the fields displayed in the site form. Use the list_display attribute to define columns for the list view, and fields attribute for the admin form.


Connect.McKesson.com
Best regard,
Charlotte Garner
Laatst bewerkt 11 maanden 2 weken geleden door Charlotte Garner.

Gelieve Inloggen of een account aanmaken om deel te nemen aan het gesprek.

Tijd voor maken pagina: 0.140 seconden
Gemaakt door Kunena

We use cookies so that you can place orders and we can provide a better service. You can control the use of cookies at the individual browser level. If you reject cookies, you may still use our website, but your ability to use some features or areas of our website may be limited.