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

No link to form in backend list view

5 jaren 9 maanden geleden #1822 door Timo Ihnken
No link to form in backend list view werd gestart door Timo Ihnken
Hi guys,

I've created a simple list with component creator. At first I tried out a date field, a time field an a simple text field as the fields of my component. When I checked the component list view in the Joomla! backend the text field turned into a link to the form view.

Then i replaced the text field in component creator with the sql extended field, so I can pick real posts from my Joomla! installation. Turns out now I have no link to the form view from my list view entry. :(

Is it possible to choose a field as link to the form like the ID?

Thanks
Bijlagen:

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

5 jaren 7 maanden geleden #1843 door Jamila
Beantwoord door Jamila in topic No link to form in backend list view
Hi Timo,

sorry for the late reply. I'm not sure I understand you. Do you mean that the text you introduced as the entry in the component for the text field looks like a link that links to the edit form?

Could you please explain what you mean with this: "Is it possible to choose a field as link to the form like the ID?" and maybe add some screen shots for us to better understand the issue?


Many thanks,

Jamila

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

5 jaren 7 maanden geleden - 5 jaren 7 maanden geleden #1844 door Pieter-Jan van Rossen
Beantwoord door Pieter-Jan van Rossen in topic No link to form in backend list view
Kinda depends on where you want to link it to: the individuel component item or the actual Joomla post it refers to? The last one is a bit more difficult, but i don't see why you should (since there is a list view for that probably already), so i think you want to link it to the edit page of the individual item.

You can do so by editing the default.php of your list page on administrator side, since the sql field wont create a link by default.

I recommend working with a template override (see more about template overrides here: docs.joomla.org/How_to_override_the_outp...rom_the_Joomla!_core), this technique also works for administrator side by doing so in administrator/templates/your_template (probably Isis).

In administrator/components/your_component/views you find a folder for each view you have. Find the list view and copy the default.php from the tmp folder. Place it in administrator/templates/your_template/html/your_component/your_view. So lose the tmp filder in this path. your_component and your_view should be the same as in the path to the actual component. Now you have a override.

EDIT: I use joomla overrides for ages now, but only just found out you can actually create overrides using the template manager: docs.joomla.org/J3.x:How_to_use_the_Temp...r#Creating_Overrides. Makes live a bit easier.

Now find in default.php your sql field (probably something like <?php echo $this->escape($item->SQL_NAME); ?> )
replace it with this and edit the url to fit your component:
<?php if ($canEdit) : ?>
    <a href="<?php echo JRoute::_('index.php?option=COM_YOURCOMPONENT&task=YOUR_SINGLE_VIEW.edit&id='.(int) $item->id); ?>">
        <?php echo $this->escape($item->SQL_NAME); ?></a>
<?php else : ?>
     <?php echo $this->escape($item->SQL_NAME); ?>
<?php endif; ?>

if you don't know how to edit the url, you can always add a txt field like you did before download the component, find the correct default.php and copy the link from there.

Hope this helps you ;)
Laatst bewerkt 5 jaren 7 maanden geleden door Pieter-Jan van Rossen. Reden: added info on creating template overrides

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

Tijd voor maken pagina: 0.120 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.