Page 1 of 1

Move Filter Code to Left Panel

PostPosted: Thu May 19, 2011 5:11 pm
by righdforsa
Hi,

Love your product! So much of what we were thinking about coding from scratch is already available!

I've enabled filters on several fields in the list view, but I want to move the drop-downs over to the left column, and I can't seem to figure out how to make it happen. Please help.

Re: Move Filter Code to Left Panel

PostPosted: Thu May 19, 2011 5:40 pm
by shannah
Currently there's no config option to relocate this. You might try to use javascript to move the whole div containing the filter into the left column. E.g. using jquery
Code: Select all
jQuery(document).ready(function($){
    $('#left_column').append($('.resultlist-filters'));
});


It's a hack but it will probably work.

Re: Move Filter Code to Left Panel

PostPosted: Tue May 24, 2011 12:52 pm
by righdforsa
Thanks for the tip, we'll try that. We'd be ok with replicating the feature in both places, if you can think of a way to do that.

Thanks,
Chris