Hi!
CheckComboBox placed on toolbar as BarEditItem don't save data to EditValue properties. Please look to attached example. There is stand-alone CheckComboBox (work ok) and CheckComboBox on ToolBar - data is cleared after component exit focus.
Hi!
CheckComboBox placed on toolbar as BarEditItem don't save data to EditValue properties. Please look to attached example. There is stand-alone CheckComboBox (work ok) and CheckComboBox on ToolBar - data is cleared after component exit focus.
We have addressed the issue described in this ticket and will include a fix in our next maintenance update. To apply this solution before official release, request a hotfix by clicking the appropriate version link.
Note: Hotfixes may be unavailable for betas/updates set for release within a week.
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.
Hello Lukas,
You can enable the Bar Manager's AlwaysSaveText property to keep the editor's value unchanged when you focus another UI element. Please review the following help topic for details: "TdxBarManager.AlwaysSaveText". In addition, you can enable the editor's Properties.ImmediatePost property to immediately save the changed values.
I am slightly concerned about the subject of your ticket. You say that the editor "stop working". Do you mean that the behavior was different in your previous version of our controls? Would you please specify the number of that version?
Hi Paulo!
Thanks for you reply.
I post bad example and incomplete description. Sorry.
Problem appeared in recent version. VCL 20.1.2. was ok. I have AlwaysSaveText property enabled in my project. EditValueFormat is set to "cvfStatesString". After changing CheckComboBox and exiting element, value of EditValue property doesn't contain StatesString but comma separeted list of selected items and element look like clear visually. Please watch attached video and corrected example.
Thanks
Thanks a lot! Now I understand the difference. We will examine this issue and try to find a general solution.
Meanwhile, you can modify the TcxBarEditItemControl.Hide method in the cxBarEditItem.pas unit in the following manner to restore the v20.1.2 behavior:
procedure TcxBarEditItemControl.Hide(AStoreDisplayValue: Boolean); begin if Edit <> nil then if not (csDestroying in BarManager.ComponentState) then begin if not IsWindowEnabled {or not CanHide} then begin Item.FPrevOnEditValueChanged := Edit.InternalProperties.OnEditValueChanged; Edit.InternalProperties.OnEditValueChanged := Item.DoEditValueChanged; end; FEditValueBeforeHiding := Edit.EditingValue; FIsEditValueAssigned := False; LockCMActivateMessages(True); FakeWinControl.Parent := nil; LockCMActivateMessages(False); EditorParentForm.SetBounds(0, 0, 0, 0); DisableAppWindows(not IsApplicationActive); try if EditorParentForm.HandleAllocated then EditorParentForm.FocusControl(nil); Edit.Parent := nil; if IsDropDownEdit then begin PopupWindow.ActiveControl := nil; TcxCustomPopupWindowAccess(PopupWindow).FPrevActiveForm := EditorParentForm.FPrevActiveForm; TcxCustomPopupWindowAccess(PopupWindow).FPrevActiveControl := EditorParentForm.FPrevActiveControl; end; LockCMActivateMessages(True); EditorParentForm.SafePassFocus; LockCMActivateMessages(false); finally EnableAppWindows; end; EditorParentForm.DefocusControl(Edit, True); ClearEditEvents; ClearViewInfoEvents(Edit.ViewInfo); EditorParentForm.Visible := False; EditorParentForm.ParentWindow := 0; Item.DoExit; if AStoreDisplayValue then StoreDisplayValue; FEdit := nil; end else begin ClearEditEvents; ClearViewInfoEvents(Edit.ViewInfo); end; end;