public function __construct($fieldName, $caption, $dataset, $linkInnerHtml = 'download')
 {
     parent::__construct($caption);
     $this->fieldName = $fieldName;
     $this->dataset = $dataset;
     $this->linkInnerHtml = $linkInnerHtml;
 }
 public function __construct($fieldName, $caption, $dataset, $hintTemplate)
 {
     parent::__construct($caption);
     $this->fieldName = $fieldName;
     $this->dataset = $dataset;
     $this->hintTemplate = $hintTemplate;
     $this->sourcePrefix = '';
     $this->sourceSuffix = '';
 }
 public function __construct($fieldName, $caption, $dataset, $downloadTextTemplate, Captions $captions, $downloadLinkHintTemplate = '')
 {
     parent::__construct($caption);
     $this->fieldName = $fieldName;
     $this->dataset = $dataset;
     $this->downloadTextTemplate = $downloadTextTemplate;
     $this->downloadLinkHintTemplate = $downloadLinkHintTemplate;
     $this->captions = $captions;
 }
 public function __construct($fieldName, $caption, $dataset, $enablePictureZoom = true, $handlerName)
 {
     parent::__construct($caption);
     $this->fieldName = $fieldName;
     $this->dataset = $dataset;
     $this->imageHintTemplate = null;
     $this->enablePictureZoom = $enablePictureZoom;
     $this->handlerName = $handlerName;
 }
 public function __construct($fieldName, $caption, $dataset, $orderable = true)
 {
     parent::__construct($caption);
     $this->BeforeColumnRender = new Event();
     //
     $this->fieldName = $fieldName;
     $this->dataset = $dataset;
     $this->orderable = $orderable;
     $this->lookupDataset = null;
     $this->lookupHandlerName = null;
 }
 public function __construct($masterKeyFields, $name, $separatePageHandlerName, $inlinePageHandlerName, Dataset $dataset, $caption, $tabCaption)
 {
     parent::__construct($caption);
     $this->masterKeyFields = $masterKeyFields;
     $this->name = $name;
     $this->separatePageHandlerName = $separatePageHandlerName;
     $this->inlinePageHandlerName = $inlinePageHandlerName;
     $this->dataset = $dataset;
     $this->frameRandomNumber = Random::GetIntRandom();
     $this->dataset->OnNextRecord->AddListener('NextRecordHandler', $this);
     $this->tabCaption = $tabCaption;
 }
 public function __construct($innerField)
 {
     parent::__construct('');
     $this->innerField = $innerField;
     $this->Bold = null;
 }
 function __construct($caption, $dataset, $editButtonText, $cancelButtonText, $commitButtonText, $useImages = true)
 {
     parent::__construct($caption);
     $this->dataset = $dataset;
     $this->editButtonText = $editButtonText;
     $this->cancelButtonText = $cancelButtonText;
     $this->commitButtonText = $commitButtonText;
     $this->useImages = $useImages;
     $this->OnShow = new Event();
 }