Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
manipulation between main form and iframe
Re: manipulation between main form and iframe
joecocs,
I have added two functions to get access to Objects in an Iframe in the latest download.
nuGetIframeValue() https://wiki.nubuilder.cloud/ ... frameValue
and nuSetIframeValue() https://wiki.nubuilder.cloud/ ... frameValue
Steven
I have added two functions to get access to Objects in an Iframe in the latest download.
nuGetIframeValue() https://wiki.nubuilder.cloud/ ... frameValue
and nuSetIframeValue() https://wiki.nubuilder.cloud/ ... frameValue
Steven
-
- Posts: 67
- Joined: Wed Jul 04, 2018 4:11 pm
- Location: France
Re: manipulation between main form and iframe
Hello,
Thanks for your addons.
I tried to use the two functions that you added on Friday.
I updated the database by importing the nubuilder4.sql file, then I wanted to use the functions.
unfortunately I have the impression that nothing happens where I did not understand how to use them.
I sent an email with my base on the email that you sent me but I received an email which tells me that you did not receive it for refused connections.
I think I will have to abandon my project with nuBuilder and find another solution to do my follow-ups.
I will continue to learn JScript to try to progress but here I am blocking too quickly to be convinced.
thank you for all the help you gave me.
Thanks for your addons.
I tried to use the two functions that you added on Friday.
I updated the database by importing the nubuilder4.sql file, then I wanted to use the functions.
unfortunately I have the impression that nothing happens where I did not understand how to use them.
I sent an email with my base on the email that you sent me but I received an email which tells me that you did not receive it for refused connections.
I think I will have to abandon my project with nuBuilder and find another solution to do my follow-ups.
I will continue to learn JScript to try to progress but here I am blocking too quickly to be convinced.
thank you for all the help you gave me.
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 times
- Contact:
Re: manipulation between main form and iframe
Use this email address: (removed)
Last edited by kev1n on Mon Feb 17, 2020 12:59 pm, edited 1 time in total.
-
- Posts: 67
- Joined: Wed Jul 04, 2018 4:11 pm
- Location: France
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 times
- Contact:
-
- Posts: 67
- Joined: Wed Jul 04, 2018 4:11 pm
- Location: France
Re: manipulation between main form and iframe
Hi Kev1n,
have you had time to look at a solution to retrieve the value of a field from my Run :: iframe to a field in the main form ?
have you had time to look at a solution to retrieve the value of a field from my Run :: iframe to a field in the main form ?
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 times
- Contact:
Re: manipulation between main form and iframe
Hi,
Just another idea. How about setting a hash cookie and use that in your browse SQL?
Settings a hash cookie
// replace a_value with a field value (like primary key)
https://wiki.nubuilder.cloud/ ... etProperty
and in SQL where clause
Just another idea. How about setting a hash cookie and use that in your browse SQL?
Settings a hash cookie
Code: Select all
nuSetProperty('a_cookie','a_value');
https://wiki.nubuilder.cloud/ ... etProperty
and in SQL where clause
Code: Select all
WHERE your_field_id = '#a_cookie#'
-
- Posts: 67
- Joined: Wed Jul 04, 2018 4:11 pm
- Location: France
Re: manipulation between main form and iframe
I have already tried,
all the solutions that you indicate works if all the objects are in the same form.
I suggest the following test :
You have 3 tables - customers, projects, stakeholders
A main form with 3 tabs :
With
the Run :: iframe of the second tab must be filtered with the customer registration in edition.
the Run :: iframe of the third tab must be filtered with the project registration in edition.
when i write it sounds simple but i've been looking for 10 days ...
I want you to help me get there

all the solutions that you indicate works if all the objects are in the same form.

I suggest the following test :

You have 3 tables - customers, projects, stakeholders
A main form with 3 tabs :
- in the first tab the fields of the customer table
in the second tab a Run :: iframe with the fields of the projects table
in the third tab a Run :: iframe with the fields of the stakeholders table
With
the Run :: iframe of the second tab must be filtered with the customer registration in edition.
the Run :: iframe of the third tab must be filtered with the project registration in edition.
when i write it sounds simple but i've been looking for 10 days ...

I want you to help me get there

-
- Posts: 67
- Joined: Wed Jul 04, 2018 4:11 pm
- Location: France
Re: manipulation between main form and iframe
Hi,
finally I did differently and it works well.
just a few layout and color elements to manage ...
Thank you for the help
finally I did differently and it works well.
just a few layout and color elements to manage ...
Thank you for the help
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 times
- Contact:
Re: manipulation between main form and iframe
Perhaps you would like to explain briefly what you have changed?