Hello Kolmar, I think that what you want to do is reasonably within what exhibit offers. You mention using access in your post below. From what I read of your requirements, I would suggest that you take that approach... Use a database to store your information, use exhibit to display and filter it. The links to pages about teachers, projects, students are certainly doable, though I personally have found it to be better to open those pages in a separate window or tab so one does not lose their place in the exhibit from which the link originated.
I use sqlite3 for my database, perl for accessing the database, generating JSON and streaming the data to exhibit, and finally exhibit to display to the user such that the user can filter as required. Usually, I end up starting with a form to limit the amount of data that the exhibit will have to deal with if there is a lot of data. Exhibit 3 is fine, but I have mostly been using the old 2.x stuff because there are more useful extensions available for basic graphing, and also a few more filtering mechanisms which are not available in Exhibit 3. There is a simple example of the results of how I use Exhibit 2.x to track my farm operation here -> Commodity Deliveries (Exhibit 2.x)<http://wjwieland.dvrdns.org/cb_tracker/ad_tracker.html> and an example of Exhibit 3 tracking break-in attempts on my server here -> Really Stupid Break-in Attempts (Exhibit 3)<http://wjwieland.dvrdns.org/cb_tracker/breakins_3.html> as compared to an Exhibit 2.x version here -> Really Stupid Break-in Attempts (Exhibit 2.x)<http://http%3B%3B//wjwieland.dvrdns.org/cb_tracker/breakins.html> Note: the difference in available filters. The back-end code is the same between the two breakin exhibits... On previous projects(for which I don't have examples) I did supply links to "drill-down" data/pages like your are referring to. I worked very well! Hope you find this encouraging if not helpful.... Good luck with what you are doing! On Thursday, December 12, 2013 7:57:16 AM UTC-6, Kolmar Kafran wrote: > > Is it possible to have a page like layout with Exhibit? Some thing like > http://migadv.com/ > For example, > https://dl.dropboxusercontent.com/u/12845688/exhibit/dppe.html > instead of having collapse panels I would like to go to an other page to > show the item data. > > Att. > On Thursday, December 12, 2013 3:06:03 PM UTC-6, Kolmar Kafran wrote: > > Thank you very much for you answer Ted. > > They did a nice job at DGS, but this is not what I have in mind. > > My problem is: > > We have a programmer in the firm I work, but he have a lot of things to do > right now and can't look to my needs. > > I work in a federal public educational institution. I work on research and > extension department. I want to organize our physical files and structure > this data virtually to help me to search and filter data. I want to save > this data in a way that our programmer can use in the future when he start > to make our software, this is where Exhibit comes, since I'm not a > programmer I though Exhibit easy to use, with limitations of course. > > In an Exhibit structure my data is organized like this: > > I have items of 3 types: projects, advisor (teachers) and students. Each > of them with its own information (date of begin, date of end, phone, > address, name, contact, etc). > > Each advisor can have more then one project. Each project can have more > then one student: > > Teacher and its informations > has projects (with its own information) > > has students with its own data. > > So I would like to list all teachers and filter it. Or search a student. > When I click on a teacher name I would like to be taken to a page with the > teacher information, If I click on a project with that teacher I would like > to go to an other page with the project information. If I click on a > student name I go to an other page with the student information. I'm trying > to do this with some sort of CSS transition but no success =(. > > I don't know if exhibit is the right tool to do this. I'm thinking to use > MS Access but I really liked the way exhibit filter and search data. > > Att. > > Em quinta-feira, 12 de dezembro de 2013 11h13min26s UTC-3, Ted Benson > escreveu: >> >> Hi Kolmar, >> >> Yes, you can. This example at the Delaware Geological Survey shows how to >> do it: http://www.dgs.udel.edu/publications >> >> Here is the definition they used for their TabularView. Note the >> following properties: >> >> - "paginate" turns on pagination >> - "pageSize" controls how big each page will be >> - "page" contains the default page, I think >> - "pageWindow" ... well, I'm not sure what this does >> >> Hope this helps! >> >> <div ex:role="exhibit-view" >> ex:viewClass="Exhibit.TabularView" >> ex:columns=".title, .field_authors_value, .field_date_value" >> ex:columnLabels="Title, Authors, Date Published" >> ex:columnFormats="text, list, date { template: 'MMM yyyy' }" >> ex:sortColumn="2" >> ex:sortAscending="false" >> ex:cellSpacing="0" >> ex:cellPadding="0" >> ex:border="0" >> ex:paginate = "true" >> ex:pageSize = "15" >> ex:page = "0" >> ex:pageWindow = "99" >> ex:alwaysShowPagingControls="true" >> ex:pagingControlLocations="bottom" >> ex:showToolbox="false"> >> </div> >> >> >> >> >> On Thu, Dec 12, 2013 at 8:57 AM, Kolmar Kafran <[email protected]> wrote: >> >>> Is it possible to have a page like layout with Exhibit? Some thing like >>> http://migadv.com/ >>> For example, >>> https://dl.dropboxusercontent.com/u/12845688/exhibit/dppe.html >>> instead of having collapse panels I would like to go to an other page to >>> show the item data. >>> >>> Att. >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "SIMILE Widgets" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> To post to this group, send email to [email protected]. >>> Visit this group at http://groups.google.com/group/simile-widgets. >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >> >> >> >> -- >> :: Ted Benson >> :: http://people.csail.mit.edu/eob/ >> :: @edwardbenson >> > -- You received this message because you are subscribed to the Google Groups "SIMILE Widgets" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/simile-widgets. For more options, visit https://groups.google.com/groups/opt_out.
