Skip to main content
September 15, 2022
Question

interface

  • September 15, 2022
  • 3 replies
  • 0 views

I had created the add new vehicle interface as the assignment for the appain developer part but in the add new vehicle form when i entered my values the values are getting disappear how could i resolve this can isuue ?

    3 replies

    September 16, 2022

    please check the mapping. If it is standalone interface then check the mapping under each field components or if the form is used as UIT then check the mapping into process model as well.

    Inspiring
    September 16, 2022

    check your values are saving into rule inputs or not. You can verify this in saveInto parameter of your user input fields. 

    prafuls972
    September 16, 2022

    The solution to this problem is to check

    • The datatype of rule input is same as taken from UI
    • In saveInto are you saving it in the correct local variable or rule input.
    • In value did you correctly mapped the variable

    Hope this will help you to resolve the issue. You can try below code snippet

    a!localVariables(
    local!test,
    {
    a!textField(
    label: "test",
    value: local!test,/*value of this variable will be displayed*/
    saveInto: local!test/*user entered value will be stored in this variable*/

    )
    }
    )