DynamicDataExtensions.EnablePersistedSelection(BaseDataBoundControl) Método

Definición

Precaución

Use the EnablePersistedSelection property on a databound control such as GridView or ListView.

Habilita la selección para que persista en controles de datos que admiten selección y paginación.

public:
[System::Runtime::CompilerServices::Extension]
 static void EnablePersistedSelection(System::Web::UI::WebControls::BaseDataBoundControl ^ dataBoundControl);
public static void EnablePersistedSelection (this System.Web.UI.WebControls.BaseDataBoundControl dataBoundControl);
[System.Obsolete("Use the EnablePersistedSelection property on a databound control such as GridView or ListView.")]
public static void EnablePersistedSelection (this System.Web.UI.WebControls.BaseDataBoundControl dataBoundControl);
static member EnablePersistedSelection : System.Web.UI.WebControls.BaseDataBoundControl -> unit
[<System.Obsolete("Use the EnablePersistedSelection property on a databound control such as GridView or ListView.")>]
static member EnablePersistedSelection : System.Web.UI.WebControls.BaseDataBoundControl -> unit
<Extension()>
Public Sub EnablePersistedSelection (dataBoundControl As BaseDataBoundControl)

Parámetros

dataBoundControl
BaseDataBoundControl

Control enlazado a datos.

Atributos

Comentarios

En los controles que extienden BaseDataBoundControl y que admiten la selección, paginación y ordenación, llamar a este método permite que el control persista la selección incluso cuando la fila seleccionada no esté visible. Por ejemplo, si el usuario selecciona una fila y, a continuación, páginas en otra página, o si el usuario ordena los datos, la fila seleccionada permanece seleccionada. Si no se llama a este método, la selección se pierde cuando se ordenan o páginas de usuario.

El método RegisterControl llama a EnablePersistedSelection.

Se aplica a