|
|
|
|
ExploraSaurus Demonstration
Basic
Basic has the fundamental features of a file explorer. Click a directory and it expands, click a file and you are jumped to the file. Features within basic
extend to all subclasses.
Gemini
Gemini takes advantage of both types of searching, directory and file. This class couples features of the directory search with features from file search to give
you one class that has all functionality of the ExploraSaurus package.
Composite
Composite isn't a subclass but a feature of basic that is noteworthy. By setting the option to composite the initial request only receives the first directory, with no sub directories populated. If a directory is clicked and it has sub information not listed on the client side it will send
a request to retrieve this information at the time the user clicks on it, this is especially convienent in systems that have enormous file structures.
Searching
None of my searches have any results!?
The searches are all regex powered, if you're looking for results, try this expression [a-z]+ that is saying "Match any sequence of characters that are between a and z and occur with one or more"
|
|
|
|
|