Hi
I am trying to pass a value (Date) with help of prefix to instert is automatically into xxxadd.php page.
But it does not work.
I am using the following code with “Prefix”.
thanks a lot for the hint.
With the following it is working now.:
// Row Rendering event
function Row_Rendering() {
// Enter your code here
if(CurrentPageID() == “add”)
{
//Check the value from URL if any otherwise it will get NULL
if(isset($_GET[“Datum”]))
{
$this->Datum->CurrentValue = $_GET[“Datum”];
}