- Posts: 30
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
isNumeric ist die einzige Funktion dieser Art in JQuery.Ich hatte anstatt isNumeric auch schon Double oder Float ausprobiert
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ // Ganze Zahl (hier maximal drei Stellen) $('#question{QID} .answer_cell_X003 input[type="text"]').mask("990", { placeholder: "___" }); // Kommazahl Zahl (hier maximal zwei Nachkommastellen, aber beliebig große Zahlen) $('#question{QID} .answer_cell_X004 input[type="text"]').mask("##0.00", { reverse: true, placeholder:"__.__" }); $('#question{QID} .answer_cell_X005 input[type="text"]').mask("##0.00", { reverse: true, placeholder:"__.__" }); }); </script>
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ $('#question{QID} .answer_cell_X003 input[type="text"]').inputmask({ 'mask': "9[9][9]", 'removeMaskOnSubmit': false, 'rightAlign': false, }); $('#question{QID} .answer_cell_X004 input[type="text"]').inputmask({ 'mask': "9[9][9].99", 'removeMaskOnSubmit': false, 'rightAlign': false, }); $('#question{QID} .answer_cell_X005 input[type="text"]').inputmask({ 'mask': "9[9][9].99", 'removeMaskOnSubmit': false, 'rightAlign': false, }); }); </script>
Please Log in to join the conversation.
Please Log in to join the conversation.
Ja, aber das machst Du doch sowieso.Oder hätte ich da noch unterscheiden können wo er das Ganze anwenden soll?
Please Log in to join the conversation.