PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Structures_DataGrid::removeColumn | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Structures_DataGrid::removeColumn

Structures_DataGrid::removeColumn() – カラムを削除する

Synopsis

require_once 'Structures/DataGrid.php';

void Structures_DataGrid::removeColumn ( &$column , object $column )

Description

This package is not documented yet.

Parameter

&$column

object $column

Structures_DataGrid_Column オブジェクトへの参照。

Throws

例外はスローされません。

不要なカラムの削除

<?php
$datagrid 
=& new Structures_DataGrid();

// これは、あなたのデータベース環境に応じて書き換えます
$bindOptions['dsn'] = "mysql://foo:bar@host/world";

// City テーブルのフィールドは ID、Name、CountryCode、District および Population の 5 つです
$datagrid->bind("SELECT * FROM City ORDER BY Population"$bindOptions);

// ID フィールドを削除したいので、そのカラムへの参照を取得します
$column =& $datagrid->getColumnByField('ID');

// そしてそのカラムを削除します
$datagrid->removeColumn($column);

// これで Name、CountryCode、District および Population の 4 つだけをレンダリングします
$datagrid->render();
?>

Note

This function can not be called statically.

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Structures_DataGrid::removeColumn」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Structures_DataGrid::removeColumn」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: