Ticket Q413632
Visible to All Users

Checkbox not immediately updating an underlying bindinglist until I move off of the checkbox cell even after an EditValueChanged PostEditor.

created 13 years ago

I'm trying to update an XtraGrid Gridview row after checking a bound checkbox, but the datasource doesn't change until you leave the cell. I have attached a sample project that provides an example of this issue. When the 'IsFree' is checked, the total price should update to '0', but it does not until you click outside of the checkbox control. The update is handled through a BindingList<T>, with the base object implementing INotifyPropertyChanged and the list object overriding OnListChanged.

I have tried to use PostEditor and UpdateCurrentRow on the repository item's EditValueChanged event to no avail. Thanks.

Answers

created 13 years ago (modified 13 years ago)

The cause of the problem is that the gvDetails view is not the current detail view, it is only a pattern for detail views. To solve this problem, it is necessary to obtain a current focused view and call the PostEditor method for it.

C#
private void riceIsFree_EditValueChanged(object sender, EventArgs e) { grdDemo.FocusedView.PostEditor(); }
    Comments (2)

      Thanks for the help John. That seems to do the trick!

      DevExpress Support Team 13 years ago

        You are welcome.
        I am glad to hear that you have found my assistance helpful. Please feel free to contact us in case of any difficulties.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.