NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Thys on May 10, 2011, 11:19:05 PM

Title: Message to user
Post by: Thys on May 10, 2011, 11:19:05 PM
I need to display a message to a user after successfully creating a login. I want it to be a normal windows message and not some information on a web page. How do I do that?

Thys
Title: Re: Message to user
Post by: Robert Iliuta on May 10, 2011, 11:24:43 PM
Hallo ,

Try using:

loc:alert = 'Hallo! this is an alert!'

Regards,
Robert
Title: Re: Message to user
Post by: Thys on May 10, 2011, 11:29:22 PM
Robert,

It looks like that won't work - according to the manual: "Set if a field is invalid. Text will be sent to the browser for display as an error."

But I will try it anyway.
Thanks
Title: Re: Message to user
Post by: Stu on May 11, 2011, 01:59:07 AM
Thys,

I'd use p_web.jQuery(" .. in here put a call to jquery's popup") .. OR .. handcode in the javascript: alert("message");
Title: Re: Message to user
Post by: Bruce on May 11, 2011, 04:49:29 AM
Hi Thys,

I'm intrigued by this line;
"I want it to be a normal windows message and not some information on a web page."

Given that the browser could be on any OS - indeed on any device, the reference to a "windows message" is somewhat misleading I think.
I presume by "windows message" you mean you want a "popup dialog window"?
something like;

p_web.Script('alert("hello bruce");')

?

Cheers
Bruce

Title: Re: Message to user
Post by: jorgemir on May 11, 2011, 10:13:44 AM
How many wonderfull p_web.script methods there are? Until now, I'be seen two (reload and this one, alert). Will you reveal this valuable info in some doc? I'm unable at this very moment of unload the price of the nettalk book. Some time in the future I will, but for the moment would be very nice to have at least a list of the methods and implementation definition. Is that possible¿
Thanks
Jorge
Title: Re: Message to user
Post by: Mark Sarson on May 11, 2011, 11:41:48 AM
p_web.Script(...

This is just one method, what you put in it is up to you, the code inside the () is JavaScript, so you can put any JavaScript you like in there.

I hope this helps explain it better.

Cheers

Mark
Title: Re: Message to user
Post by: jorgemir on May 11, 2011, 01:39:10 PM
Ok. Thank. And where I can find this Javascript methods? I know nothing of javascript and I should start to learn as this is important.
Jorge
Title: Re: Message to user
Post by: Stu on May 11, 2011, 08:30:37 PM
Google is your friend.

http://www.google.com.au/search?sourceid=chrome&ie=UTF-8&q=javascript+methods#sclient=psy&num=10&hl=en&newwindow=1&biw=1920&bih=1019&source=hp&q=javascript+functions&aq=f&aqi=&aql=&oq=&pbx=1&fp=8bca8b81094b928f
Title: Re: Message to user
Post by: Bruce on May 11, 2011, 10:02:08 PM
Hi Jorge,

As Mark says the Script method allows you to embed JavaScript in the response. It works in both page-request, and Ajax (asyncronous request) mode.

So,
Alert('Hello Bruce');
Is a valid line of JavaScript.

To learn JavaScript just use the web. There are endless resources online.

cheers
Bruce
Title: Re: Message to user
Post by: Thys on May 11, 2011, 10:23:01 PM
Hi Bruce,

I was either a popup message ("windows message") to display the result, or a simple piece of text on a page to show that the action was completed successfully. Both are adequate for the purpose.

I agree that "windows message" is misleading - "popup message" might be better descriptive.

Thanks

Hi Thys,

I'm intrigued by this line;
"I want it to be a normal windows message and not some information on a web page."

Given that the browser could be on any OS - indeed on any device, the reference to a "windows message" is somewhat misleading I think.
I presume by "windows message" you mean you want a "popup dialog window"?
something like;

p_web.Script('alert("hello bruce");')

?

Cheers
Bruce


Title: Re: Message to user
Post by: Mark Sarson on May 12, 2011, 03:06:42 AM
Just one thing to note with regards to alert('xxxxxx') is that some browsers offer to not show those messages. I think Google Chrome is one of them.

Mark
Title: Re: Message to user
Post by: Robert Iliuta on April 22, 2012, 03:53:25 AM
Hallo Stu,

>p_web.jQuery(" .. in here put a call to jquery's popup") .
how can you popup a jquery message?
Can you post an example?

Thank you
Robert
Title: Re: Message to user
Post by: estadok on April 22, 2012, 09:44:32 PM
Hi Robert!

Try this http://www.abeautifulsite.net/blog/2008/12/jquery-alert-dialogs/
working, I checked
Title: Re: Message to user
Post by: Robert Iliuta on April 22, 2012, 10:19:42 PM
Hallo estadok,

downloaded yesterday but didn't implement. After your post get a time to implement.
In 2 min added to NetTalk and works perfect.

Thank you for your advise!
Regards,
Robert