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.
76
Web Server - Ask For Help / Re: Prev and Next buttons in NetWebYear
« on: October 29, 2019, 04:21:07 AM »
UPDATE
Funny thing happened.
Running in Chrome, I ran a performance check.
Guess what happend after?? The Icons appeared!!!
So I think maybe it is a caching thing??
Thanks for the reply anyway
René
Funny thing happened.
Running in Chrome, I ran a performance check.
Guess what happend after?? The Icons appeared!!!
So I think maybe it is a caching thing??
Thanks for the reply anyway
René
77
Web Server - Ask For Help / Prev and Next buttons in NetWebYear
« on: October 25, 2019, 03:09:07 AM »
Hi all,
Working my way through the NetWebYear procedure template,
I cannot find where to activate the previout and next buttons when I show a single month at the time.
Does anyone know how to do that?
Cheers,
René
Working my way through the NetWebYear procedure template,
I cannot find where to activate the previout and next buttons when I show a single month at the time.
Does anyone know how to do that?
Cheers,
René
78
Web Server - Ask For Help / Re: (Slightly OT) Image to PDF
« on: October 18, 2019, 04:55:40 AM »
Hi,
PDF995 also has a bunch of stuff
René
PDF995 also has a bunch of stuff
René
79
Web Server - Ask For Help / Re: Javascript filter of a browse
« on: October 09, 2019, 05:25:43 AM »
Bruce,
Nice! Thank you.
René
Nice! Thank you.
René
80
Web Server - Ask For Help / Re: Field priming
« on: October 09, 2019, 03:51:48 AM »
Hi Bruce,
I know there is no magic wand that converts clarion code into javascript.
That's why I keep the amount of embed code as small as possible.
Apps are there to help you perform a (small) task not to do your book keeping.
I have found some javascript embeds in the code. They are associated with the entry fields in the forms and refer to
onfocus, onblur and onchange.
My validation question is about these:
Cheers,
René
I know there is no magic wand that converts clarion code into javascript.
That's why I keep the amount of embed code as small as possible.
Apps are there to help you perform a (small) task not to do your book keeping.
I have found some javascript embeds in the code. They are associated with the entry fields in the forms and refer to
onfocus, onblur and onchange.
My validation question is about these:
- Are these the "best" points to do javascript validation? (e.g. Entry is required, Entry is not valid etc.)
- Is it best to write javascript functions in my custom.js and call them from these embed-pints here?
- Is the javascript entered in the template to be enclosed in between quotes?
- Is the javascript code executed only when the app has succesfully passed through mBuid?
Cheers,
René
81
Web Server - Ask For Help / Mini survey about NetTalk Apps
« on: October 08, 2019, 10:12:04 AM »
Hi,
Just curious.
René Simons
Just curious.
- How many of you have purchased NetTalk Apps 11+ ?
- Have you attempted to create a PWA?
- Have you succeded to create a PWA and are you willing to share your experience/issues?
René Simons
82
Web Server - Ask For Help / Re: Using the header-back-button
« on: October 08, 2019, 04:45:12 AM »
Bump
83
Web Server - Ask For Help / Re: Field priming
« on: October 03, 2019, 12:15:13 AM »
Hi Don,
Great to hear.
One more thing:
I would like to add the validation part in the save-button (of an update form) handling.
There are several embed points where there's room for javascript.
Which one do you recommend?
Cheers,
Rene Simons
Great to hear.
One more thing:
I would like to add the validation part in the save-button (of an update form) handling.
There are several embed points where there's room for javascript.
Which one do you recommend?
Cheers,
Rene Simons
84
Web Server - Ask For Help / Re: Field priming
« on: October 02, 2019, 02:33:58 AM »
Hi Don,
(And thanks again for responding so quickly.)
Correct me if I'm wrong.
Because the validation in the PWA has to be done in javascript, the app will also find out if the record for table B is missing or present.
Therefore, the create of the B-record must be done at the user's phone, using a javascript function
After that, the sync will take care of creating the record on the host I guess.
For what it's worth: Because of the way the database paths on the server will be set up, the total amount of data on the user's phone will be very small.
Cheers,
Rene
(And thanks again for responding so quickly.)
Correct me if I'm wrong.
Because the validation in the PWA has to be done in javascript, the app will also find out if the record for table B is missing or present.
Therefore, the create of the B-record must be done at the user's phone, using a javascript function
After that, the sync will take care of creating the record on the host I guess.
For what it's worth: Because of the way the database paths on the server will be set up, the total amount of data on the user's phone will be very small.
Cheers,
Rene
85
Web Server - Ask For Help / Field priming
« on: October 01, 2019, 12:27:39 PM »
Hi,
I have this procedure UpdateA, where A stands for table A.tps.
In the Clarion-part of the program priming the GUID for A is primed.
I also use the javascript priming for A:guid because I want the app to be a PWA sometime.
In this procedure, I also, ocasionally, write a record into table B.tps.
B:guid is primed (clarion-style) in the embed-code where I write a record into B.tps.
How and where must I do the Javascript priming of B:guid ? Or do I not need this?
Kind regards,
René Simons
I have this procedure UpdateA, where A stands for table A.tps.
In the Clarion-part of the program priming the GUID for A is primed.
I also use the javascript priming for A:guid because I want the app to be a PWA sometime.
In this procedure, I also, ocasionally, write a record into table B.tps.
B:guid is primed (clarion-style) in the embed-code where I write a record into B.tps.
How and where must I do the Javascript priming of B:guid ? Or do I not need this?
Kind regards,
René Simons
86
Web Server - Ask For Help / Re: Javascript filter of a browse
« on: September 30, 2019, 03:20:06 AM »
Hi Don,
Thanks for your reply.
ad 1: That would be nice in case you have a more complicated (but not too complicated) filter.
ad 2: I mean in the template field where the JS-filter must be typed in.
René
Thanks for your reply.
ad 1: That would be nice in case you have a more complicated (but not too complicated) filter.
ad 2: I mean in the template field where the JS-filter must be typed in.
René
87
Web Server - Ask For Help / Javascript filter of a browse
« on: September 28, 2019, 01:39:42 AM »
Hi,
When building a browse for e.g. a phone app, the filtering is to be client side.
In the documentation an example shows a javascript statement like
'return record.paid ==1 ? recordOk : recordFiltered'
2 questions:
When building a browse for e.g. a phone app, the filtering is to be client side.
In the documentation an example shows a javascript statement like
'return record.paid ==1 ? recordOk : recordFiltered'
2 questions:
- Has this condition/statement to be quoted?
- Is it possible/allowed to call a javascript function here (with parms) which returns the recordOk or recordFiltered value?
88
Web Server - Ask For Help / Using the header-back-button
« on: September 23, 2019, 12:12:09 PM »
Hi,
When I use the header-back-button, the following happens:
Has anyone encountered the same behaviour?
HAPPY CIDC
Cheers,
René
When I use the header-back-button, the following happens:
- I open the first popup
Th popup appears WITH a header-back-button but with no fields to enter data in.
I use the header-back-button to "close"the popup. - I open a different popup.
This one appears WITHOUT a header-back-button but WITH data. - I "close" this one and open the first one again.
Now the popup appears WITHOUT header-back-button but WITH data
Has anyone encountered the same behaviour?
HAPPY CIDC
Cheers,
René
89
Web Server - Ask For Help / Re: example 79 in 11.21
« on: September 20, 2019, 12:18:52 AM »
Hi,
For PHP support IN NTWS you need OddJob.
René
For PHP support IN NTWS you need OddJob.
René
90
Web Server - Ask For Help / Re: tree view
« on: August 15, 2019, 02:41:30 PM »
Thanks Alberto.
@Bruce: when you get to do this, recursion would be nice.
René
@Bruce: when you get to do this, recursion would be nice.
René