Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7559171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T12:34:08+00:00 2026-05-30T12:34:08+00:00

I have a XtraGrid with one GridView, with a column with checkbox repository item.

  • 0

I have a XtraGrid with one GridView, with a column with checkbox repository item. Now I am handling the CellValueChanging event because I want to only allow the user to check or uncheck based on calculations on other column values on the same row hence I need the e.RowHandle and e.Column of this event and this cannot be done on the EditValueChanging of the repository control.

Now somewhere my calculations say that user cannot check a particular cell to and I throw a message box and try Me.BandedGridView1.SetRowCellValue(e.RowHandle, e.Column, False) but unfortunately this does not set the value to false of that cell.

I need to do it here and here only because of the huge number of calculations based on other column values and I need to set value of the current cell whose event I’m handling right.

Please help.

I’m using DevExpress 9.2 (no chance of upgrading to higher version)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T12:34:09+00:00Added an answer on May 30, 2026 at 12:34 pm

    You might want to prevent updates by handling ShowingEditor event.

    class TestData
    {
        public TestData(string caption, bool check)
        {
            Caption = caption;
            Check = check;
        }
        public string Caption { get; set; }
        public bool Check { get; set; }
    }
    

    Initialize some test data:

    BindingList<TestData> gridDataList = new BindingList<TestData>();
    gridDataList.Add(new TestData("First row", true));
    gridDataList.Add(new TestData("Second row", true));
    gridControl.DataSource = gridDataList;
    

    Handle ShowingEditor. Check if user is allowed to change chechbox. If not, cancel the event.

        private void gridView1_ShowingEditor(object sender, CancelEventArgs e)
        {
            GridView view = sender as GridView;
            //  Decision to allow edit using view.FocusedRowHandle and view.FocusedColumn
            if (view.FocusedColumn.FieldName == "Check")
            {
                //  Allow edit of odd rows only
                bool allowEdit = view.FocusedRowHandle % 2 == 1;
                e.Cancel = !allowEdit;
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have Xtragrid, when I filter a column on some value it comes as
I have a DevExpress xtraGrid which I want to bind. When I try to
I have a grid (DevExpress XtraGrid, if that matters) which is bound to a
i have Devxpress GridControl on the form, and i want to send data on
Have following listener for keyboard ArrowDown event(it's key code is 40 ): window.onload =
**Have it working now. I forgot to populate the Array List. How embarrassing. I'm
I am using an XtraGrid from DeveloperExpress with a column holding strings, edited via
Have a photography site that I want to prevent image copying from. How can
The DevExpress Grid (XtraGrid) allows grids and their groups to have summary calculations. The
I have a gridcontrol and there is a column named Accepted, a RepositoryItemCheckEdit is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.