本文整理汇总了PHP中Grid::GetExportColumns方法的典型用法代码示例。如果您正苦于以下问题:PHP Grid::GetExportColumns方法的具体用法?PHP Grid::GetExportColumns怎么用?PHP Grid::GetExportColumns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Grid
的用法示例。
在下文中一共展示了Grid::GetExportColumns方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$HeaderCaptions = array();
$Grid->GetDataset()->Open();
foreach ($Grid->GetExportColumns() as $Column) {
$HeaderCaptions[] = $Column->GetCaption();
}
while ($Grid->GetDataset()->Next()) {
$rowValues = $Grid->GetDataset()->GetCurrentFieldValues();
$Row = array();
foreach ($Grid->GetExportColumns() as $Column) {
$Row[] = htmlspecialchars($this->RenderViewColumn($Column, $rowValues));
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/csv_grid.tpl', array('Grid' => $Grid), array('HeaderCaptions' => $HeaderCaptions, 'Rows' => $Rows));
}
示例2: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$HeaderCaptions = array();
$Grid->GetDataset()->Open();
foreach ($Grid->GetExportColumns() as $Column) {
$HeaderCaptions[] = $Column->GetCaption();
}
while ($Grid->GetDataset()->Next()) {
$rowValues = $Grid->GetDataset()->GetCurrentFieldValues();
$Row = array();
foreach ($Grid->GetExportColumns() as $Column) {
$Row[] = StringUtils::EscapeString($this->RenderViewColumn($Column, $rowValues), $Column->GetGrid()->GetPage()->GetContentEncoding());
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/csv_grid.tpl', array('Grid' => $Grid), array('HeaderCaptions' => $HeaderCaptions, 'Rows' => $Rows));
}
示例3: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$HeaderCaptions = array();
$Grid->GetDataset()->Open();
foreach ($Grid->GetExportColumns() as $Column) {
$HeaderCaptions[] = $this->PrepareForExcel($Column->GetCaption());
}
while ($Grid->GetDataset()->Next()) {
$rowValues = $Grid->GetDataset()->GetCurrentFieldValues();
$Row = array();
foreach ($Grid->GetExportColumns() as $Column) {
$cell['Value'] = $this->PrepareForExcel($this->RenderViewColumn($Column, $rowValues));
$cell['Align'] = $Column->GetAlign();
$Row[] = $cell;
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/excel_grid.tpl', array('Grid' => $Grid), array('HeaderCaptions' => $HeaderCaptions, 'Rows' => $Rows));
}
示例4: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$Grid->GetDataset()->Open();
while ($Grid->GetDataset()->Next()) {
$rowValues = $Grid->GetDataset()->GetCurrentFieldValues();
$Row = array();
foreach ($Grid->GetExportColumns() as $column) {
$Row[$this->PrepareColumnCaptionForXml($column->GetCaption())] = $this->RenderViewColumn($column, $rowValues);
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/xml_grid.tpl', array('Grid' => $Grid), array('Rows' => $Rows, 'TableName' => $Grid->GetPage()->GetCaption()));
}
示例5: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$HeaderCaptions = array();
$Grid->GetDataset()->Open();
foreach ($Grid->GetExportColumns() as $Column) {
$HeaderCaptions[] = $Column->GetCaption();
}
while ($Grid->GetDataset()->Next()) {
$Row = array();
$rowValues = $Grid->GetDataset()->GetFieldValues();
$cellStyles = $this->GetStylesForColumn($Grid, $rowValues);
foreach ($Grid->GetExportColumns() as $column) {
$columnName = $Grid->GetColumnName($column);
$cell['Value'] = $this->RenderViewColumn($column, $rowValues);
$cell['Align'] = $column->GetAlign();
$cellStyle = new StyleBuilder();
$cellStyle->Add('width', $column->GetFixedWidth());
if (!$column->GetWordWrap()) {
$cellStyle->Add('white-space', 'nowrap');
}
$cellStyle->AddStyleString(ArrayUtils::GetArrayValueDef($cellStyles, $columnName));
$cell['Style'] = $cellStyle->GetStyleString();
$Row[] = $cell;
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/pdf_grid.tpl', array(), array('TableHeader' => $this->CreateTableHeaderData($Grid), 'Rows' => $Rows));
}
示例6: RenderGrid
function RenderGrid(Grid $Grid)
{
/*
$Rows = array();
$RowPrimaryKeys = array();
$AfterRows = array();
$rowCssStyles = array();
$rowColumnsChars = array();
$rowColumnsCssStyles = array();
$bandHeadColumnsStyles = array();
$columnsNames = array();
$exportColumns = $Grid->GetExportColumns();
foreach($exportColumns as $Column)
{
$headColumnsStyleBuilder = new StyleBuilder();
if ($Column->GetFixedWidth() != null)
$headColumnsStyleBuilder->Add('width', $Column->GetFixedWidth());
$headColumnsStyles[] = $headColumnsStyleBuilder->GetStyleString();
$columnsNames[] = $Column->GetName();
}
$Grid->GetDataset()->Open();
$recordCount = 0;
while($Grid->GetDataset()->Next())
{
$show = true;
$Grid->BeforeShowRecord->Fire(array(&$show));
if (!$show)
continue;
$Row = array();
$AfterRowControls = '';
$rowValues = $Grid->GetDataset()->GetFieldValues();
$rowCssStyle = '';
$cellCssStyles = array();
$Grid->OnCustomDrawCell->Fire(array($rowValues, &$cellCssStyles, &$rowCssStyle));
$cellCssStyles_Simple = $this->GetStylesForColumn($Grid, $rowValues);
$cellCssStyles = array_merge($cellCssStyles_Simple, $cellCssStyles);
$currentRowColumnsCssStyles = array();
$columnsChars = array();
for($i = 0; $i < count($bands); $i++)
{
$band = $bands[$i];
foreach($band->GetColumns() as $Column)
{
$columnName = $Grid->GetDataset()->IsLookupField($Column->GetName()) ?
$Grid->GetDataset()->IsLookupFieldNameByDisplayFieldName($Column->GetName()) :
$Column->GetName();
if (array_key_exists($columnName, $cellCssStyles))
{
$styleBuilder = new StyleBuilder();
$styleBuilder->AddStyleString($rowCssStyle);
$styleBuilder->AddStyleString($cellCssStyles[$columnName]);
$currentRowColumnsCssStyles[] = $styleBuilder->GetStyleString();
}
else
$currentRowColumnsCssStyles[] = $rowCssStyle;
if ($Column->GetFixedWidth() != null)
$currentRowColumnsCssStyles[count($currentRowColumnsCssStyles) - 1] .= sprintf('width: %s;', $Column->GetFixedWidth());
if (!$Column->GetWordWrap())
$currentRowColumnsCssStyles[count($currentRowColumnsCssStyles) - 1] .= sprintf('white-space: nowrap;', $Column->GetFixedWidth());
$columnRenderResult = '';
$customRenderColumnHandled = false;
$Grid->OnCustomRenderColumn->Fire(array($columnName, $Column->GetData(), $rowValues, &$columnRenderResult, &$customRenderColumnHandled));
$columnRenderResult = $customRenderColumnHandled ? $Grid->GetPage()->RenderText($columnRenderResult) : $this->Render($Column);
$Row[] = $columnRenderResult;
$columnsChars[] = ($Column->IsDataColumn() ? 'data' : 'misc');
$afterRow = $Column->GetAfterRowControl();
if (isset($afterRow))
$AfterRowControls .= $this->Render($afterRow);
}
if ($i < (count($bands) - 1))
$currentRowColumnsCssStyles[count($currentRowColumnsCssStyles) - 1] .= ($Grid->GetPage()->GetPageDirection() == 'rtl' ? 'border-left: ' : 'border-right: ' ). 'solid 2px' . ' #000000;';
}
$recordCount++;
if ($Grid->GetAllowDeleteSelected())
$RowPrimaryKeys[] = $Grid->GetDataset()->GetPrimaryKeyValues();
$Rows[] = $Row;
$AfterRows[] = $AfterRowControls;
$rowCssStyles[] = $rowCssStyle;
$rowColumnsCssStyles[] = $currentRowColumnsCssStyles;
$rowColumnsChars[] = $columnsChars;
}
*/
$Rows = array();
//.........这里部分代码省略.........