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

Pages: 1 2 3 [4] 5 6 ... 126
46
Web Server - Ask For Help / Re: Mssql Driver options
« on: March 16, 2024, 06:24:38 AM »
/BUSYHANDLING=2 /LOGONSCREEN=FALSE
should be enought, at least if you use the MsSql driver
Regards

47
Web Server - Ask For Help / Re: Mixing Small screens in Web App
« on: February 28, 2024, 01:14:03 PM »
cool !! share it !! please !!

48
Web Server - Ask For Help / Re: New API troubles
« on: February 20, 2024, 04:02:26 AM »
Hi jking, some ideas...

The code seams ok.

-Are you logged in? from your image you need basic authentication
-Did you add trace lines to see if Email has value?

49
Web Server - Ask For Help / Re: Email from browse menu button
« on: January 26, 2024, 04:52:48 AM »
Hi Niels,
If you do not need to enter any data to send it, call a NetWebSource proc using the menu item and inside the NetWebSource call the email send proc, normally a claron proc, the same you use in a desktop app.
Hope this helps

50
Poul, meantime you can comment out the display:none line in the css.
Attached goes two imagen of the css involved.
1- when you inspect the header row, detect the culprit, click on the .css file
2- now you can see the css code involved
Hope this helps
Cheers

51
Bruce,
What hes trying to say is that when you change the browser from a desktop to a mobile one, the "browse headers" disapears and the "colum headers" appears in the data row.
Then you cant click on a column header to sort and set the locator.
Ive just compiled the Maps example and try it with the Accidents browse.
Pics attached
The first two pics are using Grid or Flex and the last one is using Table.
None of them are showing the browse headers

52
I would use somethng like this in the HideIf or DiableIf of each control:

ex:
choose(  INSTRING( '.XLS', UPPER( p_web.GetSessionValue('MSagH:SKStype') ), 1, 1)   ,true, false )

but if your code is working...

53
I would use somethng like this in the HideIf or DiableIf of each control:

ex:
choose(  INSTRING( '.XLS', UPPER( p_web.GetSessionValue('MSagH:SKStype') ), 1, 1)   ,true, false )

54
Web Server - Ask For Help / Re: Add class to header on popup form
« on: January 12, 2024, 05:41:07 AM »
In the Form, search for: CloseButton and add the following line to change its title:

p_web.SetOption(loc:options,'closeText','xxx')

Then use:

p_web.script('$("[title='xxx']").addClass("yourclass");')

To add the class.

Hope it helps

55
Web Server - Ask For Help / Re: Add class to header on popup form
« on: January 12, 2024, 05:11:03 AM »
Try this:

button.ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close {
    visibility: hidden;
}

56
Why not set this in the fields/buttons itself?

57
Priming ?

58
Web Server - Ask For Help / Re: Change save button color in a form
« on: January 03, 2024, 05:12:59 AM »
Hector,
When in the form, press F12, inspect the button, change it css class to your colour, copy the rule and add it to your custom.css
Regards

59
Hi Richard,

In all the code you use in the goto button the 3er parameter is the name of the waypoint, by example:

p_web.ntMap('GeneralMap','updateMarker','NewWp', p_web.GetLatLng(p_web.GetSessionValue('gm:Latitude')) , p_web.GetLatLng(p_web.GetSessionValue('gm:Longitude')) , p_web.WrapOptions(loc:options) , p_web.jsok('My Place', Net:HtmlOk*0+Net:UnsafeHtmlOk*0) , '1')

Then, in your loop you can name each waypoint and achieve what you need.

60
Web Server - Ask For Help / Re: Compile error in NetMaps example
« on: December 26, 2023, 07:34:10 AM »
I could make it work!

Add this line to update the marker instead of deleting it (still impossible) and insert it again...

after my last line add

p_web.ntMap('GeneralMap','updateMarker','NewWp', p_web.GetLatLng(p_web.GetSessionValue('gm:Latitude')) , p_web.GetLatLng(p_web.GetSessionValue('gm:Longitude')) , p_web.WrapOptions(loc:options) , p_web.jsok('My Place', Net:HtmlOk*0+Net:UnsafeHtmlOk*0) , '1')

and it will do what you need.

Pages: 1 2 3 [4] 5 6 ... 126