Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created July 6, 2010 12:51
Show Gist options
  • Save Eugeny/465343 to your computer and use it in GitHub Desktop.
Save Eugeny/465343 to your computer and use it in GitHub Desktop.
<py:match path="fmpanel">
<label text="${select('@free')}"/>
<spacer height="10"/>
<scrollcontainer height="500" width="450">
<table cellpadding="0" cellspacing="0" class="ui-el-table" style="border:none" width="450px">
<datatablerow header="True">
<datatablecell />
<datatablecell width="100px"><label text="Name"/></datatablecell>
<datatablecell width="60px"><label text="Size"/></datatablecell>
<datatablecell width="100px"><label text="Access"/></datatablecell>
<datatablecell width="80px"><label text="Owner"/></datatablecell>
<datatablecell />
</datatablerow>
${select('node()')}
<datatablerow>
<td/><td/><td/><td/><td/><td/>
</datatablerow>
</table>
</scrollcontainer>
<spacer height="10"/>
<hcontainer>
<hnode><minibutton text="Upload"/></hnode>
<hnode><minibutton text="New file"/></hnode>
<hnode><minibutton text="New folder"/></hnode>
<hnode><minibutton text="Move"/></hnode>
<hnode><minibutton text="Copy"/></hnode>
<hnode><minibutton text="Delete"/></hnode>
</hcontainer>
</py:match>
<py:match path="fmpanelrow">
<datatablerow>
<datatablecell><checkbox /></datatablecell>
<datatablecell><label text="${select('@name')}"/></datatablecell>
<datatablecell><label text="${select('@size')}"/></datatablecell>
<datatablecell><span style="font-family: monospace">${select('@access')}</span></datatablecell>
<datatablecell><label text="${select('@owner')}"/></datatablecell>
<datatablecell><label /></datatablecell>
</datatablerow>
</py:match>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment