asked on June 16, 2017

Hello, I am using Client Automation .NET API for SDK10.2, driving Laserfiche 9.1. I am trying to get the code below to work. Everything works well, and it will pop up a new search. However, I would like the "Folder Tree" to open up in the left pane, instead of the "Search Results" in the left pane. The searchoptions.LeftPaneDisplay should do this according to the SDK Documentation, but it does not open up with the Folder Tree. I always see the Search results in the left panel. I have tried various combinations of the other searchoptions along with LeftPane.FolderTree, and none seem to have an affect. Any guidance is appreciated.

 

I can post an image or a video if that helps for more information. Thanks

 

-Jason

 

=======

Code Snippet Below

=======

 

SearchOptions searchoptions = new SearchOptions()

searchoptions.LeftPaneDisplay = LeftPane.FolderTree; //DOESNT WORK FOR SOME REASON
searchoptions.NewWindow = false;
searchoptions.OpenIfOneResult = false;
searchoptions.EagerlyRetrieveResults = false; // Don't return the results since we don't care about them
searchoptions.Query = query;
mainwindow.LaunchSearch(searchoptions);

 

 

0 0