Is it possible to record the strokes made by the users? The movement on x and y co-ordinates I mean.
Hum...
You mean, using the Signature component? As it is, no, it isn't.
Cheers,Eduardo Jauch
Hi Saurav,
To get the strokes, you need to modify the Component:
$('#' + this.textbox).val(this.signObj.jSignature('getData'));
change it to
$('#' + this.textbox).val(this.signObj.jSignature("getData", "svgbase64"))
Disclaimer:
I have not tried it. I'm basing the above information on the documentation for the jSignature jQuery plugin:
https://willowsystems.github.io/jSignature/#/about/
You can also get other type of data besides the bitmap or the svgbase64 (see the above link).
Cheers,
José