I've created several displays for my View.
I thought that I could assign different styles (Gallery, Table, etc) of the view for each display but I realized that only 1 Style is used for all Displays.
The reason I wanted to change is because I'm using DraggableViews, and I would like to keep the same order for all displays, when the user drag some items on the display with draggable nodes.
THanks
They can.
See http://drupal.org/node/352970
The idea is to use specific names for template files, also called template-suggestions. Some examples are:
If you want more template suggestions, check out the Theme Developer. that resembles somewhat the Firebug, but allows searching for all kinds of template suggestions and theme-function naming documentation; you click on an item in your page and it shows you what names and files to use to override.
http://drupal.org/node/209561
You mentioned a list (unformatted) and a table. You will theme that, using the following files:
views-view--list.tpl.php
(overrides all lists by any view)views-view--table.tpl.php
(overrides all tables by any view)views-view--YourViewName-table.tpl.php
overrides the table view for that view.