1)There should be a size for the boxes like ID or Year only in the edit mode.
I suppose that might make things easier, but it's currently controlled using the
width attribute. For example, the following code displays three short fields in one row (see attached screenshot)...
<row>
<column>
<label permanent="true" width="132" halign="right">
<caption>Type:</caption>
</label>
<spacer width="7"/>
<custom width="175" field="Work type"/> //Width of "Type" set to 175
</column>
<column>
<label width="75" halign="right">
<caption>Film:</caption>
</label>
<spacer width="7"/>
<custom field="Color type"/> //"Color type" fills available space between "Type" and "Year"
</column>
<column width="75" halign="right">
<fieldlabel field="year"/>
</column>
<column width="100"> //Width of "Year" set to 100
<year/>
</column>
</row>
2)When i have to add manually a new movie i don't have references where write the title.
Good idea! But just for the fun of it, here's a workaround...
<row>
<column>
<label permanent="false">
<caption>Title:</caption>
</label>
<spacer width="450"/>
<custom field=".dummy" width="1"/>
</column>
</row>
".dummy" is an actual custom field used only for the purpose of creating captions in skins. Because there is no data in the field and the
permanent attribute is set to "false," it shows only in edit mode. I've placed this above the fields that otherwise have no captions.
[attachment deleted by admin]