Trying to get access to text that is entered into ...
# suitescript
d
Trying to get access to text that is entered into this text box. i.e if I entered 12/8/1988 in the box how would I access that info in the script? This is the code being used to create the box: var midRow = form.addField({ id: 'midrow', type: serverWidget.FieldType.TEXT, label: 'DATE OF BIRTH' });
b
depends on when you are trying to get it
there are different methods depending on if you are trying to get in clientside in the browser or serverside in the suitelet after clicking a submit button
d
I am trying to do the latter
b