we can i make the PDF Export icon in the Listview?
I will klick on the buttom and the pdf opens in browser…
German:
Moin
wie kann man das machen, das man die PDF Export funktion in der Listenansicht hat, wo man bearbeiten und löschen kann?
Wäre nice wenn mir da jemand mal nen tip gibt
Example,
on : Table-Specific → List Page → ListOptions_Load, ADD:
function ListOptions_Load() {
// Example:
//$opt = &$this->ListOptions->Add(“new”);
//$opt->Header = “xxx”;
//$opt->OnLeft = TRUE; // Link on left
//$opt->MoveTo(0); // Move to first column
$item = &$this->ListOptions->add(“new”);
$item->Header = “MyCaption”; // Set the column header (for List page)
$item->OnLeft = TRUE; // Link on left
$item->moveTo(6); // Move the column to the specified index
}
on : Table-Specific → List Page → ListOptions_Rendered, ADD: