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 - mriffey

Pages: 1 [2] 3
16
Web Server - Ask For Help / Re: 7.04 Site Feedback
« on: February 05, 2013, 08:03:21 AM »
Thanks for the update, Bruce. Transparency, what a concept:)

17
Web Server - Ask For Help / Re: Upgrade NT7 to NT701
« on: January 02, 2013, 08:18:40 AM »
Deleting the web folder and replacing it resolved it. A simple sync with Beyond Compare wasnt enough, for some reason.

Mark

18
Web Server - Ask For Help / Re: Upgrade NT7 to NT701
« on: December 31, 2012, 12:00:29 PM »
Still getting this message on 7.02. Beyond Compare says the app's web folder and \accessory\libsrc\netweb\web are in sync.

Mark

19
Web Server - Ask For Help / Re: NT5 and login form
« on: January 18, 2010, 12:07:00 PM »
I see the same thing here on NT5 PR7.

Mark

20
Web Server - Ask For Help / Re: Nice buttons
« on: December 08, 2009, 01:26:38 PM »
Rene, google "css buttons". If you are using NT5, take a look at the themeroller support via jquery in nt5.

21
Web Server - Ask For Help / Re: jQuery and NTWS
« on: September 17, 2009, 05:21:06 AM »
Unfortunately waiting (while I will have to do so regardless<g>) is not an option and the noConflict (etc) steps have already been attempted but to no avail.

Mark

22
Web Server - Ask For Help / jQuery and NTWS
« on: September 16, 2009, 03:58:59 PM »
Im trying to implement an accordion menu from DynamicDrive in a NTWS site. It uses jQuery and needless to say, there is a conflict somewhere.

Ive tried all the jQuery recommended strategies to eliminate the conflict (.noConflict, hard coding, etc), but none of these things offers progress.

Any ideas would be welcome.

Mark

23
Web Server - Share Knowledge / Re: Pre-Compressing Static Files
« on: December 15, 2007, 11:28:53 AM »
Bruce,

Doing some perf testing for BobP, we gzipped all the .htm files. You noted in this post that the files referenced by <!...Net: tags would not be parsed.

HOWEVER, while they arent parsed, they are LOADED.

I tried this locally and got a bunch of garbage on the screens where the .htm.gz files are.

Screenshot is attached.

Mark

[attachment deleted by admin]

24
Web Server - Share Knowledge / Re: Calling a Browse with Parameters
« on: September 17, 2007, 01:09:40 PM »
Bruce,

How exactly does the webserver expect to get the browse URL changed in 2 steps?

When I add &Locator1browsename=value&refresh=locate to the URL via a form lookup URL, the URL still ends up containing &refresh=sort

MedicationSelList?refresh=locate&Locator1MedicationSelList=Bacitracin&file=MedMst&LookupField=ODT:MedNam&Tab=0&ForeignField=MED:MedNam&MedicationSelList&refresh=locate&Locator1MedicationSelList=Bacitracin_sort=&Refresh=sort&LookupFrom=LabelSetInfo&

This is part of the URL Im working with. It was created like this via the lookup URL on a form field:

'MedicationSelList&Locator1MedicationSelList=' & clip(variable) & '&refresh=locate'

There isnt "2 steps" to build a URL available on a lookup, so Im not how you intend for us to set the URL in 2 steps. What do you mean by that comment?

Mark


25
Web Server - Ask For Help / Re: Format Text
« on: August 30, 2007, 05:40:06 PM »
ValidateRecord routine. Because...see below:

Mark


ValidateInsert  Routine
  do ValidateRecord
  ! Start of "On Insert : Form ends : before disk write"
  ! [Priority 5000]

  ! End of "On Insert : Form ends : before disk write"

ValidateUpdate  Routine
  do ValidateRecord

26
Web Server - Ask For Help / Re: Lookup
« on: August 29, 2007, 10:23:42 AM »
One scenario where this becomes complex is when the table has a unique unchanging sysid that isnt displayed.

Perhaps the make of a vehicle is "Porsche" but the unique unchanging id for that table is a long. The form field is a long (perhaps hidden or read only or something) and the make text is displayed but unkeyable (maybe as a comment).

If the lookup button takes you to a browse where the list of makes is sorted by name:

PONTIAC
PORSCHE
RENAULT

The returned value should be the long that is associated with PORSCHE (or whatever) - likely, the long is a hot field for this reason.

How does this locator code work in this kind of circumstance? (one common to the win32 clarion world, of course)

Mark

27
Web Server - Ask For Help / Re: passing javascript values on forms
« on: August 17, 2007, 06:42:10 AM »
Thanks Alan. Unfortunately, I still cant get it to do anything to the field. Its like its getting lost during the replace. The only difference in what you and I had was that I didnt have the global threaded (it is now).

I put an alert(val); before the obj.value=val; line and it didnt display.

Then I put one after the toLowerCase and another after the if (!val) and neither one of THOSE displayed. I may just have to do this server-side, I guess.

Mark

28
Web Server - Ask For Help / passing javascript values on forms
« on: August 16, 2007, 05:21:33 PM »
Bruce,

The inline javascript Ive tried works fine, but for some reason, I cannot get the functions like the one Alan Cochran did (and others built like it) to work. It's like they don’t have access to this.value or something.

function toProperCase(s)
{
  return s.toLowerCase().replace(/^(.)|\s(.)/g,
          function($1) { return $1.toUpperCase(); });
}

This is one Bob found on the net (at http://www.codeproject.com/jscript/propercase.asp ) that works fine in a regular page, but I cannot get it to return a capitalized value - or ANY value for that matter.

At one point, I had it doing this, just to see if it would give me anything.

In the validation field in the Nt4 app for this field, it says 'toProperCase(this.value);'

function toProperCase(s)
{
  var txtstr = s;
  txtstr.toUpperCase();
  alert('after upper ' + txtstr);
  txtstr.toLowerCase();
  alert('after lower ' + txtstr);
  txtstr.toLowerCase().replace(/^(.)|\txtstr(.)/g,
          function($1) { return $1.toUpperCase(); });
  alert('after replace ' + txtstr);
  return txtstr;
}

When I type "firstname" in the field and press tab, the alerts produced these messages:
 after upper firstname
 after lower firstname
 after replace firstname

IE: none of the toUpperCase stuff ever took. Tested on FF 2.006 and IE7 on Vista. Same results.

Clearly I missing something. Got an idea what it might be?<g>

Mark

29
Web Server - Ask For Help / Re: Span prompt/value/comment
« on: August 16, 2007, 04:36:13 PM »
Ah. Ill try again and look closer this time:)

Thanks, Bruce.

Mark

30
Web Server - Ask For Help / Re: Bold Comments
« on: August 16, 2007, 04:33:07 PM »
if there is an all.css.gz, you need to delete that and restart the server. Bruce says it looks for a gz version first.

Mark

Pages: 1 [2] 3