source: extensions/AMetaData/admin/amd_metadata_display_groupListTagSelect.tpl @ 4905

Last change on this file since 4905 was 4905, checked in by grum, 14 years ago

Commit a first release of the plugin for piwigo using the JpegMetaData classe

  • Property svn:executable set to *
File size: 535 bytes
Line 
1{literal}
2<script type="text/javascript">
3  function switchState(tagId)
4  {
5    $("#"+tagId).get(0).checked=!$("#"+tagId).get(0).checked;
6  }
7</script>
8{/literal}
9
10
11<table class="littlefont listTags" style="width:100%;">
12  {foreach from=$datas key=name item=data}
13  <tr>
14    <td width="30px"><input type="checkbox" id="iTagId{$data.numId}" {$data.state}></td>
15    <td onclick="switchState('iTagId{$data.numId}');">{$data.tagId}</td>
16    <td onclick="switchState('iTagId{$data.numId}');">{$data.name}</td>
17  </tr>
18  {/foreach}
19</table>
Note: See TracBrowser for help on using the repository browser.