| |||||
DataGridPagerStyle.Visible PropertySystem.Web.UI.WebControls Namespace DataGridPagerStyle Class Sets or retrieves a value indicating whether the pager is displayed in a DataGrid control. Syntax
Property ValueThis property accepts or returns only a boolean value: true to display the pager; otherwise false. Default value is true. RemarksUse the Visible property to specify whether the pager is displayed in a DataGrid control. ExampleThe following example demonstrates how to programmatically set the PagerStyle.Visible property at run time. This simple script dynamically shows or hides the pager based on the state of a CheckBox named chkHide. if ( chkHide.Checked ) myGrid.PagerStyle.Visible = false; else myGrid.PagerStyle.Visible = true; See AlsoDataGridPagerStyle Members Mode Position |
| ||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme