Correct, disabling will be the same as if the editboxes weren't there in the first place, so won't be included in the email or autoresponder.
Make sure you account for every case.
E.g. if the user fills in 4, then changes their mind and clicks 2, you have to disable 3 and 4.
Then of course if the ...
Search found 756 matches
- Fri Oct 12, 2018 9:35 pm
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
- Fri Oct 12, 2018 10:56 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Ah, you mean the list of IDs not just the contents.
You will need the following:
document.getElementById('indexEditbox1').disabled = true;
But then there's the problem if the user changes their mind - so you'll have to enable them when they click another button!
e.g. document.getElementById ...
You will need the following:
document.getElementById('indexEditbox1').disabled = true;
But then there's the problem if the user changes their mind - so you'll have to enable them when they click another button!
e.g. document.getElementById ...
- Fri Oct 12, 2018 8:05 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Isn't this the same issue I mentioned in a previous post?
" It's just occurred to me that when you click e.g. 2 after clicking 3 (and filling in 3) then although the editbox will be hidden the entry for 3 will still be sent in the email so I've added a bit of Javascript (in Page HTML) to clear the ...
" It's just occurred to me that when you click e.g. 2 after clicking 3 (and filling in 3) then although the editbox will be hidden the entry for 3 will still be sent in the email so I've added a bit of Javascript (in Page HTML) to clear the ...
- Wed Oct 10, 2018 10:16 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Looks good, well done.
- Fri Oct 05, 2018 9:44 am
- Forum: Off Topic Section
- Topic: pageflip jquery
- Replies: 4
- Views: 2643
Re: pageflip jquery
Thanks BaconFries.
- Fri Oct 05, 2018 7:37 am
- Forum: Off Topic Section
- Topic: pageflip jquery
- Replies: 4
- Views: 2643
Re: pageflip jquery
You could try to create your own Ready-To-Use JavaScript with the free extra JScriptEdit:
http://www.wysiwygwebbuilder.com/free_extras.html
@BaconFries, I don't know much about JQuery, is it not possible to use JQuery in JScriptEdit?
http://www.wysiwygwebbuilder.com/free_extras.html
@BaconFries, I don't know much about JQuery, is it not possible to use JQuery in JScriptEdit?
- Tue Oct 02, 2018 10:20 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
New update WWB 14.2 released:
"It is now possible to use multiple (form) conditions with the same value for "equal to (choice)/not equal to (choice)", so you can trigger different actions for the same value."
"It is now possible to use multiple (form) conditions with the same value for "equal to (choice)/not equal to (choice)", so you can trigger different actions for the same value."
- Mon Oct 01, 2018 7:47 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
I guess you've seen Pablo's reply here:
viewtopic.php?f=5&t=82640&sid=78c960302 ... e9d75bf6ba
FWIW: I've updated my test project to reflect this.
viewtopic.php?f=5&t=82640&sid=78c960302 ... e9d75bf6ba
FWIW: I've updated my test project to reflect this.
- Sun Sep 30, 2018 1:14 pm
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
I've just tested it with a Layout Grid form and it seems to work.
- Sun Sep 30, 2018 12:54 pm
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Does it work as a standard form instead of a layout grid form?
If so then I have no idea what the problem is.
Have you double checked all the id names in the events etc.?
If so then I have no idea what the problem is.
Have you double checked all the id names in the events etc.?
- Sun Sep 30, 2018 12:11 pm
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Did you set the onclick event to Show?
See my test project.
See my test project.
- Sun Sep 30, 2018 11:52 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
In the Object Manager untick Visible.
- Sun Sep 30, 2018 10:07 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
As you probably gathered I'm not a Javascript expert!!
If the user is selecting one item then try:
Combobox1.selectedIndex = 0;
If the user is selecting one item then try:
Combobox1.selectedIndex = 0;
- Sun Sep 30, 2018 9:44 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Try:
Combobox1.reset();
Combobox1.reset();
- Sun Sep 30, 2018 8:53 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Try:
document.getElementById('Combobox1').options.length = 0;
or just:
Combobox1.options.length = 0;
document.getElementById('Combobox1').options.length = 0;
or just:
Combobox1.options.length = 0;
- Sat Sep 29, 2018 10:40 pm
- Forum: Off Topic Section
- Topic: How to use typed.js in WebBuilder
- Replies: 4
- Views: 2618
Re: How to use typed.js in WebBuilder
Maybe you can create your own by amending one of the existing scripts using the Ready-to-use Javascript Utility.
https://www.wysiwygwebbuilder.com/free_extras.html
https://www.wysiwygwebbuilder.com/free_extras.html
- Sat Sep 29, 2018 9:45 pm
- Forum: Off Topic Section
- Topic: How to use typed.js in WebBuilder
- Replies: 4
- Views: 2618
Re: How to use typed.js in WebBuilder
There is Typewriter and Typewriter Deluxe in Insert > Miscellaneous > Ready-to-use Javascripts.
If that's what you mean.
If that's what you mean.
- Fri Sep 28, 2018 7:49 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
I think you can uncheck a box with e.g. nameofRadioButton.checked = false;
- Thu Sep 27, 2018 12:24 pm
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Sorry but it works for me.
Can you share your .wbs file to see if I can spot any problem?
Can you share your .wbs file to see if I can spot any problem?
- Thu Sep 27, 2018 11:52 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
In a previous post I mentioned this.
Did you download the new version?
Did you download the new version?
- Thu Sep 27, 2018 9:43 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
My test version does work. What are you seeing that doesn't work?
You'll find the clearboxn(); routines in Page HTML under Before </body>.
They simply clear the relevant editbox.
Just replace my editbox names e.g. indexEditbox1 with yours e.g. camper1name
You'll find the clearboxn(); routines in Page HTML under Before </body>.
They simply clear the relevant editbox.
Just replace my editbox names e.g. indexEditbox1 with yours e.g. camper1name
- Wed Sep 19, 2018 10:05 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Did you test the scenario I mentioned in my previous post?
I.e. the user fills in e.g. 5 boxes and then changes their mind and changes to e.g. 3 boxes.
Were boxes 4 and 5 excluded in the email?
Not yet tested yours. However my desired design is still combo box.
I didn't mean test mine. Did ...
- Wed Sep 19, 2018 8:36 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
Did you test the scenario I mentioned in my previous post?
I.e. the user fills in e.g. 5 boxes and then changes their mind and changes to e.g. 3 boxes.
Were boxes 4 and 5 excluded in the email?
I.e. the user fills in e.g. 5 boxes and then changes their mind and changes to e.g. 3 boxes.
Were boxes 4 and 5 excluded in the email?
- Tue Sep 18, 2018 9:03 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
It's just occurred to me that when you click e.g. 2 after clicking 3 (and filling in 3) then although the editbox will be hidden the entry for 3 will still be sent in the email so I've added a bit of Javascript (in Page HTML) to clear the relevant boxes.
So I would download the project again to get ...
So I would download the project again to get ...
- Tue Sep 18, 2018 7:41 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
As Pablo says you can only have one action per choice in a Combobox, but in the next update (planned for later this year) you will be able to use multiple conditions with the same value.
Have you downloaded my test project? It uses Radio Buttons and seems to do what you want.
http://www.mediafire ...
Have you downloaded my test project? It uses Radio Buttons and seems to do what you want.
http://www.mediafire ...
- Mon Sep 17, 2018 12:23 pm
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
It works with Radio Buttons but not (currently) for Comboboxes.
E.g. http://www.mediafire.com/file/as7v9n29p ... s.wbs/file
@petejos, are you using Radio Buttons or Comboboxes?
E.g. http://www.mediafire.com/file/as7v9n29p ... s.wbs/file
@petejos, are you using Radio Buttons or Comboboxes?
- Mon Sep 17, 2018 11:46 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
If you want the user to be able to click e.g. 3 after they have already clicked 4 then you will have to add events to Hide option editbox4 e.g.
BTW I'm not sure what the difference is between "Equal to" and "Equal to (choice)" but I don't think it's relevant here anyway.
BTW I'm not sure what the difference is between "Equal to" and "Equal to (choice)" but I don't think it's relevant here anyway.
- Mon Sep 17, 2018 11:23 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
On the 3 event did you hide editbox4?
- Mon Sep 17, 2018 10:51 am
- Forum: Forms
- Topic: Combobox Condition
- Replies: 93
- Views: 57667
Re: Combobox Condition
If you've only got a few options e.g. 3, you could use a list of Radio Buttons and for each one use Events > Add > onclick > show > target editbox(es).
E.g. Radio Button 3 would have 3 show events - Editbox1, Editbox2 and Editbox3
You might want a 0 Radio Button to clear all 3 editboxes by using 3 ...
E.g. Radio Button 3 would have 3 show events - Editbox1, Editbox2 and Editbox3
You might want a 0 Radio Button to clear all 3 editboxes by using 3 ...
- Tue Sep 04, 2018 11:20 am
- Forum: Off Topic Section
- Topic: Xamp Php extension.***SOLVED***
- Replies: 8
- Views: 5650
Re: Xamp Php extension.
You should be publishing to C:\xampp\htdocs or a folder within C:\xampp\htdocs
Pointing your browser to http://localhost or a folder e.g. http://localhost/test1
I.e. assuming your homepage is index.html or index.php
Pointing your browser to http://localhost or a folder e.g. http://localhost/test1
I.e. assuming your homepage is index.html or index.php
- Sun Aug 26, 2018 10:53 am
- Forum: Off Topic Section
- Topic: Login dialog on local machine
- Replies: 3
- Views: 10815
Re: Login dialog on local machine
Are you using a MySQL database?
Is it set up the same as the 'live' one?
I guess the error may be a PHP notice error and the PHP error level in Xampp is more severe than your host's level.
Try temporarily turning off error reporting by using:
<?php
error_reporting(0);
?>
and see what happens.
Is it set up the same as the 'live' one?
I guess the error may be a PHP notice error and the PHP error level in Xampp is more severe than your host's level.
Try temporarily turning off error reporting by using:
<?php
error_reporting(0);
?>
and see what happens.
- Sun Aug 26, 2018 9:10 am
- Forum: Off Topic Section
- Topic: Login dialog on local machine
- Replies: 3
- Views: 10815
Re: Login dialog on local machine
What url are you using?
I've just tried it and it works on my test login project using: localhost/test1/index.php
index.php being the equivalent to your login.php
I've just tried it and it works on my test login project using: localhost/test1/index.php
index.php being the equivalent to your login.php
- Wed Aug 15, 2018 9:38 pm
- Forum: Off Topic Section
- Topic: The word of the day is...
- Replies: 9
- Views: 5357
- Tue Aug 07, 2018 7:41 am
- Forum: Login Tools Questions
- Topic: User Name and Password questions
- Replies: 6
- Views: 16071
Re: User Name and Password questions
@jeff11214, just in case you missed it - I don't think an email address will be accepted as a username because it will reject the full-stops (periods).
Unless of course you edit the code.
Unless of course you edit the code.
- Wed Jul 25, 2018 9:33 pm
- Forum: Off Topic Section
- Topic: The word of the day is...
- Replies: 9
- Views: 5357
Re: The word of the day is...
Various IT definitions e.g.
https://www.techopedia.com/definition/26857/instantiate
and other non-IT meanings:
https://www.thefreedictionary.com/instantiate
https://www.techopedia.com/definition/26857/instantiate
and other non-IT meanings:
https://www.thefreedictionary.com/instantiate
- Tue Jul 24, 2018 5:42 pm
- Forum: Off Topic Section
- Topic: Apps for Scheduling - I know this isn't WB
- Replies: 6
- Views: 3282
Re: Apps for Scheduling - I know this isn't WB
Have you googled for scheduling apps?
For example: https://www.capterra.com/sem-compare/sc ... lsrc=aw.ds
For example: https://www.capterra.com/sem-compare/sc ... lsrc=aw.ds
- Sun Jul 08, 2018 7:46 am
- Forum: General Questions
- Topic: Page view position while working
- Replies: 9
- Views: 9253
Re: Page view position while working
I also like to see the full page without having to scroll left or right.
Have you tried the Auto-hide option?
Have you tried the Auto-hide option?
- Sat Jun 30, 2018 5:40 pm
- Forum: Off Topic Section
- Topic: Is there a way to A/B split test pages?
- Replies: 7
- Views: 8030
Re: Is there a way to A/B split test pages?
Out of curiosity, what criteria determines what user 1 sees and what user 2 sees?Rebel Studio wrote: Sat Jun 30, 2018 3:59 pm ... So lets say I got 2 landing pages that it will show about 50/50 of the times to user. So user 1 sees page A but user 2 will see page B
- Wed Jun 27, 2018 5:30 pm
- Forum: Off Topic Section
- Topic: How to remove brackets from text scroller
- Replies: 13
- Views: 15796
Re: How to remove brackets from text scroller
What is the full line after your edit?mayur007 wrote: Wed Jun 27, 2018 5:26 pm I just removed brackets from ' ' + text ' '
After removing still the same i guess i have to use floating layer for this layoutgrid is not suitable for this and thanx for the code
- Wed Jun 27, 2018 5:21 pm
- Forum: Off Topic Section
- Topic: How to remove brackets from text scroller
- Replies: 13
- Views: 15796
Re: How to remove brackets from text scroller
Did you change the line:
to:
Code: Select all
text_scroller.innerText = '[' + text.substring(0, pos) + ']';
Code: Select all
text_scroller.innerText = text.substring(0, pos);
- Sun Jun 17, 2018 2:56 pm
- Forum: Off Topic Section
- Topic: Patience...Patience
- Replies: 4
- Views: 10457
Re: Patience...Patience
Hear hear.
- Thu May 31, 2018 9:42 am
- Forum: Off Topic Section
- Topic: Using SESSION variable in a Javascript
- Replies: 14
- Views: 33627
Re: Using SESSION variable in a Javascript
I have replicated exactly your code:
<?php
session_start();
$str = "f=6&t=3&e=1&view=unread#unread";
$_SESSION['params'] = $str;
?><!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Page</title>
<link href="index.css" rel="stylesheet">
<script>
window.onload = function()
{
var ...
<?php
session_start();
$str = "f=6&t=3&e=1&view=unread#unread";
$_SESSION['params'] = $str;
?><!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Page</title>
<link href="index.css" rel="stylesheet">
<script>
window.onload = function()
{
var ...
- Thu May 31, 2018 9:27 am
- Forum: Off Topic Section
- Topic: Using SESSION variable in a Javascript
- Replies: 14
- Views: 33627
- Thu May 31, 2018 7:38 am
- Forum: Off Topic Section
- Topic: Using SESSION variable in a Javascript
- Replies: 14
- Views: 33627
Re: Using SESSION variable in a Javascript
I think:
var url = "http://beleuramyhome.org.au/phpBB3/viewtopic.php?";
should be:
var url = "http://beleuramyhome.org.au/phpBB3/viewtopic.php/?";
var url = "http://beleuramyhome.org.au/phpBB3/viewtopic.php?";
should be:
var url = "http://beleuramyhome.org.au/phpBB3/viewtopic.php/?";
- Thu Apr 05, 2018 9:41 am
- Forum: Off Topic Section
- Topic: Windows Awards
- Replies: 5
- Views: 11336
Re: Windows Awards
Pablo;
Why don't you enter this
https://developer.microsoft.com/en-us/windows/projects/events/build/2018/awards
We all know what you have created and I think the big boys need to see WWB!
Z
I agree with your sentiments but I don't want the likes of M$ taking it over and ruining it. I hate the ...
- Thu Apr 05, 2018 9:20 am
- Forum: Off Topic Section
- Topic: Windows Awards
- Replies: 5
- Views: 11336
Re: Windows Awards
Pablo;
Why don't you enter this
https://developer.microsoft.com/en-us/windows/projects/events/build/2018/awards
We all know what you have created and I think the big boys need to see WWB!
Z
I agree with your sentiments but I don't want the likes of M$ taking it over and ruining it. I hate the way ...
- Sat Mar 31, 2018 10:40 pm
- Forum: Showcase your website created by WYSIWYG Web Builder and invite feedback.
- Topic: seanf.de
- Replies: 4
- Views: 25807
Re: seanf.de
It looks OK on an iPad (except the footer as mentioned already).
The icons at the top require two presses on an iPad to show the linked page.
Just noticed on the home page:
... software and it's endless extensions (Unite Gallery is just amazing).
should be:
... software and its endless ...
The icons at the top require two presses on an iPad to show the linked page.
Just noticed on the home page:
... software and it's endless extensions (Unite Gallery is just amazing).
should be:
... software and its endless ...
- Thu Mar 29, 2018 9:09 am
- Forum: Paid Templates
- Topic: Communication - Business Responsive Template
- Replies: 6
- Views: 13261
Re: Communication - Business Responsive Template
... The point of a template, especially a paid template is to offer some kind of solution to a problem. More often than not it includes some custom coding. ...
FWIW, IMHO, I felt I had to reply to this. The whole point of WWB is that the user doesn't need to write custom coding. So I don't ...
FWIW, IMHO, I felt I had to reply to this. The whole point of WWB is that the user doesn't need to write custom coding. So I don't ...
- Mon Mar 26, 2018 10:54 am
- Forum: Free Templates
- Topic: Writer - Responsive template
- Replies: 5
- Views: 33978
Re: Writer - Responsive template
Sorry but this puts me off straight away.
- Mon Mar 12, 2018 10:20 am
- Forum: Share self-made extensions with other users of WYSIWYG Web Builder
- Topic: My Sql Various Extentions
- Replies: 4
- Views: 38994
Re: My Sql Various Extentions
For the Pie Chart you have included the .xwb file instead of the .wbx file.
It would be useful if you included a help/pdf file for each extension.
It would be useful if you included a help/pdf file for each extension.