Hi,
ich versuche gerade eine Liste für ein Modul „vor auszufüllen“ … hierfür habe ich eine Liste erzeugt, Werte eingetragen und wolle diese dann einfach als JSON bei Create einfügen.
Leider bekomme ich immer wieder den Fehler "Parse error: syntax error, unexpected ‚ProfileName‘ (T_STRING), expecting ‚)‘ "
Im Create steht:
$this->RegisterPropertyString("Profiles2Monitor", "["ProfileName":"~Battery","ProfileValue":"true"]");
In der Form
"columns": [
{
"caption": "Profile Name",
"name": "ProfileName",
"width": "150",
"add": 0,
"edit": {
"type": "ValidationTextBox"
}
},
{
"caption": "Profile Value",
"name": "ProfileValue",
"width": "150",
"add": 0,
"edit": {
"type": "ValidationTextBox"
}
}
Was mache ich beim Standardwert falsch?