This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1
Web Server - Ask For Help / Re: h2 Header styling - trying to apply color
« on: November 21, 2024, 12:14:40 AM »'<h2><span style="color: red;">This is a test Heading which needs to be red.</span></h2>'
If you are adding this to a NetWeb Form as the heading you need to check
Allow XHTML in Heading
2
Web Server - Ask For Help / Re: Refresh the entire browse or just a row after an event in a Browse menu
« on: October 07, 2024, 03:24:44 AM »
Hi,
I tried this but unable to get it to work for me, so I just added a Button to the browse which open a Menu (popup window)
From there I add the options.
If any of the options require a refresh of the original browse I use
p_web.Script('location.reload();') from the close of the Menu.
Not sure if this is any help but does the job for me for now.
You can see the effect at https://cpslive.co.uk
It will not do the refresh as you can't login but will show the Menu Options.
I tried this but unable to get it to work for me, so I just added a Button to the browse which open a Menu (popup window)
From there I add the options.
If any of the options require a refresh of the original browse I use
p_web.Script('location.reload();') from the close of the Menu.
Not sure if this is any help but does the job for me for now.
You can see the effect at https://cpslive.co.uk
It will not do the refresh as you can't login but will show the Menu Options.
3
Web Server - Ask For Help / Re: Slow to Close
« on: August 26, 2024, 10:50:34 PM »
Interesting.
Thanks Bruce.
NetTalk 14 my file is host.state.json
Maybe I have set something.
Thanks Bruce.
NetTalk 14 my file is host.state.json
Maybe I have set something.
4
Web Server - Ask For Help / Re: Slow to Close
« on: August 23, 2024, 05:11:52 AM »
OK nothing to do with what I said.
Maybe a thread is still running.
Maybe check Performance Tab and check threads before you press the close.
Maybe a thread is still running.
Maybe check Performance Tab and check threads before you press the close.
5
Web Server - Ask For Help / Re: Slow to Close
« on: August 23, 2024, 02:51:59 AM »
Depends if you are using Graceful Close.
If so the server writes the session data to a JSON file.
When you relaunch the server it reads the JSON file so will take time depending on how much data is in the JSON file.
More servers and more sessions the longer the delay.
I always leave the existing server open and start a new server after deleting the JSON file.
This server will error because the current running server has the listening ports open.
After I close the current running server the new server will connect to the listening ports.
Of course I do loose all the existing session but that is perfect for me.
If so the server writes the session data to a JSON file.
When you relaunch the server it reads the JSON file so will take time depending on how much data is in the JSON file.
More servers and more sessions the longer the delay.
I always leave the existing server open and start a new server after deleting the JSON file.
This server will error because the current running server has the listening ports open.
After I close the current running server the new server will connect to the listening ports.
Of course I do loose all the existing session but that is perfect for me.
6
Web Server - Ask For Help / Re: Popups - Close
« on: July 27, 2024, 04:29:16 AM »
Maybe I have given you the wrong embed point but you should be able the Save the form as a Close.
You can hide the X close on the popup
You can hide the X close on the popup
7
Web Server - Ask For Help / Re: Hide some columns in a browse
« on: July 27, 2024, 04:27:30 AM »
I use
Browse Field
Coloum Tab
C coloum Condition
p_web.getSessionvalue('ShowECommerce') = True
Browse Field
Coloum Tab
C coloum Condition
p_web.getSessionvalue('ShowECommerce') = True
8
Web Server - Ask For Help / Re: Popups - Close
« on: July 26, 2024, 05:57:23 AM »
You can add a 'SAVE' button on the form and change the text to 'Close' or 'something' else and add code Post Update.
Memory forms are change mode by default.
Memory forms are change mode by default.
9
Web Server - Ask For Help / Re: Forms behave strangely in version 14.17
« on: February 12, 2024, 02:25:48 AM »
Thanks Bruce. Not a problem.
I will do more investigation later this week. NetTalk14.16 is great for the time being.
I will start a new thread if required.
I will do more investigation later this week. NetTalk14.16 is great for the time being.
I will start a new thread if required.
10
Web Server - Ask For Help / Re: Forms behave strangely in version 14.17
« on: February 09, 2024, 11:24:24 AM »
I also have an Issue with NetTalk 14.17.
Mine is with Forms also where fields have moved.
Maybe Span Prompt Value Comment or
refactoring Form Cell Start / End Code
Switched back to NetTalk14.16
Mine is with Forms also where fields have moved.
Maybe Span Prompt Value Comment or
refactoring Form Cell Start / End Code
Switched back to NetTalk14.16
11
Web Server - Ask For Help / Re: How to change Prompt Text and ToolTip in Code
« on: October 08, 2023, 10:41:37 PM »
Hi
In your Code
p_web.SetSessionValue('Rep:WhichReportPrompt','What you want the prompt to be')
p_web.SetSessionValue('Rep:WhichReportTip','What you want the tip to be')
Form Fields
Field Rep:WhichReport
Equate Rep:WhichReport
Prompt p_web.GetSessionValue('Rep:WhichReportPrompt')
ToolTip p_web.GetSessionValue('Rep:WhichReportTip')
In your Code
p_web.SetSessionValue('Rep:WhichReportPrompt','What you want the prompt to be')
p_web.SetSessionValue('Rep:WhichReportTip','What you want the tip to be')
Form Fields
Field Rep:WhichReport
Equate Rep:WhichReport
Prompt p_web.GetSessionValue('Rep:WhichReportPrompt')
ToolTip p_web.GetSessionValue('Rep:WhichReportTip')
12
Web Server - Ask For Help / Re: How to change Prompt Text and ToolTip in Code
« on: October 08, 2023, 03:04:37 AM »
Prompt and Tips are Session Values
Prompt = 'abcde'
SetSessionValue('Prompt ',Prompt)
And the Prompt is a session value
p_web.GetSessionValue('Prompt')
Prompt = 'abcde'
SetSessionValue('Prompt ',Prompt)
And the Prompt is a session value
p_web.GetSessionValue('Prompt')
13
Web Server - Ask For Help / Re: Multi-Site host crash after updating NT from NT 12.41.to 12.61
« on: September 11, 2023, 01:44:09 AM »
Thanks for reply.
I guess you may not of deployed all required files from your dev system.
Maybe
CLAnet.dll | Dated May 2023
libcrypto-1_1.dll | Dated Feb 2023
libsssl-1_1.dll | Dated Feb 2023
CARoot.pem | Dated Nov 2022
OpenSSL.exe | Dated Feb 2023
Just a my toughts
Cheers
Vinnie
I guess you may not of deployed all required files from your dev system.
Maybe
CLAnet.dll | Dated May 2023
libcrypto-1_1.dll | Dated Feb 2023
libsssl-1_1.dll | Dated Feb 2023
CARoot.pem | Dated Nov 2022
OpenSSL.exe | Dated Feb 2023
Just a my toughts
Cheers
Vinnie
14
Web Server - Ask For Help / Re: Multi-Site host crash after updating NT from NT 12.41.to 12.61
« on: September 10, 2023, 11:29:32 PM »
Maybe check
Requires StringTheory 3.56 or later
OpenSSL updated to version 1.1.1.20 (1.1.1t)
Cheers
Vinnie
Requires StringTheory 3.56 or later
OpenSSL updated to version 1.1.1.20 (1.1.1t)
Cheers
Vinnie
15
Web Server - Ask For Help / Re: Single field on form
« on: July 31, 2023, 01:51:27 AM »
Hi Ken
Just make the extra field a hidden field.
The first field user presses enter jumps to hidden field and jumps back to first field.
This is normal in my system.
Option two is the set the barcode to tab after read not enter. Not the best option.
Just make the extra field a hidden field.
The first field user presses enter jumps to hidden field and jumps back to first field.
This is normal in my system.
Option two is the set the barcode to tab after read not enter. Not the best option.