This topic is locked
[SOLVED]

 Exlude Custom Code for panel search

9/9/2019 10:51:21 AM
PHPRunner General questions
S
sadisticmagician author
N
Nir Frumer 9/9/2019

hi

you may use "use different settings for all pages"

on the "fields" tab
hope it helps,

S
sadisticmagician author 9/10/2019



hi

you may use "use different settings for all pages"

on the "fields" tab
hope it helps,


Thank you for help, but pages are not different, are list and filter panel of same page.
screen > https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=88760&image=1&table=forumreplies

Sergey Kornilov admin 9/10/2019

You should try "use different settings for all pages". Filter panel is a part of the search meaning that search settings will be applied.

S
sadisticmagician author 9/10/2019



You should try "use different settings for all pages". Filter panel is a part of the search meaning that search settings will be applied.


Hello, It's same... I'm using "use different settings for all pages", but options for "Filter panel" is different, has not "Custom Code" > https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=88775&image=1&table=forumreplies";

Sergey Kornilov admin 9/11/2019

You are not reading. Read my latest reply one more time. Nobody is talking about 'Filter as' settings.

S
sadisticmagician author 9/12/2019



You are not reading. Read my latest reply one more time. Nobody is talking about 'Filter as' settings.


Hello I done these steps:

  1. Added custom code on field in "Editor" > https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=88783&image=1&table=forumreplies
  2. Checked "Use different settings for all pages > https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=88783&image=2&table=forumreplies
  3. But "FBS" becomed red in panel search too > https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=88783&image=3&table=forumreplies
    where am I wrong?

Sergey Kornilov admin 9/12/2019

I see what you saying. You are not using the search panel, you are using filter panel and the suggested approach won't help.
Here is what you can do though.

  1. Modify SQL Query adding a copy of the 'source' field.
    select ...

    source,

    source as source2

    from tablename
  2. Display 'source' field on the List page and apply 'View as' Custom
  3. Display 'source2' field on the filter panel only

S
sadisticmagician author 9/13/2019



I see what you saying. You are not using the search panel, you are using filter panel and the suggested approach won't help.
Here is what you can do though.

  1. Modify SQL Query adding a copy of the 'source' field.
    select ...

    source,

    source as source2

    from tablename
  2. Display 'source' field on the List page and apply 'View as' Custom
  3. Display 'source2' field on the filter panel only


Ok thanks