Binding text of one window to another window

Didnt you already get this working for the confirm popup.
You gotta bassicly do the same here.

What little code you provided seems to be fine

1 Like

image
params???

1 Like

yeah, I corrected the mistake, i am so sorry :sweat_smile:
now, its working
Thanks once again

I have checked “page” in scope but still not reflecting data on table component

put a print script in the binding that gets refrshed (table.props.data) to see if it prints when you press the button
Also put one in the message handler

1 Like

I will try later and confirm back as currently facing an issue in the backend. Thanks a lot :slight_smile:

now it’s working fine, thank u so much :heart_eyes:

1 Like

nice:D

Hi @victordcq my project is working on ignition designer as expected but the browser is not responsive
this is o/p in console:

and in browser respective popups are not opening, without entering source and destination is giving this below popup
the below script is working fine on designer

elif vSourceAutoId is not None and vDestinationAutoId is not None and vSourceAutoId==vDestinationAutoId:
				system.perspective.print("Source and Destination Locations cannot be same")
				system.perspective.openPopup("Message",'Message', title="Error Message!", modal="True", backgroundDismissible="True", showCloseIcon = "False",draggable = "False", params = {'message':'Source & Destination Locations cannot be same.', 'height':100, 'width':400})

I have created params for the popup and passed them
Plz help if could solve my problm

im not sure what is not working?

you can use position={'height':100, 'width':400} to deterimne the size of the popup

1 Like

Ok, thank u :slightly_smiling_face: :blush: