We have 5 checkbox for weekdays and a checkbox for...
# suitescript
a
We have 5 checkbox for weekdays and a checkbox for the whole week: We have fieldchanged entry point for all boxes, when we tick the whole week it will tick those 5 weekday. The issue is it will run the fieldchanged for those 5 days as well, but I want to call the fieldchanged for those fields just when one of the days has been selected buy user not through whole week fieldchanged function. Any suggestions?
e
setValue()
has
ignoreFieldChanged
option you can set
so in your click handler for the whole week, use that option in the 5
setValue()
calls
a
Many thanks