neoTable 2.0 sample - Forum

Forum Navigation
You need to log in to create posts and topics.

neoTable 2.0 sample

Hello Luis,

Where is the code of the neotable 2.0 sample ? ( link found in webhelp visualneo.com ) - https://visualneo.com/tutorials/neotabledb

Regards,

...When I said "code" I meant "source files"...

@cdy44-2 I think it should be here:

\Documents\VisualNeoWeb\Sample Apps\neoPhpSamples

 

Thank you @luishp

I was stupidly looking for "neotable 2.00".... excuse me.
I deeply examine the example and I have a question :

In the subroutine "getUserData", there is "ParseJSON "[loginData]" [userData]", but I don't see where the [loginData] is coming from...

Best regards,

 

@cdy44-2 the button to login has this code:

neoPhpUserLogin "[user]" "[password]" "getUserData"

It calls getUserData as a callback subroutine and the login data is sent to that subroutine.

If you examine the subroutine you will see it accepts a Parameter (see the tab at the bottom when you are editing the subroutine code)
The parameter name is [loginData], and that's the place where the login data is retrieved and stored.

I hope it helps.

 

CDY@44 has reacted to this post.
CDY@44

Thank you @luishp !