Prices in table

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
Joan Ferrer
 
 
Posts: 117
Joined: Sat Apr 25, 2020 5:17 pm
Contact:

Prices in table

Post by Joan Ferrer »

Hello
In a project, I want to put prices in a table (for example)
Each price in a box, in the table, put it in different places in the project. Is this possible, any examples?

Thanks.
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Prices in table

Post by Pablo »

Joan Ferrer
 
 
Posts: 117
Joined: Sat Apr 25, 2020 5:17 pm
Contact:

Re: Prices in table

Post by Joan Ferrer »

Is it possible to use table prices in different text fields, in different parts of the project?
That is, in a text box, take the value from another place.
Tnk's
User avatar
Pablo
 
Posts: 23239
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Prices in table

Post by Pablo »

No, that is not possible with standard HTML tools. This requires scripting.
Joan Ferrer
 
 
Posts: 117
Joined: Sat Apr 25, 2020 5:17 pm
Contact:

Re: Prices in table

Post by Joan Ferrer »

ok, tnk's
User avatar
BaconFries
 
 
Posts: 5873
Joined: Thu Aug 16, 2007 7:32 pm

Re: Prices in table

Post by BaconFries »

As Pablos reply it would require scripting! (custom). I used the following in bold in Copiolet AI
How do I pass the HTML table value to another HTML page’s text box display?
and it returned the following:
Source: Page with Table

Code: Select all

<table id="data-table">
        <tr>
            <td id="cell-value">Sample Value</td>
        </tr>
    </table>
    <button onclick="passValue()">Pass Value</button>
<script>
        function passValue() {
            // Get the value from the table cell
            const value = document.getElementById('cell-value').innerText;
             // Redirect to the destination page with the value as a query parameter
            window.location.href = 'destination.html?value=' + encodeURIComponent(value);
        }
</script>
Destination Page:

Code: Select all

<input type="text" id="textbox" />
<script>
        function getQueryParameter(name) {
            const urlParams = new URLSearchParams(window.location.search);
            return urlParams.get(name);
        }

        // Get the value from the query parameter
        const value = getQueryParameter('value');
        
        // Set the value in the text box
        document.getElementById('textbox').value = value;
    </script>
Note all of the above is for reference example only the code in WWB will be different. It only contains the code for the table, the javascript and input (text box) all other page html is removed. You could use the query above in any AI you use and see the results you could then implement.
Joan Ferrer
 
 
Posts: 117
Joined: Sat Apr 25, 2020 5:17 pm
Contact:

Re: Prices in table

Post by Joan Ferrer »

oh thanks, I check and comment, thanks
Post Reply