Hi,
Xaf Blazor model editor LayoutGroup node has not CustomCSSClassName property. Could i access via ViewController and set css class name programmatically?
Hi,
Xaf Blazor model editor LayoutGroup node has not CustomCSSClassName property. Could i access via ViewController and set css class name programmatically?
Hello,
In v21.2.4 of XAF's Blazor UI, it is possible to set the IModelViewLayoutElementBlazor.CustomCSSClassName property for a layout group in the Model Editor:
Please refer to the following example:
Thanks,
Ilya P
Hello Kartal,
We fixed the following issue in v21.2.4: Blazor - It is not possible to set a custom CSS class for actions in the ActionBase.CustomizeControl handler. After the update, you will be able to set a CSS class in code using the DxToolbarItemContentModel.CssClass property.
Hello,
In v21.2.4, the IModelActionBlazor.CustomCSSClassName property is also available. It is possible to set it for an action in the Model Editor:
Please refer to the following example:
Thanks,
Ilya P
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.
Hi Kartal,
Currently, in XAF Blazor you can assign a custom CSS class only to a layout item. There is no access to a layout group to assign a custom CSS class to it.
Would you please elaborate on how you need to customize a layout group? Our code generates a unique CSS class for layout group captions. Perhaps, this will be sufficient to achieve the required functionality. It's generated as follows:
internal static string GetCaptionCssClass(string itemId) => $"xaf-item-{itemId.ToLower()}";
Hi Gosha,
I need apply different styles on multiple layout groups in a detailview. For example two layoutgroups in a detailview and one of has red background color and other one white or border styles.
Yes you are right i can see the unique tags but i need access the panel.
I solve the issue with disable Show Caption of layoutgroup, add static text item to top and give CustomCSSClassName like panel header.
.ekolaybu-panelheader { padding-left: 8px !important; padding-right: 8px !important; padding-top: 8px !important; padding-bottom: 0 !important; border: 1px solid rgba(0, 0, 0, 0.125); border-top-left-radius: 8px; border-top-right-radius: 8px; font-size: 1rem !important; font-weight: 600; background-color: #ffff } .ekolaybu-panelheader > .dxbs-fl, .ekolaybu-panelheader > .form-group { margin-bottom: 0 !important; } .ekolaybu-label { padding-left: 8px !important; padding-right: 8px !important; border-left: 1px solid rgba(0, 0, 0, 0.125); border-right: 1px solid rgba(0, 0, 0, 0.125); font-size: 0.90rem !important; font-weight: 100; background-color: #ffff;
Also Actions has not CustomCSSClassName property.
I am happy to hear that you found a way to get the desired behavior.
To find an action element, you can use a CSS attribute selector. The "data-action-name" attribute is the Action caption.
button[data-action-name="MyActionCaption"] { background-color: red; }
Gosha,
Do you have a list of all of the keywords like 'button[data-action-name' that we could use when styling our XAF Blazor apps? It would save us huge amounts of time and also save DevExpress support a lot of time.
Thank you,
Niels
That's what i need. Thank you.
Problem is localization and SingleChoice dropdown button.
Hi Niels and Kartal,
CSS classes that we generate for UI elements are not documented and we don't have a list of them. These classes may be also changed in the future. Until we support assigning a custom CSS class to actions, layout groups, etc., it's necessary to manually find an appropriate CSS selector to customize these elements as described at How to implement CSS-related solutions for DevExpress components.
For example, for a SingleChoiceAction whose ItemType is ItemIsMode, you can use the following style to change the action background along with the drop-down button:
button[data-action-name="MyActionCaption"].btn-secondary, button[data-action-name="MyActionCaption"] + button.btn-secondary { background-color: red; }
If the SingleChoiceAction ItemType option is ItemIsOperation, use the following CSS:
div[data-action-name="MyActionCaption"] input.form-control[readonly], div[data-action-name="MyActionCaption"] button.btn-secondary { background-color: red; }
Yes, if you localize your Action captions, it will be necessary to change CSS selectors. Currently, I don't see other ways to implement this except for duplicating styles for each supported language.
Thanks a lot.