· 

Hervorheben einer Zeile im PHPRunner

Wenn man im PHPRunner eine Zeile hervorheben will, geht das über die Click Action. Grundlage ein Artikel auf der Xlinesoft Seite. So ungefähr funktioniert es:

Client before

params["CurrentRowId"] = row.record().closest('tr').attr('id');
var thisrowid = "#" + params["CurrentRowId"];
var thisrow = $(thisrowid);
thisrow.css('background', 'orange');

Server

$dummy = $_SESSION["CurrentRowId"];
if ($dummy == null)
{
        $result["LastRowId"] = "";
}
else
{
        $result["LastRowId"] = $_SESSION["CurrentRowId"];
}
// Save the current row id
$_SESSION["CurrentRowId"] = $params["CurrentRowId"];

CLIENT AFTER

var lastrowid = "#" + result["LastRowId"];
var lastrow = $(lastrowid);
lastrow.css('background', 'white');