Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - PLUR

1
Bugs / sqltext in controller for Custom View is missing DOUBLE QUOTES
Bug Report for
Variable $sqltext in Controller for Custom View is missing opening and closing  DOUBLE QUOTES.


<?php
/**
 * CustomViewTEST Page Controller
 * @category  Controller
 */
class CustomViewTESTController extends SecureController{
   /**
     * Custom Load Record Action
     * @return View
     */
   function index(){
      $db = $this->GetModel();
      $sqltext = "   select SQL_CALC_FOUND_ROWS  id, field1, fiel2 from table1   " ;

2
Bugs / Bug for Excel Export in Reports
Bug for button Excel Export in Reports

CAUSE:
Opening and closing TABLE tag is missing in file:
 assets\js\export-plugin\tableExport.js

Lines 148 and 150

SOLUTION:
excelFile += "</head>";
excelFile += "<body><table>";
excelFile += excel;
excelFile += "</table></body>";
excelFile += "</html>";