共用方式為


WebGrid.Table 方法

定義

傳回用來呈現實例的 WebGrid HTML 標籤。

public System.Web.IHtmlString Table (string tableStyle = default, string headerStyle = default, string footerStyle = default, string rowStyle = default, string alternatingRowStyle = default, string selectedRowStyle = default, string caption = default, bool displayHeader = true, bool fillEmptyRows = false, string emptyRowCellValue = default, System.Collections.Generic.IEnumerable<System.Web.Helpers.WebGridColumn> columns = default, System.Collections.Generic.IEnumerable<string> exclusions = default, Func<dynamic,object> footer = default, object htmlAttributes = default);
member this.Table : string * string * string * string * string * string * string * bool * bool * string * seq<System.Web.Helpers.WebGridColumn> * seq<string> * Func<obj, obj> * obj -> System.Web.IHtmlString
Public Function Table (Optional tableStyle As String = null, Optional headerStyle As String = null, Optional footerStyle As String = null, Optional rowStyle As String = null, Optional alternatingRowStyle As String = null, Optional selectedRowStyle As String = null, Optional caption As String = null, Optional displayHeader As Boolean = true, Optional fillEmptyRows As Boolean = false, Optional emptyRowCellValue As String = null, Optional columns As IEnumerable(Of WebGridColumn) = null, Optional exclusions As IEnumerable(Of String) = null, Optional footer As Func(Of Object, Object) = null, Optional htmlAttributes As Object = null) As IHtmlString

參數

tableStyle
String

用來設定整張資料表樣式之 CSS 類別的名稱。

headerStyle
String

用來設定資料表頁首樣式之 CSS 類別的名稱。

footerStyle
String

用來設定資料表頁尾樣式之 CSS 類別的名稱。

rowStyle
String

用來設定每個資料表資料列樣式之 CSS 類別的名稱。

alternatingRowStyle
String

用來設定偶數資料表資料列樣式之 CSS 類別的名稱。

selectedRowStyle
String

用來設定所選取資料表資料列之 CSS 類別的名稱

caption
String

資料表標題。

displayHeader
Boolean

true 表示顯示資料表標頭;否則為 false。 預設值是 true。

fillEmptyRows
Boolean

true 表示當資料項目不足而無法填滿最後一頁時,在最後一頁插入其他資料列;否則為 false。 預設值為 false。 其他資料列會使用 參數指定的 emptyRowCellValue 文字填入。

emptyRowCellValue
String

用來在資料項目不足以填入最後一個頁面時填入最後一個頁面中之其他資料列的文字。 參數 fillEmptyRows 必須設定為 true,才能顯示這些額外的資料列。

columns
IEnumerable<WebGridColumn>

實例的 WebGridColumn 集合,指定每個資料行的顯示方式。 這包括與每個格線資料行相關聯的資料行,以及如何格式化每個格線資料行所含的資料值。

exclusions
IEnumerable<String>

包含要在格線自動填入資料行時排除之資料行名稱的集合。

footer
Func<Object,Object>

傳回用來呈現資料表頁尾之 HTML 標記的函數。

htmlAttributes
Object

物件,表示屬性集合 (名稱和值,) 為代表 WebGrid 實例的 HTML 資料表專案設定。

傳回

表示完整填入 WebGrid 實例的 HTML 標籤。

適用於