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 - Robert Iliuta

Pages: [1] 2 3 ... 9
1
Web Server - Ask For Help / Webcam(79) example, give error with iPhone
« on: April 21, 2024, 11:44:50 AM »
Hallo,

I compiled (NT14) example Webcam79 and when I try to open QR Code menu I got "Error in site JavaScript".
On my laptop (Win11) it's working fine the camera.
It not support iPhone? Safari? ...

Thank you for any help.
Robert

2
Web Server - Ask For Help / Long page will always open at bottom
« on: April 16, 2019, 12:28:58 AM »
Hallo!

I have a browse where I need to show all records (around 30).
Every time I open the page it goes to the bottom. In the bottom there is no button or any other element to get focus...

Why it open at the bottom?
Is this a bug? or I need to do some configuration settings?

Thank you!
Robert

3
Web Server - Ask For Help / Link in popup form doesn't work
« on: April 15, 2019, 03:37:21 AM »
Hallo Bruce!

I have a link where I download a PDF file.
In a browse works when I open the Browse but not when I press next page. (I need to reload the page)
In a popup form it doesn't work at all. The popup form will not open.
This is the example link: <a href="#" download>test download link</a>

Console said: XML Parsing Error: not well-formed
xHTML safe/unsafe was checked. I put also the code on XHTML tab.

What could be the reason?

Thank you!
Robert

4
Web Server - Ask For Help / Turn ON/OF Focus on a form
« on: April 10, 2019, 02:57:15 AM »
Hallo!

I have a memory form with some text and 5 buttons.
I uncheck the Auto Focus option in Advanced tab of the form.
When I open the form the first button has focus. After I press 1st button the focus go to second button and so on...
Is this a bug or I forgot something to do here...
How can I stop focus for this form?

Thank you!
Robert

5
Hallo!


I have a filed in a form with picture @n6.2. This field is a lookup.
When I open the form it will show 0.00. Whatever I do (prime empty, change picture with a string...) it will always show 0.00 ... instead of PlaheHolder or empty field.
I need to show empty because 0.00 it's a choice that user can select.

It's a bug ? or what can I do to show a PlaceHolder or empty field?

Thank you!
Robert

6
Web Server - Ask For Help / Get Geolocation
« on: March 26, 2019, 02:45:28 AM »
Hallo!

I need to get the Geolocation (Lat & Lon)
Something like in example: https://www.w3schools.com/html/tryit.asp?filename=tryhtml5_geolocation
When I push a button I want to insert Lat & Lon. (this will be done from a mobile device)

What is a good and smart way to do this?

Thank you!
Robert

7
Web Server - Ask For Help / Open calendar on click instead of press button
« on: February 19, 2019, 06:58:47 AM »
Hallo!

I would like to open the calendar (in a data field) when I click on the field instead of press button.
How can I do that?

Thank you!
Robert

8
Web Server - Ask For Help / How to set tabs vertically?
« on: February 18, 2019, 03:34:34 AM »
Hallo!


In a memory form, how can I set tabs to show vertically?
https://jqueryui.com/tabs/#vertical

Thank you!
Robert


9
Web Server - Ask For Help / Refresh browse row when I "Cancel" popup form
« on: October 09, 2018, 02:32:29 AM »
Hallo!

I have an invoice popup form with a browse "Invoice Details".
Sometimes client open the form in change mode, delete some records from "Invoice Details" browse and then Close the popup form.
The invoice browse will not refresh with the current total. (Total calculate when press cancel btn but not reflect on browse)

How can I force the browse to refresh when I close the popup form?

*If he press Save btn the browse will refresh.
What is the code to refresh the browse when I press Save btn? :-)

Thank you!
Robert

10
Hallo!


I would like to implement a small drop menu on my Browse instead of adding buttons and when I press a link to trigger a button for different actions.
I like this example: https://www.w3schools.com/css/css_dropdowns.asp

My idea is:
1.Add some buttons with my code that I want.
2.Hide this buttons
3.Create the drop menu like in the above example
4.When I press the link1 I would like to trigger the button1 , link 2 > button2, .... and so on.

I found some code on internet that works for the first row, but not for the rest...
Maybe I omitted something very easy to do here... I think I need the correct embed to put code maybe...

Also to trigger a button you need the ID. The ID is changed every time the browse refresh.
(I did not find the parameter that return the ID and instead I parse the packet and extract the ID...)
What is the best method to get the ID of a button?

ref: https://www.quora.com/How-do-I-trigger-a-click-on-a-link-using-jQuery
This is the code I test: https://jsfiddle.net/cLd4ecz8/1/


Thank you for any help/suggestions!
Robert

11
Web Server - Ask For Help / Show euro symbol in form/browse
« on: June 19, 2018, 11:34:34 PM »
Hallo!


In dct the field is set as  DECIMAL(10,2) - @N-14.2~ ?~
In browse the value show ok (ex: 150.00 ?) but in form no. See attached image.
How can I make to show ok in form?

Also what is the best way to change this at run time from euro to usd?


Thank you!
Robert

12
Web Server - Ask For Help / Can we GET info from google calendar?
« on: January 24, 2018, 03:42:10 AM »
Hallo!

With the of NetTalk10 can we GET info from google calendar?
I have a client that using google calendar and want to sync events with my app.

It's hard to do this?


Thank you for any suggestions,
Robert

13
Hallo!

How can I exclude runtime columns when I try to export browse to xml?

Thank you,
Robert

14
Web Server - Ask For Help / 2 browse in a form on the same line
« on: December 18, 2017, 09:03:08 AM »
Hallo!

In NT9 I can put 2 browse on the same line in a form.
Not in NT10. Is there a way to have two browse on the same line?

Thank you,
Robert

15
Web Server - Ask For Help / SetSessionValue will rounds the results
« on: August 09, 2017, 01:31:27 AM »
Hallo!


I discovered:

p_web.SSV('PEN:Zecime', (p_web.GSV('PEN:PensiaBaza')*10)/100)

is not the same with this

PEN:Zecime = (p_web.GSV('PEN:PensiaBaza')*10)/100

Example:

PEN:PensiaBaza = 1786

1.The results of first code will be 179
2.The results of second code will be 178

Data type of PEN:PensiaBaza and PEN:Zecime is Long @n_10

Why SetSessionValue calculate this way and rounds the results? Is this a bug?


Thank you!
Robert

Pages: [1] 2 3 ... 9