NetTalk Central

Show Posts

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.


Messages - Rob de Jager

Pages: 1 [2] 3 4
16
Hi Ria

To overcome the class description size limit, you can move the style properties into the div class via your style file.

.dhx_cal_container {
height: 100%;
width: 100%;
}

Cheers

Rob

17
E-Mail - Ask For Help / Re: AddressBook using SMTP
« on: March 20, 2012, 10:45:14 PM »
Hi Dave

Can you give a short description of what you are trying to do please?

Rob

18
Web Server - Ask For Help / Re: Send email not adding CR/LF
« on: March 18, 2012, 11:29:36 PM »
You must define your CR/LF as ascii values, i.e. <13,10>.

Cheers

Rob

19
Web Server - Ask For Help / Re: Rackspace and SendGrid
« on: March 13, 2012, 12:11:45 AM »
IE9 seems to be working perfectly for ALL my NT WebServer customers though John.

20
Your Views and Comments / Re: Update Notifications
« on: March 07, 2012, 10:18:24 AM »

21
Web Server - Ask For Help / Re: NT 5 Ws hanging
« on: March 06, 2012, 09:58:58 PM »
I would add GPF reporter to the webserver and check the gpf log first.

Cheers

Rob

22
Web Server - Ask For Help / Re: NT 6.24 web folder update required.
« on: March 04, 2012, 06:10:32 AM »
Hi Robert

This morning, or about two hours ago ;) A fresh copy went up about two hours ago. Please try again.

Cheers

Rob

23
Web Server - Ask For Help / Re: Calling a memory form from another
« on: March 04, 2012, 06:05:03 AM »
Ah, your update form is a popup  ;) My suggestion will work with a non-popup form. Off the top of my head, I don't think you will be able to redirect while the form  is popped up so to speak.....that is a "modal" state. You would have to close the form first and then decide where you want to redirect to from the browse you are viewing....or don't make the form a popup.

In terms of why the redirect works for say www.google.co.za and not a procedure in your app; if I remember correctly, redirect requires url and not just a procedure name.

Cheers

Rob

24
Web Server - Ask For Help / Re: How to call HTML help from the menu
« on: March 03, 2012, 09:44:01 AM »
John, you don't want to serve the help pages from your application directory.  Move the directory to your netwebserver web directory. your existing link will work.

Rob




25
Web Server - Ask For Help / Re: Calling a memory form from another
« on: March 03, 2012, 06:02:31 AM »
I would set the url in the URL on Save or URL on Cancel fields in the template. That said, those fields are not variables that can be changed while the form has already been opened i.e. the "url" may be determined at procedure setup or at generate form embed.

Cheers

Rob

26
Web Server - Ask For Help / Re: Change color on a field on a form
« on: March 02, 2012, 12:32:42 PM »
Enter a local variable in the required condition i.e. loc:conditionvar
In the source  --- >

Value::Result  Routine
  ! Start of "Set Value"
  ! [Priority 5000]

------------------Place your condition here and set loc:conditionvar to true or false for required or not.   

  ! End of "Set Value"
  p_web._DivHeader('GetTicketNumber2_' & p_web._nocolon('Result') & '_value','adiv')
  ! Start of "Set Value"
  ! [Priority 5000]
 
  ! End of "Set Value"
  loc:extra = ''
  ! --- STRING --- Result
    loc:AutoComplete = 'autocomplete="off"'
  loc:readonly =Choose(loc:conditionvar,'readonly','')
  loc:fieldclass = 'FormEntry'
  If loc:conditionvar
    loc:fieldclass = clip(loc:fieldclass) & ' ' & 'formreadonly'
  End
  loc:fieldclass = clip(loc:fieldclass) & ' ' & 'formreadonly'
  If lower(loc:invalid) = lower('Result')
    loc:fieldclass = clip(loc:fieldclass) & ' ' & 'formerror'
  End

Cheers


Rob

27
Hi Johan

We use RackSpace extensively, but admittedably we have not run PostGreSQL server on their servers. I can't help but think it is probably not related to RackSpace, but rather a configuration issue. There is quite a few references on the internet to this problem for example http://archives.postgresql.org/pgsql-admin/2011-08/msg00099.php. Have a look at some of the user proposed solutions out there.

Good luck

Rob


28
Hi Johan

Am I missing something? but are you using NetTalk with PostGreSQL?

Rob

 

29
Web Server - Ask For Help / Re: Not changing record values - NT544
« on: February 27, 2012, 10:40:04 AM »
Terry, this a long shot on my part, but two things that I can think of.  One, make sure that you did not populate the record's unique id on the form and two, that the table has a unique id and primary key.

Cheers

Rob

30
Web Server - Ask For Help / Re: How to detect Android
« on: February 25, 2012, 09:27:19 AM »
The user agent (server side) typically will display something like the following:
User-Agent: Opera/9.80 (Android 2.3.4; Linux; Opera Mobi/ADR-1202011015; U; en) Presto/2.9.201 Version/11.50

So "look" in the p_web._UserAgent property, and set the p_web.mobile property accordingly.

Cheers

Rob



Pages: 1 [2] 3 4