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.


Topics - trent

Pages: 1 [2] 3
16
Web Server - Ask For Help / APNS
« on: April 09, 2014, 11:26:30 PM »
Hi Everyone,

Has anyone out there successfully sent push notifications to APNS using Nettalk? I've had a try but get stuck on the binary part: https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW1

Wish it was as easy as Google...

Any help would be appreciated.

Regards,
Trent

17
Web Server - Ask For Help / NT 7.37 Mobile Mode Issues
« on: March 10, 2014, 03:13:39 PM »
Hi Bruce,

Found some issues in mobile mode:

1) jQuery icons are not showing on rows in browses. Please see attached images: 'DesktopSiteBrowse.png', 'MobileSiteBrowse.png' and 'ButtonOptions.png'.
2) Is it possible to include a 'blur' option on forms and browses so that the first field is not selected on mobile devices? Usually the first field on our forms and browses are a drop list which the user has to choose an option from before being able to do anything else. This can be confusing and annoying for the user.
3) On iPhones and iPads the Tooltips seem to be interfering with some controls, i.e. buttons, strings, text and drops need to be pressed twice to use when they should be presed once.
4) The 'File Upload' is showing the 'Start', 'Clear' and 'Cancel' buttons when the 'Start upload when file selected' option is enabled. The butttons do not appear in desktop mode. Please see attached image: 'MobileSite-FileUpload.png'.
5) The 'File Upload' will cancel the insertion of a new record.

Regards,
Trent

[attachment deleted by admin]

18
Web Server - Ask For Help / Browse Locator Issues
« on: March 05, 2014, 08:49:11 PM »
Hi Bruce,

I've found a couple of Locator issues in Nettalk 7.35:

1) The 'Locator' on a browse does not clear when you navigate to a different page and then to the browse again.
2) The 'Locator' position/navigator buttons do not mopve down if the browse is empty to start and 'Immediate' locating is enabled. Please see attached image.

Regards,
Trent

[attachment deleted by admin]

19
Web Server - Ask For Help / AutoComplete Not Working
« on: February 16, 2014, 06:10:45 PM »
Hi Bruce,

AutoComplete isn't working as expected in NT7.31 in C8 and C9. I've updated web67.app (C9):

1) Update Software > Download: Set to use the 'Websites' table for AutoComplete - AutoComplete doesn't show any values from the Websites table.
2) Add a record into 'More Assignments', something like: Set: LOC:Rating = WEB:Rating. There is a trace statement that should show the rating number in debugview but the assignment isn't made.
3) Add a 'Description' value, try: clip(WEB:Site) &' ('& WEB:SysID &')'. The app does not build in C9. A web app with the same sort of 'Description' value will build in C8 without any errors.
4) Add a different 'Description' value, try: WEB:SysID. The Description does not show.

Maybe I'm doing something wrong?

Regards,
Trent

[attachment deleted by admin]

20
Web Server - Ask For Help / SQL Sleeping Connections Part 2
« on: February 03, 2014, 07:09:14 PM »
Hi Debra,

I tried creating the v_ActiveTransactions view but Management Studio returns an error: Incorrect syntax near 's_ec' on line 31

Line 31 = sys.dm_exec_sql_text ([s_ec].[most_recent_sql_handle]) AS [s_est]

Now I can't see page 2 of the first topic - are you able to paste the second create view script in this topic please?

Also I added the 'Performance' tab to my WebServer months ago and it has never worked - the values are always zero. Has anyone else encountered this?

Regards,
Trent

21
Web Server - Ask For Help / GetValue of Multiple Checkbox Array
« on: November 12, 2013, 03:18:36 PM »
Hi Everyone,

I have an HTML Form that is built by an HTML builder. The Form can have multiple checkboxes in a single fieldset that I need to get the values of. Here is an example of 3x checkboxes in a fieldset:

<input type="checkbox" value="answer 1" id="LMQM9" name="LMQ7[]">
<input type="checkbox" value="answer 2" id="LMQM10" name="LMQ7[]">
<input type="checkbox" value="answer 3" id="LMQM11" name="LMQ7[]">

How can I get the values of the checked checkboxes in the LMQ7[] array similar to this in PHP:

<?php
if(!empty($_POST['LMQ7'])) {
    foreach($_POST['LMQ7'] as $check) {
            echo $check;
    }
}
?>

I have tried putting the values into a local queue but my debug shows the GetValue result is empty:

free(MultipleChoiceQ)
LOOP
  LOC:QuestMCAnswer = p_web.GetValue('LMQ'& LMQ:SysID)
  debug('LOC:QuestMCAnswer = '& clip(LOC:QuestMCAnswer))
  if errorcode() then break.
  if LOC:QuestMCAnswer = '' then break.
  MCQ:Answer = clip(LOC:QuestMCAnswer)
  add(MultipleChoiceQ)
end!loop

Regards,
Trent

