In Calendar Field I want the week start in sunday

As the docs say, you would set this early in the session (most likely one time, in the onOpen event of the solution)

function onOpen(arg,params){
    application.putClientProperty(APP_UI_PROPERTY.CALENDAR_NG_SHOW_ISO_WEEK_NUMBER, true)
}