Search results

  1. L

    Delete a row in a list not working - msg : Select some rows for deletion

    I found the solution adding the plugin 'candeleterow'. I test if i'm in the form or not returning true or false.
  2. L

    Delete a row in a list not working - msg : Select some rows for deletion

    can I change icon with a blank or hidden ? where can i write a custom list css for this specific list ?
  3. L

    Delete a row in a list not working - msg : Select some rows for deletion

    oups... other way : can I hide the 'row's trash icon' in the list keepping the delete button in the form ?
  4. L

    Delete a row in a list not working - msg : Select some rows for deletion

    Yes, I clicked on the row's trash icon and not on the header trash icon. I didn't custom list template. The checkboxes are hidden. I display my list with the following code (exemple) : 1st list {fabrik view=list id=16 table___field1=$filter1} 2nd list {fabrik view=list id=16...
  5. L

    Delete a row in a list not working - msg : Select some rows for deletion

    I don't want to delete multi-rows. I don't display check-box. I just want to delete the row when I click the trash icon of the row.
  6. L

    Delete a row in a list not working - msg : Select some rows for deletion

    When I'm in a list and I click to delete a row, I have the message 'Select some rows for deletion' The row i've clicked is not deleted. I've the following message : I don't understand why. Do you have an idea ?
  7. L

    Solved "fabrik view=list" in From Intro - not working

    I was looking for the option in the fabrik system menu but it's directly in the form. It works fine, thank's a lot !
  8. L

    Solved "fabrik view=list" in From Intro - not working

    In a List Intro, I display an other list using : {fabrik view=list id=4 elements=26|27} -> it works The same list in the Form Intro is not working -> it's blank is there a reason ?
  9. L

    Solved Prefilters : eval FabrikHelperElement::filterValue - not working

    {source}<?php echo FabrikHelperElement::filterValue(20,'2_com_fabrik_2'); ?>{/source} It works.... Thank's a lot.
  10. L

    Solved Prefilters : eval FabrikHelperElement::filterValue - not working

    For information, in my list, I use php_events : it works correctly. Maybe I can use it ?
  11. L

    Solved Prefilters : eval FabrikHelperElement::filterValue - not working

    Sorry for my english... I would like to say : My list (number 3) works correctly using external filter (from list number 2) in pre-filter. I would like to show the pre-filter I use in the Introduction. I don't know what is au 'Custom Fabirk Template' Can you explain or Where can I find...
  12. L

    Solved Prefilters : eval FabrikHelperElement::filterValue - not working

    My pre-filter works correctly : If I try to follow what you explain : in the Intro, I add PHP code like that The result is : the code is not executed :-(
  13. L

    Solved Prefilters : eval FabrikHelperElement::filterValue - not working

    my text introduction is : 1 : {$my->id} 2 : {FabrikHelperElement::filterValue(20,'2_com_fabrik_2')} 3 : {fabrik view=element list=2 rowid=1 element=afc_champ_ed___champid} my result is : 1 : 906 2 : {FabrikHelperElement::filterValue(20,'2_com_fabrik_2')} 3 : -UAT - test The FabrikHelperElement...
  14. L

    Solved Prefilters : eval FabrikHelperElement::filterValue - not working

    Nothing is working... :-( do you have an idea ?
  15. L

    element 'eval populate' echo does not work anymore

    I use : $wa = Factory::getApplication()->getDocument()->getWebAssetManager(); $wa->addInlineScript('content of inline1'); It works ! thank's a lot...
  16. L

    pre-check items of form checkbox or picklist

    It works fine. Thanks a lot !
  17. L

    pre-check items of form checkbox or picklist

    I'm sorry but I don't understand what you explain. Can you tell me what I have to change in my following script ? In F3, the 'echo' with 'script' toggle the item I want to pre-check. eval script : $Db = FabrikWorker::getDbo(false, 2); $Db->setQuery("SELECT id,name,select FROM name_table WHERE...
  18. L

    element 'eval populate' echo does not work anymore

    In F3, I pre-check some Item with JS using 'echo' In F4, I don't understand how to flag 'selected' item to pre-check some of them. I know what items I have to check via my database.
  19. L

    element 'eval populate' echo does not work anymore

    I confirm the 'echo' command in 'eval populate' works with the version 3.10 a part of my code is : $Db->setQuery("SELECT id,nom FROM table WHERE `sel`='Y' ORDER BY NOM"); $Libs = $Db->loadObjectList(); foreach ($Libs as $Lib) { $options[] = JHTML::_('select.option', $Lib->id, $Lib->nom); echo...
Back
Top