Hi,
I have a slider control in a NetWebForm and want to display a value in another field based on the value in the slider control.
For now, I have a field named LOC:DispValue in the NetWebForm.
I have added the following code to the onchange event of the slider control.
'SetSessionValue(''LOC:DispValue'', this.value+''A'')'
The LOC:DispValue field will display 1A, 2A, 3A when the slider control is 1,2,3 respectively.
But, when the slider control is at 2, LOC:DispValue will still be showing 1A. It's always lagging by a number.
What am I doing wrong ?