This topic is locked

PHPR10 - Move sidebar search at right

1/18/2019 11:19:15 AM
PHPRunner General questions
S
sadisticmagician author

Hello, how can I move sidebar search at right?

with old phpversion it was very simple using block container, in this version no have this function.
thanks

S
sadisticmagician author 1/21/2019



https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=86838&image=1&table=forumreplies


Hello, I know this new feature, but how can I move sidebar on the right? >> https://imgur.com/a/iOd9eRk
or in alternative (I prefer)
I'd like hide this panel >> https://imgur.com/a/Ivaa5Vn with this button >> https://imgur.com/IWu1dHu:
thanks

HJB 1/21/2019

https://imgur.com/a/GQ1ue1F
Unfortunately, at least at my end on a test,

it doesn't show up within the generated page at all.

S
sadisticmagician author 1/21/2019



https://imgur.com/a/GQ1ue1F
Unfortunately, at least at my end on a test,

it doesn't show up within the generated page at all.


Yes tried, doesn't work.
if is possible I'd like get second method: bar on left and hide all sidebar with button, not only search box.

HJB 1/21/2019



Yes tried, doesn't work.
if is possible I'd like get second method: bar on left and hide all sidebar with button, not only search box.


Via Java Script Onload Event, sample code as below:

if( $('#searchOptions1').is(':show') ) {

searchController1.toggleSearchOptions();

}
S
sadisticmagician author 1/21/2019



Via Java Script Onload Event, sample code as below:

if( $('#searchOptions1').is(':show') ) {

searchController1.toggleSearchOptions();

}



I get this error > Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: show

HJB 1/21/2019



I get this error > Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: show


https://imgur.com/a/THi3Yrb
Is okayed in regard to built-in syntax check under PHPRunner "Javascript Onload Event" in LIST page.

So, please crosscheck whether it looks the same at your end like in the screenshot above.

S
sadisticmagician author 1/21/2019



Is okayed in regard to built-in syntax check under PHPRunner "Javascript Onload Event" in LIST page.

So, please crosscheck whether it looks the same at your end like in the screenshot above.


Yes, synthax is ok.
this is error by chrome console > https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=86847&image=1&table=forumreplies
But this code will work only client side? because I think that the button hide search box with a cookie at page refresh.