KB Article K18425
Visible to All Users

How to obtain a value of the BarEditItem during editing

Description:
I am using the RepositoryItemButtonEdit as an in-place editor for the BarEditItem. I have handled the RepositoryItem's KeyDown event and want to check the entered value. However, the BarEditItem.EditValue property is not updated during editing. Why?

Answer:
This behavior is correct. During editing the BarEditItem.EditValue property is not synchronized with an active editor's EditValue property.
The editor's value is posted only when it loses focus.
So, in your scenario, you should check the editor's value, but not the BarEditItem's one.
For example:

C#
// BarManager object value = (barManager1.ActiveEditor as DevExpress.XtraEditors.ButtonEdit).EditValue; // RibbonControl object value = (ribbonControl1.Manager.ActiveEditor as DevExpress.XtraEditors.ButtonEdit).EditValue;
Visual Basic
' BarManager Dim value As Object = TryCast(barManager1.ActiveEditor, DevExpress.XtraEditors.ButtonEdit).EditValue ' RibbonControl Dim value As Object = TryCast(ribbonControl1.Manager.ActiveEditor, DevExpress.XtraEditors.ButtonEdit).EditValue

More information about in-place editors and the way to access them can be found in the following Knowledge Base article:
Why doesn’t the RepositoryItem have the methods that the editor has?

Show previous comments (2)

    Thanks, works perfect!

      could you please post the respective vb.net code

      thanks

      DevExpress Support Team 8 years ago

        Hello Frank,

        Here is the required code:

        Visual Basic
        ' BarManager Dim value As Object = TryCast(barManager1.ActiveEditor, DevExpress.XtraEditors.ButtonEdit).EditValue  ' RibbonControl Dim value As Object = TryCast(ribbonControl1.Manager.ActiveEditor, DevExpress.XtraEditors.ButtonEdit).EditValue

        I've added it to my answer.

        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.