Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
260
WebNumericEditor client Side
posted

Hi,
Version 11.1, IE9,
I want to raise / decrease the value of the editor on clicking the buttons of the WebNumericEditor with
5 (int).
So:

 

 

 

 

 

 

 

<

 

 

ig:WebNumericEditor ID="WnDstartM" runat="server" DataMode="Int" MaxDecimalPlaces="0" StyleSetName="RubberBlack" Width="40px" MaxValue="55"  MinValue="0"
ClientEvents-KeyUp="RaiseFive">
<Buttons SpinButtonsDisplay ="OnRight"></Buttons>
</ig:WebNumericEditor

>
and a smal script:
<script id="igClientScript" type="text/javascript">
<!--
function RaiseFive() { var editor = igedit_getById("WnDstartM");
var Waarde = editor.getValue() + 5;
editor.ValueInt = Waarde;}
// -->
</script>
but no response? Perhaps wrong way to SET the value???

Friendly greeting,

 


 

 

 

Parents Reply Children
No Data