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: SOLVED: Web Service Method - parallel nested tables
« on: December 06, 2023, 10:27:40 PM »
Niels,
Please post some data with your example, and a hint on what parameter to call the test api with (ie customer number) to see some result in the api.
Cheers
Bruce
Please post some data with your example, and a hint on what parameter to call the test api with (ie customer number) to see some result in the api.
Cheers
Bruce
2
Web Server - Ask For Help / Re: Working example of getting physical address from Lat/Long - Nettalk 14
« on: December 06, 2023, 09:49:03 PM »
attached
3
Web Server - Ask For Help / Re: How do you do an address lookup on a mobile device's native map app from NT?
« on: December 06, 2023, 03:46:03 AM »
unless your browser has some way to communicate with the local (not browser?) app, no.
4
E-Mail - Ask For Help / Re: Email subject wrong codepage problem after upgrading (NT10->NT14)
« on: November 29, 2023, 10:10:39 PM »
>> setCodePage input parameter is charset, not codepage (strange, I don't know what is the reason for that?).
SetCodePage takes a charset, and sets the CodePage parameter based on that charset.
If you already know the code page (1250 etc) then you can just set the .codepage property to that codepage. As in
net.codepage = st:CP_WINDOWS_1253
>> MaybeEncodeString procedure still bothers me because I can't bypass the re-encoding
For 14.14 I have added a check on he encoding property. So if your subject text is already utf-8, then you can set
net.encoding = st:EncodeUtf8
and it will not convert it to utf-8. It will still EncodeWordEncode it, but that's necessary for the Subject line.
SetCodePage takes a charset, and sets the CodePage parameter based on that charset.
If you already know the code page (1250 etc) then you can just set the .codepage property to that codepage. As in
net.codepage = st:CP_WINDOWS_1253
>> MaybeEncodeString procedure still bothers me because I can't bypass the re-encoding
For 14.14 I have added a check on he encoding property. So if your subject text is already utf-8, then you can set
net.encoding = st:EncodeUtf8
and it will not convert it to utf-8. It will still EncodeWordEncode it, but that's necessary for the Subject line.
5
Web Server - Ask For Help / Re: Web Service Method - parallel nested tables
« on: November 29, 2023, 07:58:57 AM »
>> two joins in a view in the same level in clarion of course don't work,
um, sure they do.
Perhaps post your actual view code?
um, sure they do.
Perhaps post your actual view code?
6
Web Server - Ask For Help / Re: Working example of getting physical address from Lat/Long - Nettalk 14
« on: November 29, 2023, 07:57:45 AM »
Desktop or web?
7
Web Server - Ask For Help / Re: Secwin Login with User Lookup
« on: November 28, 2023, 09:51:49 PM »
Thanks Ken,
I've made a Secwin 7.50 build with the fix.
Cheers
Bruce
I've made a Secwin 7.50 build with the fix.
Cheers
Bruce
8
Web Server - Ask For Help / Re: Vertical spacing between fields
« on: November 27, 2023, 09:17:14 PM »
Hi Ubaidullah,
Use F12 in your browser to inspect the HTML and CSS.
Add a Custom CSS to your project.
Put your desired CSS into the custom.css file.
It's worth spending a few moments on learning this approach, because it'll be really useful to you moving forward.
There'll be another user group meeting on Dec 7 if you haven't got it sorted out by then.
Cheers
Bruce
Use F12 in your browser to inspect the HTML and CSS.
Add a Custom CSS to your project.
Put your desired CSS into the custom.css file.
It's worth spending a few moments on learning this approach, because it'll be really useful to you moving forward.
There'll be another user group meeting on Dec 7 if you haven't got it sorted out by then.
Cheers
Bruce
9
Web Server - Ask For Help / Re: Ideas on Implement Communication between NT web server and NT Kiosk
« on: November 26, 2023, 09:29:32 PM »
so to be clear, there are 3 machines in play here;
a) the server
b) a mobile device. where the user does stuff and
c) a kiosk where that stuff appears? (as soon as possible after the mobile user does it?)
If the above is all true, then yes, I'd make a web socket connection between the kiosk and the server.
Cheers
Bruce
a) the server
b) a mobile device. where the user does stuff and
c) a kiosk where that stuff appears? (as soon as possible after the mobile user does it?)
If the above is all true, then yes, I'd make a web socket connection between the kiosk and the server.
Cheers
Bruce
10
Web Server - Ask For Help / Re: Vertical spacing between fields
« on: November 26, 2023, 09:24:15 PM »
CSS
11
Web Server - Ask For Help / Re: NetTalk Wizard-Create a responsive app
« on: November 26, 2023, 09:24:03 PM »
>> Does the NetTalk Server wizard creates a responsive application framework?
yes.
Cheers
Bruce
yes.
Cheers
Bruce
12
Web Server - Ask For Help / Re: Secwin Login with User Lookup
« on: November 26, 2023, 09:23:34 PM »
cool, make the same change to the example app, and post that to me so I can duplicate here.
Cheers
Bruce
Cheers
Bruce
13
Web Server - Ask For Help / Re: Number Picture in NetWebForm
« on: November 24, 2023, 05:27:09 AM »
>> I have a number field in a NetWebForm. I want it to display a value of 2000 as 2,000.00 (commas and decimal).
formatting of NUMBER fields is set by the browser.
>> In a browse it is easy to set the picture to @n10.2 but how do I do it in a form?
change the field type to STRING
Cheers
Bruce
formatting of NUMBER fields is set by the browser.
>> In a browse it is easy to set the picture to @n10.2 but how do I do it in a form?
change the field type to STRING
Cheers
Bruce
14
Web Server - Ask For Help / Re: Error. Invalid String Start and String End positions. No data will be sent
« on: November 24, 2023, 05:25:32 AM »
define "local settings are set to not require log in"
Bruce
Bruce
15
Web Server - Ask For Help / Re: Error. Invalid String Start and String End positions. No data will be sent
« on: November 23, 2023, 09:09:44 PM »
>> Any ideas appreciated of how to track this down?
Inspect the generated code, and follow it through netweb.clw
I'd work backwards from the calls where the browse is failing.
Cheers
Bruce
Inspect the generated code, and follow it through netweb.clw
I'd work backwards from the calls where the browse is failing.
Cheers
Bruce