This topic is locked
[SOLVED]

 insert button message

8/2/2011 9:00:17 AM
PHPRunner General questions
ffrinai author

Hi,

is it possible to place the message displayed whith the insert button
ctrl.setMessage("Sending request to server...");

or

var message = result["txt"] + " !!!";

ctrl.setMessage(message);
at a specific row and col in the page?
may I use the $message variable ? If yes, how ?

Thanks

Fabio

C
cgphp 8/2/2011

In the "Client before" section:



$("tbody tr:nth-child(n) td:nth-child(n)").append("Your message here");



Where n is an integer starting from 1.