22
Web Server - Ask For Help / Scroll To Top
« on: July 15, 2013, 10:55:00 PM »
Hi All,

Anyone know how to automatically scroll to the top of the page after loading a form? Is there a way to make every page do this?

I've tried placing this in a few places without any luck:

<script type="text/javascript">
    $(document).ready(function () {
        window.scrollTo(0,0);
    });
</script>

Regards,
Trent

23
Web Server - Ask For Help / URL On Save Not Working
« on: June 05, 2013, 08:12:19 PM »
Hi Bruce,

I have a Form that has a 'URL On Save' set to another Form. When I click Save on this Form the URL in the browser's address bar changes but the original Form re-loads - the correct 'URL On Save' Form does not load. If I click inside the address bar and press enter then the correct Form loads.

What could cause this and how do I fix it? Using Nettalk v6.51.

Thanks,
Trent

24
Web Server - Ask For Help / SQL Sleeping Connections
« on: May 02, 2013, 03:57:56 PM »
Hi All,

Our Nettalk Web Server seems to create a lot of SQL 'Sleeping Connections' which then causes our desktop and web apps to not load the tables tables that have these open connections. Is there any way to clear our or stop these sleeping connections so that the SQL Server Instance does not need to be restarted every few days?

Regards,
Trent

25
Web Server - Ask For Help / SSL Errorcode -66
« on: November 15, 2012, 03:07:46 PM »
Hi Everyone,

I'm receiving an errorcode (-66) when trying to initialize an SSL WebServer on a clients server. Does anyone know what this errorcode means?

Thanks,
Trent

26
Web Server - Ask For Help / Time Field Session Values
« on: June 03, 2012, 03:00:54 PM »
Hi Bruce,

There seems to be an issue with Time fields: if you set a Session Value from a Local Variable (Time) the value gets set but then lost when the save button is clicked. See attached app – Go to the memory form, add some times into the fields (with debug view open) and click the save button. You will see the debug output from the ‘Validate All’ embed shows the Session Values as 0.

Or maybe I am doing something wrong?

Thanks,
Trent

[attachment deleted by admin]

27
Web Server - Ask For Help / NetWebForm Validation
« on: May 22, 2012, 05:35:07 PM »
Hi Bruce,

When validating a NetWebForm in the ValidateUpdate embed, the alert popup appears but then the form does not re-load successfully, the page is blank. I have tried two different validations:

(this one is for the older PopupErrorMessage NetWebSource procedure)
if LOC:Report = 0
  loc:invalid = 'LOC:Report'
  p_web.SSV('ErrorMessage','This is the error message')
  p_web.SetValue('retry','ReportSelector')
end

and

if LOC:Report = 0
  loc:invalid = 'LOC:Report'
  loc:alert = 'This is the error message'
  p_web.SetValue('retry','ReportSelector')
end

Am I doing something wrong?

Regards,
Trent

28
Web Server - Ask For Help / Mobile Themeroller
« on: May 01, 2012, 02:22:29 PM »
Hi Everyone,

Does anyone have instructions on how to add a 'themerolled' mobile theme? Can I add the theme to a NetWebPage that has the 'menu' extension as I'm not using the menu extension in the PageHeaderTag procedure?

Regards,
Trent

29
Web Server - Ask For Help / Mobile Browse Buttons
« on: April 23, 2012, 05:44:35 PM »
Hi,

I have added 'Change' and 'Delete' buttons to a browse (exactly the same as Bruce did in the ClarionLive135 2011-11-18 NetTalk webinar at 1h24m) but these buttons do not show an image on the browse in desktop or mobile mode. What am I missing? Should these images automatically appear or do you have to set the image? It seems that in the webinar there are no images set yet they appear in the browse at runtime.

Regards,
Trent

30
Web Server - Ask For Help / GPF Errors
« on: April 22, 2012, 04:16:13 PM »
Hi Everyone,

I am converting our win32 app reports into WebServer and am receiving GPF errors only on certain builds when nothing has changed. The process is:

1. Select drill-down data on a NetWebForm.
2. User presses Save button which does validation of the Form.
3. The validation calls a Window(ABC) procedure to do a count to see if there are records to report on (if there are none then validation fails).
4. If the count returns records then user is taken to another NetWebForm which has a Print(Other) button.
4. User presses Print button and Report(ABC) procedure is called.

The GPF error happens at step 3. I have a debug (trace) statement just before the call to the Window(ABC) procedure to do the count and debug statement in the Init > Enter Procedure Scope embed of the Window(ABC) procedure. On the builds that I get the GPF I see the debug before the count procedure starts and then the GPF occurs.

To fix this I open any embed on the Window(ABC) procedure, click save and close without changing any code at all, then re-build WebServer and the GPF does not occur. On the next build, if I do not do this, then the GPF error occurs again.

Anyone know why this is happening?

Regards,
Trent

Pages: 1 [2] 3