mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
31 lines
533 B
Smarty
31 lines
533 B
Smarty
<div id="tabs">
|
|
<ul>
|
|
<li><a href="#tabs-1"></a></li>
|
|
</ul>
|
|
<div id="tabs-1">
|
|
[MESSAGE]
|
|
<form method="post" action="#">
|
|
[TAB1]
|
|
|
|
<center>
|
|
<input type="checkbox" id="auswahlalle" onchange="alleauswaehlen();" /> alle markieren
|
|
<input type="submit" value="Download als ZIP" name="download">
|
|
|
|
[SAVELOCALFOLDER]
|
|
</center>
|
|
|
|
|
|
</form>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<script>
|
|
function alleauswaehlen()
|
|
{
|
|
var wert = $('#auswahlalle').prop('checked');
|
|
$('#transus_rechnungen').find(':checkbox').prop('checked',wert);
|
|
}
|
|
</script>
|