I’ve updated to 6.2.3
The only code is:
Function Button1_onclick
Modal1.toggle()
End Function
The Modal contains the following HTML…
<pre>
<h4> Title </h4>
<details>
<summary>Step 1</summary>
<pre>
Activity
Activity
&nbs p; <i>Example ;lka flkj a;ldkfj
Activity
</pre></details>
<details>
<summary>Step 2</summary>
<pre>
Activity
Activity
<i>Example</I>
Activity
</pre></details>
I’m testing this on a Windows 10 environment… same result in iPhone
Link to app… https://testlistgroup-modal-swings-quaintly.volt.live
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (1) |
RICARDO CASSOLATTO
Business Consultant
sint...@gmail.com / 21 98196-0504
FastMobile
http://fastmobile.info
Rua Farani, 23 - apto. 403 - Botafogo - CEP 22231-020 - RJ - BRASIL
I’ve updated to 6.2.3
The only code is:
Function Button1_onclick
Modal1.toggle()
End Function
The Modal contains the following HTML…
<pre>
<h4> Title </h4>
<details>
<summary>Step 1</summary>
<pre>
Activity
Activity
<i>Example ;lka flkj a;ldkfj
Activity
</pre></details>
<details>
<summary>Step 2</summary>
<pre>
Activity
Activity
<i>Example</I>
Activity
</pre></details>
I’m testing this on a Windows 10 environment… same result in iPhone
Link to app… https://testlistgroup-modal-swings-quaintly.volt.live
Hi Ricardo… thanks for the suggestion… Note that Modal was working properly with 6.2.1.
Here’s the code and the results:
Function Button1_onclick
'Modal1.toggle() My original code which results in gray screen and program locks
'Modal1.show({closeExisting:True,clickClose:False,showClose:False,opacity:1}) Your suggestion and nothing happens when I clicked Button1
Modal1.toggle({closeExisting:True,clickClose:False,showClose:False,opacity:1}) ‘ And this resulted in grey screen and program locks.
End Function
-----------------------------
There was a problem in 6.2.2, fixed in 6.2.3.
Does the Modal sample work?
>Hi Ricardo… thanks for the suggestion… Note that Modal was working
>properly with 6.2.1.
>
>
>
>Here’s the code and the results:
>
>
>
>Function Button1_onclick
>
> 'Modal1.toggle() My original code which results in gray screen and
>program locks
>
>
>
> 'Modal1.show({closeExisting:True,
>clickClose:False,showClose:False,opacity:1}) Your suggestion and nothing
>happens when I clicked Button1
>
>
>
> Modal1.toggle({closeExisting:True
>,clickClose:False,showClose:False,opacity:1}) ‘ And this resulted in
>grey screen and program locks.
>
>
>
>End Function
>
>-----------------------------
>
>
>
>Hi there,
>
>
>
>Try like this, that is the correct:
>
>
>
>modalInit.show({closeExisting:True,cl
>ickClose:False,showClose:False,opacity:1})
>
>
>
>
>
>RICARDO CASSOLATTO
>
>Business Consultant
>sint...@gmail.com / 21 98196-0504
>
>FastMobile
>http://fastmobile.info
>Rua Farani, 23 - apto. 403 - Botafogo - CEP 22231-020 - RJ - BRASIL
>
>
>
>
Yes, both Modal Form (which I don’t understand, but don’t need right now) and Modal (BS) work.
So the Modal (BS) code is
Function Button1_onclick()
Modal1.toggle()
End Function
And what I have coded is
Function Button1_onclick
Modal1.toggle()
End Function
I fixed the () after …onclick and it STILL doesn’t work… I assume it therefore has to be something I’ve set in the Properties … I don’t know how to get properties to you so I’ll use the brute force method… here are all the Properties:
borderColor
borderStyle
borderWidth
bottom 50
height
left 26
right 20
top 111
width auto
backgroundColor
class
color
events
footer Footer
footerAlign left
header
hidden False
id Modal1
position Static
size Medium
style display:block
value (It’s the HTML code I show below in this email)
Badge
fontFamily
fontSize
fontStyle normal
fontWeight normal
(all the “Margin” and “Padding” properties are blank.
The “Help” windows shows this:
$(#Modal1”) modal(“toggle”) to view Bootstrap
What does this mean?
===================
Can you send me a small app which shows the problem?
Trying to recreate from your description is pretty hit and miss.
>The “Help” windows shows this:
>
>$(#Modal1”) modal(“toggle”) to view Bootstrap
Modal Panel which floats above app. Requires $("#Modal1").modal("toggle") to view. Bootstrap.
While this also workd, just doing Modal1.toggle() is easier.