Search found 756 matches

by WWBman
Fri Oct 12, 2018 9:35 pm
Forum: Forms
Topic: Combobox Condition
Replies: 93
Views: 57667

Re: Combobox Condition

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 ...
by WWBman
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 ...
by WWBman
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 ...
by WWBman
Wed Oct 10, 2018 10:16 am
Forum: Forms
Topic: Combobox Condition
Replies: 93
Views: 57667

Re: Combobox Condition

Looks good, well done.
by WWBman
Fri Oct 05, 2018 9:44 am
Forum: Off Topic Section
Topic: pageflip jquery
Replies: 4
Views: 2643

Re: pageflip jquery

Thanks BaconFries.
by WWBman
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?
by WWBman
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."
by WWBman
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.
by WWBman
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.
by WWBman
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.?
by WWBman
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.
by WWBman
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.
by WWBman
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;
by WWBman
Sun Sep 30, 2018 9:44 am
Forum: Forms
Topic: Combobox Condition
Replies: 93
Views: 57667

Re: Combobox Condition

Try:
Combobox1.reset();
by WWBman
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;
by WWBman
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
by WWBman
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.
by WWBman
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;
by WWBman
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?
by WWBman
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?
by WWBman
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
by WWBman
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 ...
by WWBman
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?
by WWBman
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 ...
by WWBman
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 ...
by WWBman
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?
by WWBman
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.
by WWBman
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?
by WWBman
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 ...
by WWBman
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
by WWBman
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.
by WWBman
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
by WWBman
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.
by WWBman
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
by WWBman
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?
by WWBman
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?

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
Out of curiosity, what criteria determines what user 1 sees and what user 2 sees?
by WWBman
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

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
What is the full line after your edit?
by WWBman
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:

Code: Select all

text_scroller.innerText = '[' + text.substring(0, pos) + ']';
to:

Code: Select all

text_scroller.innerText = text.substring(0, pos);
by WWBman
Sun Jun 17, 2018 2:56 pm
Forum: Off Topic Section
Topic: Patience...Patience
Replies: 4
Views: 10457

Re: Patience...Patience

Hear hear.
by WWBman
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 ...
by WWBman
Thu May 31, 2018 9:27 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 just tried your code (without the /) and it seems to work!
Image
by WWBman
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 ...
by WWBman
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 ...
by WWBman
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 ...
by WWBman
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 ...
by WWBman
Mon Mar 26, 2018 10:54 am
Forum: Free Templates
Topic: Writer - Responsive template
Replies: 5
Views: 33978

Re: Writer - Responsive template

antony wrote: Mon Mar 26, 2018 10:38 am... with a single Antony ID account. ...
Sorry but this puts me off straight away.
by WWBman
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.