Skip to main content
November 30, 2021
Solved

How to transfer the localvalue of one interface to another interface?

  • November 30, 2021
  • 19 replies
  • 0 views

as title

    Best answer by gayathris111098

    /*parent Interface*/

    rule!childInterface(
    username:ri!username
    )


    /*child interface - Create a rule input with name username*/
    a!buttonWidget(
    /*your code*/
    saveInto:a!save(target:ri!username,value:"SAAAAM")
    )

    19 replies

    gayathris111098
    November 30, 2021

    You should consider changing the local variable to an interface variable. Local variables value can't be passed.


    November 30, 2021

    it would be best if you give a example