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.
Prices in table
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
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
-
-
- Posts: 117
- Joined: Sat Apr 25, 2020 5:17 pm
- Contact:
Re: Prices in table
Maybe this will be helpful?
https://www.wysiwygwebbuilder.com/tables.html
https://www.wysiwygwebbuilder.com/tables.html
-
-
- Posts: 117
- Joined: Sat Apr 25, 2020 5:17 pm
- Contact:
Re: Prices in table
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
That is, in a text box, take the value from another place.
Tnk's
Re: Prices in table
No, that is not possible with standard HTML tools. This requires scripting.
-
-
- Posts: 117
- Joined: Sat Apr 25, 2020 5:17 pm
- Contact:
Re: Prices in table
ok, tnk's
- BaconFries
-
- Posts: 5874
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Prices in table
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
Destination Page:
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.
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>
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>
-
-
- Posts: 117
- Joined: Sat Apr 25, 2020 5:17 pm
- Contact:
Re: Prices in table
oh thanks, I check and comment, thanks