Not directly that I know of; exhibit assumes you have one row per item
and one column per property.  If you really need to hack it, you could
invert your data model, e.g. instead of making
{items: [
   {label: "xyz",
     manufacturer: "onkyo",
     patterns: "red"},
   {label: "abc",
    manufacturer: "nad",
    patterns: "blue"
}

you could make

{items: [
    {label: "manufacturer"
      xyz: "onkyo",
     abc: "nad"},
    {label: "patterns",
      xyz: "red",
      abc: "blue"}
}
ie, you are fooling exhibit into thinking of your items as properties
and your properties as items.  However, this would make a mess if you
plan to use any facets---now you can use facets to decide which
properties to display, but not which items.

On 3/19/2010 6:34 PM, Chad C wrote:
> I am sure there is a way to do this but I cannot figure it out with my
> limited knowledge of Exhibit:
>
> I am using a tabular view to show all of the information in my database but
> the default formatting of the view is backwards from what I need to use.  I
> currently have this in my HTML:
>
> <div ex:role="view" ex:viewClass="Tabular"
>   ex:columns=".label, .manufacturer, .pocketdesktop, .patterns, .formats,
> .bestformat, .micplacement, .speaker, .inputs, .phantom, .usb, .tuner,
> .metronome, .memorysize, .maxmemory, .windscreen, .batteries,
> .externalpower, .plugplay, .backlight, .pitchcontrol, .playbackspeed,
> .accessories">
>   </div>
>
> As formatted this displays with the .label on the left side of the screen
> and the other columns running from left to right next to it.  I need the
> thing to be transposed with the .label on the top of the screen and the
> other information below it scrolling down the page.  It is supposed to be a
> comparison chart of digital audio recorders with each column of the table
> representing the data for one individual model.
>
> Is there a way to make Exhibit format it like this?
>
> Sincerely,
> Chad Criswell
>
>   

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.

Reply via email to