Coder Social home page Coder Social logo

lanadx / aspxgridlookup-how-to-change-the-displayed-text-when-all-rows-are-selected-e4862 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from devexpress-examples/asp-net-web-forms-grid-lookup-change-the-displayed-text-when-all-rows-are-selected

0.0 0.0 0.0 349 KB

.NET, ASP.NET Web Forms, ASPxDataEditors

License: Other

C# 11.91% Visual Basic .NET 14.05% ASP.NET 74.04%

aspxgridlookup-how-to-change-the-displayed-text-when-all-rows-are-selected-e4862's Introduction

GridLookup for ASP.NET Web Forms - How to display a custom text when all rows are selected

[Run Online]

This example illustrates how to display a custom text inside ASPxGridLookup when all its rows are selected.

Custom Select All Text

To implement this scenario, follow the steps below:

  1. Handle the ASPxGridLookup.ValueChanged event to pass a flag to the client. The flag indicates whether all rows are selected.

    protected void gridLookup_ValueChanged(object sender, EventArgs e)
    {
        ASPxGridLookup gl = sender as ASPxGridLookup;
        if (gl.GridView.Selection.Count == gl.GridView.VisibleRowCount)
            gl.GridView.JSProperties["cp_selected"] = true;
    }
  2. On the client, handle the ASPxClientGridLookup.EndCallback event and specify a custom text if the flag returns true.

    function OnEndCallback(s, e) {
        if (s.GetGridView().cp_selected) {
            s.GetInputElement().value = "(Select All)";
            delete (s.GetGridView().cp_selected);
        }
    }

Files to Review

aspxgridlookup-how-to-change-the-displayed-text-when-all-rows-are-selected-e4862's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.