Skip to main content
April 7, 2022
Question

getting default values for pickerFieldCustom

  • April 7, 2022
  • 6 replies
  • 0 views

Hello everyone

My requirement is when loading a page there should be a default values in pickerFieldCustom. And also should i have to change the values afterwords. Values for pickerFieldCustom will be a user values. Can anyone help me on this

    6 replies

    gopalk2865
    Participating Frequently
    April 7, 2022

    Hi, you can use local variables to provide value for your picker.configure your value field something like below,

    a!pickerFieldCustom(

    value: if(

    a!isNullOrEmpty (ri!your input),

    local!defaultvalue,

    ri!your input

    )

    April 11, 2022

    In this I am getting those values as default but I am not able to change those values afterwards. Can you help me with that

    gopalk2865
    Participating Frequently
    April 11, 2022

    Deselect the default value and then select new value. Configure your saveInto parameter to save newly selected value.