public function __construct($fieldName, $caption, $dataset, $orderable = true)
 {
     parent::__construct($fieldName, $caption, $dataset, $orderable);
     $this->maxLength = null;
     $this->replaceLFByBR = false;
     $this->escapeHTMLSpecialChars = false;
     $this->fullTextWindowHandlerName = null;
 }
Пример #2
0
 public final function RenderCustomDatasetFieldViewColumn(CustomDatasetFieldViewColumn $column)
 {
     $value = $column->GetValue();
     if (!isset($value)) {
         $this->result = $this->GetNullValuePresentation($column);
     } else {
         $this->result = $value;
     }
 }
 public function GetGrid()
 {
     return $this->innerField->GetGrid();
 }
 public function __construct($fieldName, $caption, $dataset, $orderable = true)
 {
     parent::__construct($fieldName, $caption, $dataset, $orderable);
     $this->dateTimeFormat = 'Y-m-d';
 }