interface

Certified Associate Developer

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 ?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    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*/

    )
    }
    )

Reply
  • 0
    Certified Senior Developer

    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*/

    )
    }
    )

Children
No Data