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 ... 123
1
Hi, try using...

p_web.Script( p_web.WindowOpen( 'YourPage') )

regards

2
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

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

4
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?

5
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

6
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

7
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

8
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...

9
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 )

10
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

11
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;
}

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

13
Priming ?

14
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

15
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.

Pages: [1] 2 3 ... 123