Galdiator
Galdiator

Reputation: 117

Values of Dropdown in sublist

I am coding an user-event script. I wanted to know : How can I get all the values in a dropdown field of a sublist in suitescript.

Thanks

Upvotes: 0

Views: 917

Answers (1)

playalpha
playalpha

Reputation: 131

var options = objField.getSelectOptions({
    filter : 'C',
    operator : 'startswith'
});

NETSUITE_DOMAIN/app/help/helpcenter.nl?fid=section_4435756013.html

Upvotes: 2

Related Questions