64 lines
1.5 KiB
HTML
64 lines
1.5 KiB
HTML
<div id="rauheiten">
|
|
<div id="RHStartwerte">
|
|
<table>
|
|
<tr>
|
|
<td>Start:<input id="tbStartwert" class="wheelable" type="text" value="GW101020100"></td>
|
|
<td>Ende:<input id="tbEndwert" class="wheelable" type="text" value="GW101020100"></td>
|
|
<td><button class="mybtn" id="btnNew">erstellen</button></td>
|
|
<td><button class="mybtn" id="btnAdd">hinzufügen</button></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div id="RHInputs">
|
|
<table id="tblMesswerte">
|
|
|
|
</table>
|
|
</div>
|
|
<div id="RHbtns">
|
|
</div>
|
|
</div>
|
|
<div id="help">
|
|
<table id="tblHelp">
|
|
<tr><td class="right">Shift:</td><td class="left">Tool</td></tr>
|
|
<tr><td class="right">Strg:</td><td class="left">Revision</td></tr>
|
|
<tr><td class="right">beide:</td><td class="left">Typ</td></tr>
|
|
<tr><td class="right">keine:</td><td class="left">BauteilNr</td></tr>
|
|
</table>
|
|
<!--div id="btnCloseHelp"><</div-->
|
|
</div>
|
|
|
|
<!--
|
|
|
|
$('body').off("mousedown", "#btnCloseHelp");
|
|
$('body').off("mouseup", "#btnCloseHelp");
|
|
|
|
$("body").on("mousedown", "#btnCloseHelp", function(e) {
|
|
|
|
|
|
$("#btnCloseHelp").attr("style","box-shadow: 1px 1px 2px black");
|
|
console.log("click");
|
|
return false;
|
|
|
|
});
|
|
|
|
$("body").on("mouseup", "#btnCloseHelp", function(e) {
|
|
$("#btnCloseHelp").attr("style","box-shadow: 2px 2px 1px black");
|
|
console.log("clack");
|
|
return false;
|
|
|
|
|
|
});
|
|
var tglState = 0;
|
|
|
|
function toggleHelp() {
|
|
|
|
if ( tglState === 0 ){
|
|
$("#btnCloseHelp").attr("style","height: 55px");
|
|
tglState = 1;
|
|
} else {
|
|
$("#btnCloseHelp").attr("style","height: 55px");
|
|
tglState = 0;
|
|
}
|
|
}
|
|
|
|
--> |