AccessKey (inherited from WebControl) | Gets or sets the access key that allows you to quickly navigate to the Web server control. |
ActiveCell | Gets or sets the active cell of the current sheet. Changed to be writable since version 1.9.0.1. |
ActiveCellBgColor | Specifies the background color of the active cell. |
ActiveCellColor | Specifies the color of the active cell. |
ActiveHeaderBgColor | Specifies the background color of the active row/column header. |
ActiveHeaderColor | Specifies the color of the active row/column header. |
ActiveSheetIndex | Gets or sets the active sheet index. Equal to the WebWorksheets.ActiveSheetIndex. |
ActiveTabStyle | Specifies the style of the active tab. |
AGWClientPath | Gets or sets the web path of the script/image files of the control. For example: "http://localhost/agw_client". You may also set this value in the web.config file. Add this section to the <configuration> section:
|
AGWLanguageFileUrl | Gets or sets the web url of the language file of the control. For example: "/agw_client/lang_en.js".
|
AppRelativeTemplateSourceDirectory (inherited from Control) | Gets or sets the application-relative virtual directory of the Page or UserControl object that contains this control. |
Attributes (inherited from WebControl) | Gets the collection of arbitrary attributes (for rendering only) that do not correspond to properties on the control. |
BackColor (inherited from WebControl) | Gets or sets the background color of the Web server control. |
BindingContainer (inherited from Control) | Gets the control that contains this control's data binding. |
BorderColor (inherited from WebControl) | Gets or sets the border color of the Web control. |
BorderStyle (inherited from WebControl) | Gets or sets the border style of the Web server control. |
BorderWidth (inherited from WebControl) | Gets or sets the border width of the Web server control. |
BottomTableStyle | Gets or sets the style of the bottom bar of the control. |
ClientID (inherited from Control) | Gets the server control identifier generated by ASP.NET. |
Controls (inherited from Control) | Gets a ControlCollection object that represents the child controls for a specified server control in the UI hierarchy. |
ControlStyle (inherited from WebControl) | Gets the style of the Web server control. This property is used primarily by control developers. |
ControlStyleCreated (inherited from WebControl) | Gets a value indicating whether a Style object has been created for the ControlStyle property. This property is primarily used by control developers. |
CssClass (inherited from WebControl) | Gets or sets the Cascading Style Sheet (CSS) class rendered by the Web server control on the client. |
CurrentPageIndex | Gets or sets the current page index in paging mode. |
CustomCommandButtons | The custom command button collection. |
CustomStyleFileName | Gets or sets the custom style file name. |
DefaultFontName | Gets or sets the control's default font name. |
DefaultFontSize | Gets or sets the control's default font size. |
DefaultGridLineColor | Gets or sets the default grid line's color. |
DisplayCellTip | Gets or sets whether to display tooltip for the cells of the grid. The default value of this property is true. If set to true, when moving mouse pointer on a cell of the grid, the cell will show a tooltip contains the cell's value and formula information. |
EditMode | Gets or sets the control's edit mode. |
EnableAJAX | Specifies whether to enable instant updating. Note: only supported with IE 6 or newer version browsers. |
EnableClientColumnOperations | Gets or sets whether to enable the client side column operations. |
EnableClientFreeze | Gets or sets whether to enable the client side freezing operations. |
EnableClientMergeOperations | Gets or sets whether to enable the client side merge operations. |
EnableClientResizeColumnRow | Gets or sets whether to enable the client side resize column and row. |
EnableClientRowOperations | Gets or sets whether to enable the client side row operations. |
Enabled (inherited from WebControl) | Gets or sets a value indicating whether the Web server control is enabled. |
EnableDoubleClickEvent | Gets or sets whether to enable customer side double-click event. |
EnableMetalLightEffect | Gets or sets whether to apply metal light effect. |
EnablePaging | Gets or sets whether to enable the control's paging mode. |
EnableSession | Obsolete. This property is obsoleted, please use SessionMode instead. |
EnableSmartNavigation | Gets or sets whether to enable the Smart Navigation Mode for the control. The default value of this property is false. When in Smart Navigation Mode, the control will post data in the background, and this feature provides an improved visual effect without any refresh on the page. |
EnableStyleDialogbox | Gets or sets whether to enable the client side style dialogbox. |
EnableTheming (inherited from WebControl) | Gets or sets a value indicating whether themes apply to this control. |
EnableViewState (inherited from Control) | Gets or sets a value indicating whether the server control persists its view state, and the view state of any child controls it contains, to the requesting client. |
Font (inherited from WebControl) | Gets the font properties associated with the Web server control. |
ForceValid | Obsolete. Obsoleted. Please use ForceValidation instead. Gets or sets whether to force customer side validation. |
ForceValidation | Gets or sets whether to force customer side validation. |
ForeColor (inherited from WebControl) | Gets or sets the foreground color (typically the color of the text) of the Web server control. |
FrameTableStyle | Gets or sets the frame style of the control. |
HasAttributes (inherited from WebControl) | Gets a value indicating whether the control has attributes set. |
HeaderBarHeight | Gets or sets the height( System.Web.UI.WebControl.Unit ) of the top header bar of the control. |
HeaderBarStyle | Gets or sets the header bar's style. |
HeaderBarTableStyle | Gets or sets the header bar style of the control. |
HeaderBarWidth | Gets or sets the width( System.Web.UI.WebControl.Unit ) or the left header bar of the control. |
Height | Gets or sets the height( System.Web.UI.WebControl.Unit ) of the control. |
ID (inherited from Control) | Gets or sets the programmatic identifier assigned to the server control. |
MaxColumn | Gets or sets the maximum display column index(zero based) of the web sheet. The control uses the greater value of MaxColumn and sheet data's max column. |
MaxRow | Gets or sets the maximum display row index(zero based) of the web sheet. The control uses the greater value of MaxRow and sheet data's max row. |
MinColumn | Gets or sets the minimum display column index(zero based) of the web sheet. The control uses the smaller value of MinColumn and sheet data's min column. |
MinRow | Gets or sets the minimum display row index(zero based) of the web sheet. The control uses the smaller value of MinRow and sheet data's min row. |
ModifiedCells | Gets the collection of the cells that modified by the client. |
NamingContainer (inherited from Control) | Gets a reference to the server control's naming container, which creates a unique namespace for differentiating between server controls with the same ID property value. |
NoScroll | Gets or sets whether to disable scrolling for the grid. If set to true, the grid will stretch automatically to fit its content. |
OnCellErrorClientFunction | Gets or sets the client side function name to be called when a cell's validation is failed. The client function should be declared like this: function MyOnCellError(cell) { alert(GridWeb1.getCellValueByCell(cell)); }
Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnCellSelectedClientFunction | Gets or sets the client side function to be called when a cell is selected. The client function should be declared like this: function MyOnSelectCell(cell) { GridWeb1.setCellValueByCell(cell, "test"); }
Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnCellUnselectedClientFunction | Gets or sets the client side function to be called when a cell is unselected. The client function should be declared like this: function MyOnUnselectCell(cell) { GridWeb1.setCellValueByCell(cell, "test"); }
Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnCellUpdatedClientFunction | Gets or sets the client side function name to be called when a cell's value is updated. The client function should be declared like this: function MyOnCellUpdated(cell) { alert(GridWeb1.getCellValueByCell(cell)); }
Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnDoubleClickCellClientFunction | Gets or sets the client side function to be called when a cell is double clicked. The client function should be declared like this: function MyOnDoubleClickCell(cell) { GridWeb1.setCellValueByCell(cell, "test"); }
Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnGridInitClientFunction | Gets or sets the client side function name to be called when the grid is initialized. The client function should be declared like this: function MyOnGridInit(grid) { alert("The grid is initialized: " + grid.id); }
Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnSubmitClientFunction | Gets or sets the client function to be called before the control is submited at client side. The client function should be declared like this: function MyOnSubmit(arg, cancelEdit) { return true; } The arg is the submit argument, contains the command to be post to the server. The cancelEdit is boolean value indicates whether the control has discarded the user input before submit. The control will continue submiting if the function returns true. Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
OnValidationErrorClientFunction | Gets or sets the client function to be called when the client-side validation is failed. The client function should be declared like this: function MyOnValidationError() { } You may display an alert message in this function to indicate that there are errors. Note: You may use the "this" pointer in the client function to point the grid control which fires the event. |
Page (inherited from Control) | Gets a reference to the Page instance that contains the server control. |
PageSize | Gets or sets the page size in paging mode. |
Parent (inherited from Control) | Gets a reference to the server control's parent control in the page control hierarchy. |
PresetStyle | Gets or sets the preset style. |
ScrollBarArrowColor | Specifies the color of the scrollbar's arrow button. |
ScrollBarBaseColor | Specifies the color of the scroll bar of the control. |
SelectCellBgColor | Specifies the background color of the selected cells in multi-select range. |
SelectCellColor | Specifies the color of the selected cells in multi-select range. |
SelectCells | Gets the select cells collection. |
SessionMode | Gets or sets the session mode of the grid. There are 3 type of session mode: 1. Session(default): Use system session to store sheet data. Generally the asp.net uses InProc session state. The grid also supports "StateServer" out process session state and SQLServer session state. 2. ViewState: Use page's viewstate to store sheet data. 3. Custom: Use LoadCustomData and SheetDataUpdated events to store/recover sheet data.
|
ShowBottomBar | Specifies whether to show the bottom bar(includes command bar and tab bar). Note: Take effect only with a licensed control. |
ShowCommandBarAtTop | Specifies whether to show the command bar(includes command bar and tab bar) at the top of the control. |
ShowDefaultGridLine | Gets or sets whether to show the default grid lines of the cells. |
ShowHeaderBar | Specifies whether to show the header bar of the control. |
ShowLoading | Specifies whether to show a loading dialogbox while postbacking to server. |
ShowSaveButton | Gets or sets whether to show the save button. |
ShowSubmitButton | Gets or sets whether to show the submit button. |
ShowTabBar | Specifies whether to show the tab bar(located in the bottom of the control). Note: Take effect only with a licensed control. |
ShowUndoButton | Gets or sets whether to show the undo button. |
Site (inherited from Control) | Gets information about the container that hosts the current control when rendered on a design surface. |
SkinID (inherited from WebControl) | Gets or sets the skin to apply to the control. |
Style (inherited from WebControl) | Gets a collection of text attributes that will be rendered as a style attribute on the outer tag of the Web server control. |
TabIndex (inherited from WebControl) | Gets or sets the tab index of the Web server control. |
TabStyle | Gets or sets the style of the tab bar. |
TemplateControl (inherited from Control) | Gets or sets a reference to the template that contains this control. |
TemplateSourceDirectory (inherited from Control) | Gets the virtual directory of the Page or UserControl that contains the current server control. |
ToolTip (inherited from WebControl) | Gets or sets the text displayed when the mouse pointer hovers over the Web server control. |
UniqueID (inherited from Control) | Gets the unique, hierarchically qualified identifier for the server control. |
ViewPanelScrollLeft | Gets or sets the position of the scroll bar of the grid's view panel. |
ViewPanelScrollTop | Gets or sets the position of the scroll bar of the grid's view panel. |
ViewTableStyle | Gets or sets the data view panel's style. |
Visible (inherited from Control) | Gets or sets a value that indicates whether a server control is rendered as UI on the page. |
WebWorksheets | Gets or sets the WebWorksheets object. Main data storage of the GridWeb control. |
Width | Gets or sets the width( System.Web.UI.WebControl.Unit ) of the control. |
XhtmlMode | Specifies whether to generate XHTML output. In .Net 1.0 the default value is False. And in .Net 2.0 the default value is True. |