Hi all,
I am a registered user of Phpmaker and i am using the latest release.i have a custom field in the database view called “Qty” .
what i want to do is this field (Qty) to appear as a text input field in the “list page”.could you please help me to do this.thanx
You can use Custom View Tag, see the topic Field Setup in the help file. Note: If you have to handle the input, you need to do it yourself, e.g. by server events.
Thank you,This is what i was able to understand from the help file, but this is not working.// Row Rendered event
function Row_Rendered() {
if ($this->PageID == “list” || $this->PageID == “view”) {
$this->Qty->ViewAttrs[“class”] = “input name=‘Qty’ id=‘Qty’”;
}
}Would appreciate you assistance
Thank you