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.
Pages: [1] 2
1
Web Server - Ask For Help / Hotdates bug & feature request
« on: September 02, 2016, 01:29:22 AM »
Hi Bruce,
in the hotdates example: when you drag and drop an item in the year or month planner and reopen/close the item then you get an error when saving.
Feature request: it would be nice if you can have multiple appointments in the year/monthly planner.
1) Entering a blank position: add a new appointment on that day (this already happens now)
2) If there is only 1 appointment on a day: drag and drop is enabled (this already happens now)
3) If there are multiple appointments on a day: Show a browse with the appointments on that day so you can edit a specific appointment on that day. (feature request).
Hope this makes sence......
Would love to have this kind of handling in the templates.
Cheers,
Bram
in the hotdates example: when you drag and drop an item in the year or month planner and reopen/close the item then you get an error when saving.
Feature request: it would be nice if you can have multiple appointments in the year/monthly planner.
1) Entering a blank position: add a new appointment on that day (this already happens now)
2) If there is only 1 appointment on a day: drag and drop is enabled (this already happens now)
3) If there are multiple appointments on a day: Show a browse with the appointments on that day so you can edit a specific appointment on that day. (feature request).
Hope this makes sence......
Would love to have this kind of handling in the templates.
Cheers,
Bram
2
Web Server - Ask For Help / lost connection odbc
« on: July 06, 2014, 11:37:58 AM »
I have a webapp that connects to a Gupta database via ODBC.
I open the odbc connection in the webserver
Works like a charm. If however in a DMZ zone with a TCP timeout a timeout occurs, then the webapp does not see the tables anymore.
The webapp is on a seprate server as the database. For security reasons there is a timeout set on the tcp connection.
What is the best practice in this case?
.
Can I check the connection in the webhandler?
Should I make a separate windows program that checks if the connection is open and restart the webapp ?
I open the odbc connection in the webserver
Works like a charm. If however in a DMZ zone with a TCP timeout a timeout occurs, then the webapp does not see the tables anymore.
The webapp is on a seprate server as the database. For security reasons there is a timeout set on the tcp connection.
What is the best practice in this case?
.
Can I check the connection in the webhandler?
Should I make a separate windows program that checks if the connection is open and restart the webapp ?
3
Web Server - Ask For Help / Re: How to pass e text-field to a session-value
« on: August 29, 2007, 06:12:25 AM »
Hi Chris,
in a webform you can specify a text field (like string, display,etc). I/ve got a memory-form and want to pass the contents of that text-field to another form. Yes, it's a string of 500 chars. Trying to save that in a session-value does not work. Passing a vaulue of a type string-field dos work. I thougt it might be a bug..
Cheers,
Bram
in a webform you can specify a text field (like string, display,etc). I/ve got a memory-form and want to pass the contents of that text-field to another form. Yes, it's a string of 500 chars. Trying to save that in a session-value does not work. Passing a vaulue of a type string-field dos work. I thougt it might be a bug..
Cheers,
Bram
4
Web Server - Ask For Help / How to pass e text-field to a session-value
« on: August 25, 2007, 09:16:37 AM »
Hi,
i have a memory-form with a text-type-field for a description. I want to save this in a session-variable for use in another form.
It seems that i cannot save the value of a text-field in a session-variable?
Any help is welcome..
Greetings,
Bram
i have a memory-form with a text-type-field for a description. I want to save this in a session-variable for use in another form.
It seems that i cannot save the value of a text-field in a session-variable?
Any help is welcome..
Greetings,
Bram
5
Web Server - Ask For Help / how to chain to a net:webpage from a custom button?
« on: July 30, 2007, 01:01:27 PM »
Hi,
i have a form and do'nt want to use the save button to chain to another page. Instead i have added a button without a URL and in the embed-point for server-side i've added several file-operations. After that i want to chain to a Net:webpage (without change/insert/delete or whatever, just a simple thankyou page).
How can i do that?
any help is welcome!
Cheers,
Bram
i have a form and do'nt want to use the save button to chain to another page. Instead i have added a button without a URL and in the embed-point for server-side i've added several file-operations. After that i want to chain to a Net:webpage (without change/insert/delete or whatever, just a simple thankyou page).
How can i do that?
any help is welcome!
Cheers,
Bram
6
Web Server - Ask For Help / Re: Passing special chars ? % in addressline
« on: July 25, 2007, 06:04:21 AM »
Rene, in that page is a note:
Note: The escape() and unescape() functions should not be used to encode or decode URIs. Use encodeURI() and decodeURI() functions instead!
That's what i mean buy using a parser in Webserver.
Cheers,
Bram
Note: The escape() and unescape() functions should not be used to encode or decode URIs. Use encodeURI() and decodeURI() functions instead!
That's what i mean buy using a parser in Webserver.
Cheers,
Bram
7
Web Server - Ask For Help / Re: Passing special chars ? % in addressline
« on: July 25, 2007, 05:42:28 AM »
Hi Rene,
found an interesting url on this topic:
http://www.blooberry.com/indexdot/html/topics/urlencoding.htm
You need to use a % followed by the hex represntation of the character. Then it works ok.
But still i have to search every string myself...
I hope there is an easy way.
Greetings,
Bram
found an interesting url on this topic:
http://www.blooberry.com/indexdot/html/topics/urlencoding.htm
You need to use a % followed by the hex represntation of the character. Then it works ok.
But still i have to search every string myself...
I hope there is an easy way.
Greetings,
Bram
8
Web Server - Ask For Help / Re: Passing special chars ? % in addressline
« on: July 25, 2007, 05:20:10 AM »
Hi Ren
i think it's not working because it is displayed in the URL address as %. In the URL line a % is a special chariacter, so it has to be escaped with special characters.
I.e. : & is %amp% (i think for XML).
If there is a routine in Nettalk webserver that does this for me, then i can use that routine. Otherwise i will have to search and replace strings that are to be used in het URL.
What i need is a parser.
Maybe Bruce has an answer?
Thanx for helping!
Bram
i think it's not working because it is displayed in the URL address as %. In the URL line a % is a special chariacter, so it has to be escaped with special characters.
I.e. : & is %amp% (i think for XML).
If there is a routine in Nettalk webserver that does this for me, then i can use that routine. Otherwise i will have to search and replace strings that are to be used in het URL.
What i need is a parser.
Maybe Bruce has an answer?
Thanx for helping!
Bram
9
Web Server - Ask For Help / Passing special chars ? % in addressline
« on: July 25, 2007, 01:31:09 AM »
Hi,
is there a method for URL-encoding /decoding to pass special characters from one page to another page?
I must pass ariclenumbers like "DG12%" .
Thanx,
Bram
is there a method for URL-encoding /decoding to pass special characters from one page to another page?
I must pass ariclenumbers like "DG12%" .
Thanx,
Bram
10
Web Server - Ask For Help / Re: Client Side options on Form
« on: July 19, 2007, 10:29:52 AM »
Hi Bruce,
The field is used to fill shipping-comments. I want to save this because i use it in the check-out which is 3 forms away from the form in which it is filled (form 1: customerdetails -> form2: shipping details ->form3: chekout). I navigate through the forms with link-buttons.
In form1 1 have two fields: 1 reference field (type string). This works fine whith the "send new value..." to save the value in the session-queue. The other field, shipping-comments (type text) does not save the value in the session-queue. When i change the type to string, then it works ok. So i think the "Send new value ..." does not work with type text-fields....
Greetings,
Bram
The field is used to fill shipping-comments. I want to save this because i use it in the check-out which is 3 forms away from the form in which it is filled (form 1: customerdetails -> form2: shipping details ->form3: chekout). I navigate through the forms with link-buttons.
In form1 1 have two fields: 1 reference field (type string). This works fine whith the "send new value..." to save the value in the session-queue. The other field, shipping-comments (type text) does not save the value in the session-queue. When i change the type to string, then it works ok. So i think the "Send new value ..." does not work with type text-fields....
Greetings,
Bram
11
Web Server - Ask For Help / Re: How can i get/save then Unique record ID from a selected row-id in abrowse?
« on: July 19, 2007, 10:04:21 AM »
Hi Bruce,
i have a browse without any buttons on the rows. WHen i add a stop() message to the embed-point in the send new- value, the value returned is always the same. I changed the web21.app to test your suggestion with the BrowseCustomers in a form, but no luck. If i hit the "change" button in the row of the browse, then i get the correct customer-id. But when you do'nt have in-line browse-buttons, it does'nt seem to work.
Any idea?
Greetings,
Bram
i have a browse without any buttons on the rows. WHen i add a stop() message to the embed-point in the send new- value, the value returned is always the same. I changed the web21.app to test your suggestion with the BrowseCustomers in a form, but no luck. If i hit the "change" button in the row of the browse, then i get the correct customer-id. But when you do'nt have in-line browse-buttons, it does'nt seem to work.
Any idea?
Greetings,
Bram
12
Web Server - Ask For Help / Re: Client Side options on Form
« on: July 18, 2007, 01:29:35 PM »
Hi Bruce,
this is not working for a text field. I need this to pass it to another form....
Greetings,
Bram
this is not working for a text field. I need this to pass it to another form....
Greetings,
Bram
13
Web Server - Ask For Help / How can i get/save then Unique record ID from a selected row-id in abrowse?
« on: July 18, 2007, 09:45:14 AM »
Hi All,
I want to save the unique record-identifier in a session-variable of a selected row in a browse. I want to use this identifier in another form without using the browse-form option.
(It's for a selection of a row in a browse and then i go to another form with a button/hyperlink. Then i need that session-variable to get the selected record)
Any Help?
Greetings,
Bram
I want to save the unique record-identifier in a session-variable of a selected row in a browse. I want to use this identifier in another form without using the browse-form option.
(It's for a selection of a row in a browse and then i go to another form with a button/hyperlink. Then i need that session-variable to get the selected record)
Any Help?
Greetings,
Bram
14
Web Server - Ask For Help / Re: getting javascript yes/no answer in embedcode
« on: July 17, 2007, 11:31:58 AM »
Hi Bruce,
it was for a memory form with some special treatment. I converted it to a "normal" file form and used the standard delete-button.
Thanx,
Bram
it was for a memory form with some special treatment. I converted it to a "normal" file form and used the standard delete-button.
Thanx,
Bram
15
Web Server - Ask For Help / getting javascript yes/no answer in embedcode
« on: July 16, 2007, 03:37:19 AM »
Hi,
i need a yes/no answer from a user for deleting a record. How can i retrieve the true/false value of a send javascript?
I use this code:
packet = clip(packet) & '<script>window.confirm(<39>Are you sure to delete this address?<39>)</script>'
Or is there another way of getting a yes/no answer from a popup-dialog?
Greetings,
Bram
i need a yes/no answer from a user for deleting a record. How can i retrieve the true/false value of a send javascript?
I use this code:
packet = clip(packet) & '<script>window.confirm(<39>Are you sure to delete this address?<39>)</script>'
Or is there another way of getting a yes/no answer from a popup-dialog?
Greetings,
Bram
Pages: [1] 2