C# 클래스 Ext.Net.GridPanelBase

파일 보기 프로젝트 열기: pgodwin/Ext.net 1 사용 예제들

Private Properties

프로퍼티 타입 설명
AddColumn void
AddRecord void
AddRecord void
AfterSelModelAdd void
AfterSelModelRemove void
AfterStoreAdd void
AfterViewAdd void
AfterViewRemove void
CreateChildControls void
DefaultSelectionSavingBuffer int
DeleteSelected void
EnsureHeaderColumn void
EnsureHeaderControl void
InsertColumn void
InsertRecord void
InsertRecord void
ListenStore void
OnInit void
OnPreRender void
Reconfigure void
RefreshView void
RemoveColumn void
SetHideHeaders void
StartEditing void
StopEditing void
StopEditing void
Store_BeforeClientInit void
UpdateCell void
UpdateCell void

공개 메소드들

메소드 설명
GetSelectionModel ( ) : AbstractSelectionModel

Returns a GridPanel's Selection model

GetStore ( ) : Store

GetView ( ) : GridView

Returns a GridPanel's View

Reconfigure ( string store ) : void

Reconfigures the grid to use a different Store and Column Model and fires the 'reconfigure' event. The View will be bound to the new objects and refreshed. Be aware that upon reconfiguring a GridPanel, certain existing settings may become invalidated. For example the configured autoExpandColumn may no longer exist in the new ColumnModel. Also, an existing PagingToolbar will still be bound to the old Store, and will need rebinding. Any plugins might also need reconfiguring with the new data.

Reconfigure ( string store, ColumnModel cm ) : void

Reconfigures the grid to use a different Store and Column Model and fires the 'reconfigure' event. The View will be bound to the new objects and refreshed. Be aware that upon reconfiguring a GridPanel, certain existing settings may become invalidated. For example the configured autoExpandColumn may no longer exist in the new ColumnModel. Also, an existing PagingToolbar will still be bound to the old Store, and will need rebinding. Any plugins might also need reconfiguring with the new data.

보호된 메소드들

메소드 설명
CheckStore ( ) : void

비공개 메소드들

메소드 설명
AddColumn ( ColumnBase column ) : void
AddRecord ( object values ) : void
AddRecord ( object values, bool commit ) : void
AfterSelModelAdd ( Observable item ) : void
AfterSelModelRemove ( Observable item ) : void
AfterStoreAdd ( Store item ) : void
AfterViewAdd ( GridView item ) : void
AfterViewRemove ( GridView item ) : void
CreateChildControls ( ) : void
DefaultSelectionSavingBuffer ( ) : int
DeleteSelected ( ) : void
EnsureHeaderColumn ( GridView item, HeaderColumn column ) : void
EnsureHeaderControl ( GridView item, Component c ) : void
InsertColumn ( int index, ColumnBase column ) : void
InsertRecord ( int index, object values ) : void
InsertRecord ( int index, object values, bool commit ) : void
ListenStore ( ) : void
OnInit ( EventArgs e ) : void
OnPreRender ( EventArgs e ) : void
Reconfigure ( ) : void
RefreshView ( ) : void
RemoveColumn ( int index ) : void
SetHideHeaders ( bool hide ) : void
StartEditing ( int rowIndex, int colIndex ) : void
StopEditing ( ) : void
StopEditing ( bool cancel ) : void
Store_BeforeClientInit ( Observable sender ) : void
UpdateCell ( int rowIndex, string dataIndex, object value ) : void
UpdateCell ( object id, string dataIndex, object value ) : void

메소드 상세

CheckStore() 보호된 메소드

protected CheckStore ( ) : void
리턴 void

GetSelectionModel() 공개 메소드

Returns a GridPanel's Selection model
public GetSelectionModel ( ) : AbstractSelectionModel
리턴 AbstractSelectionModel

GetStore() 공개 메소드

public GetStore ( ) : Store
리턴 Store

GetView() 공개 메소드

Returns a GridPanel's View
public GetView ( ) : GridView
리턴 GridView

Reconfigure() 공개 메소드

Reconfigures the grid to use a different Store and Column Model and fires the 'reconfigure' event. The View will be bound to the new objects and refreshed. Be aware that upon reconfiguring a GridPanel, certain existing settings may become invalidated. For example the configured autoExpandColumn may no longer exist in the new ColumnModel. Also, an existing PagingToolbar will still be bound to the old Store, and will need rebinding. Any plugins might also need reconfiguring with the new data.
public Reconfigure ( string store ) : void
store string Store ClientID
리턴 void

Reconfigure() 공개 메소드

Reconfigures the grid to use a different Store and Column Model and fires the 'reconfigure' event. The View will be bound to the new objects and refreshed. Be aware that upon reconfiguring a GridPanel, certain existing settings may become invalidated. For example the configured autoExpandColumn may no longer exist in the new ColumnModel. Also, an existing PagingToolbar will still be bound to the old Store, and will need rebinding. Any plugins might also need reconfiguring with the new data.
public Reconfigure ( string store, ColumnModel cm ) : void
store string Store ClientID
cm ColumnModel New ColumnModel
리턴 void