Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!

The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.

interface

Certified Senior 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