Это мой QDataGrid
$this->content = new QDataGrid($this, 'Dashboard');
$this->dtgContent->UseAjax = true;
$this->dtgContent->ShowFilter = true;
$this->dtgContent->RowActionParameterHtml = '<?= $_ITEM->FileNum ?>';
$this->dtgContent->SetDataBinder('BindDataGrid_Content', $this);
$this->dtgContent->Paginator = new QPaginator($this->dtgContent);
$this->dtgContent->ItemsPerPage = 15;
$this->dtgContent->SortColumnIndex = 5;
$this->dtgContent->SortDirection = true;
Затем я создаю 2 QDataGridColumns
$col = new QDataGridColumn('First', '<?= $_CONTROL->ParentControl->renderFirst($_ITEM) ?>');
$col->HtmlEntities = false;
$col->OrderByClause = QQ::OrderBy(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Vin);
$col->ReverseOrderByClause = QQ::OrderBy(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Vin, false);
$col->Filter = QQ::Like(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Vin, null);
$col->FilterType = QFilterType::TextFilter;
$col->FilterPrefix = $col->FilterPostfix = '%';
$col->Width = 170;
$this->dtgContent->AddColumn($col);
$col = new QDataGridColumn('Year', '<?= $_ITEM->CfgfilevehicleAsFileNum->VehicleIdObject->Year ?>');
$col->FilterType = QFilterType::TextFilter;
$col->Filter = QQ::Like(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Year, null);
$col->FilterPostfix = $col->FilterPrefix = '%';
$col->OrderByClause = QQ::OrderBy(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Year);
$col->ReverseOrderByClause = QQ::OrderBy(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Year, false);
$col->Width = 50;
$this->dtgContent->AddColumn($col);
При обновлении страницы, как я могу автоматически навести курсор на текстовое поле «Первый».
<script>
$( "#target" ).focus();
</script>
В QCubed метод Form_Create класса QForm выполняется во время обновления страницы. (Form_Run выполняется как при обновлении, так и при вызовах ajax).
Похоже, вы используете более старую версию 2 QCubed, поэтому вы можете сделать это в своей функции Form_Create после определения таблицы данных и столбцов:
$filterId = 'ctl' . $this->dtgContent->ControlId . 'flt0';
$this->GetControl($filterId)->Focus();
$ filterId должен быть идентификатором javascript поля First. Проверьте дважды, посмотрев на HTML. $ это объект формы.
Это можно легко сделать так,
просто поменяй имя col
в col1
$col1 = new QDataGridColumn('First', '<?= $_CONTROL->ParentControl->renderFirst($_ITEM) ?>');
$col1->HtmlEntities = false;
$col1->OrderByClause = QQ::OrderBy(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Vin);
$col1->ReverseOrderByClause = QQ::OrderBy(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Vin, false);
$col1->Filter = QQ::Like(QQN::Appfile()->CfgfilevehicleAsFileNum->VehicleIdObject->Vin, null);
$col1->FilterType = QFilterType::TextFilter;
$col1->FilterPrefix = $col->FilterPostfix = '%';
$col1->Width = 170;
$this->dtgContent->AddColumn($col1);
затем,
$ctrFilter = $this->dtgContent->GetFilterControl($col1);
$ctrFilter->Focus();