Set value to textbox widget?

0
Hi, I trying to set a value to a textbox value with below syntax in a Javascript snippet but it will not store the value. mytextbox is the id/class for the textbox. Any ideas? this._contextObj.set(‘mytextbox’, value);
asked
1 answers
0

Hi Thomas,

Try this using jquery

$(‘.mytextbox  input‘).val(value); 

Thanks,

Sufian.

answered