@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 856 through 870 (of 879 total)
  • Author
    Posts
  • in reply to: styling item separator #99423
    admin
    Keymaster

    Hello hansT,
    To do so, please add the following style to your page:

    <style type="text/css">
        smart-menu-item[separator],
        smart-menu-items-group[separator] {
            border-bottom: 3px solid red;
        }
    </style>

    Best regards,
    Dimitar
    Smart HTML Elements Team
    https://www.htmlelements.com/

    in reply to: Displaying a combo box? #99422
    admin
    Keymaster

    Hi Michael20,
    In order to initialize a ComboBox custom element you need to include the following references:

    • smart.base.css
    • smart.element.js
    • smart.button.js
    • smart.scrollbar.js
    • smart.dropdownlist.js
    • smart.combobox.js

    There are a detailed instructions and information about initializing a ComboBox custom element in the “Docs” section:
    ComboBox
    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: scrolling items using mouse wheel #99421
    admin
    Keymaster

    Hello hansT,
    To enable this feature, please set the property enableMouseWheelAction to true.
    Best regards,
    Dimitar
    Smart HTML Elements Team
    https://www.htmlelements.com/

    in reply to: Open on arrow click #99414
    admin
    Keymaster

    Thanks, that was exactly what I needed.
    Best regards,
    Mike

    in reply to: Open on arrow click #99400
    admin
    Keymaster

    Hi Michael20,
    There’s a dropDownOpenMode property with an option called dropDownButton that splits the element in two sections : an action button and a drop down button ( the arrow ). If you set it the drop down will open only when pressing the arrow.
    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Tabs with SHADOW DOM #99398
    admin
    Keymaster

    Hi Peter,
    Thank you for your interest in our Tank Web Component.
    A note about those unfamiliar with what Shadow DOM is. Shadow DOM refers to the ability of the browser to include a subtree of DOM elements into the rendering of a document, but not into the main document DOM tree
    A Shadow DOM support for the Tank is in active development. With every new release, we will add support for Shadow DOM in some of the elements and with the time we will have full support for it. At present, we cannot tell exactly when Tank will be with Shadow DOM support, but we will keep this topic up to date and when we add support, we will update it.
    Please, let us know if you have additional questions.
    Best Regards,
    B. Markov
    SmartHtmlElements Team
    https://www.htmlelements.com

    in reply to: Grid Web Component Filtering #99397
    admin
    Keymaster

    Hi Peter,
    Thank you for your interest in our Grid Web Component.
    We are still working on Grid Filtering functionality. We will have Filter Menu and Filter Row UI Elements built into the HTML Element. Our plans are to have it in Q1.
    Please, let us know if you have additional questions.
    Best Regards,
    B. Markov
    SmartHtmlElements Team
    https://www.htmlelements.com

    in reply to: Grid Cell Editing #99396
    admin
    Keymaster

    Hi Peter,
    Thank you for your interest in our Grid Web Component.
    We are still working on Grid Editing functionality. Our plans are to have it in Q1.
    Please, let us know if you have additional questions.
    Best Regards,
    B. Markov
    SmartHtmlElements Team
    https://www.htmlelements.com

    in reply to: Web Components Installation #99395
    admin
    Keymaster

    Hi Peter,
    There are several ways to install the Web Components.
    1. Download the .zip package from our web site.
    2. Use Node Package Manager(NPM).
    You can take a look at: https://www.htmlelements.com/download/ and https://www.htmlelements.com/docs/download-and-installation/
    Please, let us know if you have additional questions.
    Best Regards,
    B. Markov
    SmartHtmlElements Team
    https://www.htmlelements.com

    in reply to: Style DateTimePicker Web Component #99394
    admin
    Keymaster

    Hi Peter,
    In order to style the DateTimePicker, please refer to: https://www.htmlelements.com/docs/datetimepicker-css/. The documentation tutorial will help you to learn which CSS variables can be used for styling the Web Component.
    Please, let us know if you have additional questions.
    Best Regards,
    B. Markov
    SmartHtmlElements Team
    https://www.htmlelements.com

    in reply to: Error in demo page? #98935
    admin
    Keymaster

    Hi Mike,
    The Menu demo page issue is resolved.
    Thank you very much for the feedback!
    Best regards,
    Boyko Markov
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Error in demo page? #98934
    admin
    Keymaster

    Hi Mike,
    Thank you for your feedback. We will resolve this issue as soon as possible.
    Best Regards,
    Dimitar
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Checkbox selection in Menu #98921
    admin
    Keymaster

    Thank you, Dimitar.

    in reply to: Checkbox selection in Menu #98920
    admin
    Keymaster

    Hi Mike,
    This can be achieved by setting the checkboxes attribute to the smart-menu and checkable and check-mode=”checkbox” to the particular smart-menu-items-group. You can see this in action in the “Menu labels” section of the Overview demo.
    Best Regards,
    Dimitar
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Header scoll buttons on hover #98898
    admin
    Keymaster

    Hi john1987,
    in order to control the visibility of the scroll buttons inside the header section of the element you simply need to changed the <b>overview</b> property to ‘hidden’. When you want to see the buttons again just set the value of the property back to it’s default value ‘auto’. Here’s how to do it:

    
       <script>
            window.onload = function () {
                var tabs = document.querySelector('smart-tabs');
                tabs.addEventListener('mouseenter', function (event) {
                    this.overflow = 'auto';
                });
                tabs.addEventListener('mouseleave', function (event) {
                    this.overflow = 'hidden';
                });
            }
        </script>
    </head>
    <body>
        <smart-tabs>
            <smart-tab-item label="TAB 1">Content 1</smart-tab-item>
            <smart-tab-item label="TAB 2">Content 2</smart-tab-item>
            <smart-tab-item label="TAB 3">Content 3</smart-tab-item>
            <smart-tab-item label="TAB 4">Content 4</smart-tab-item>
            <smart-tab-item label="TAB 5">Content 5</smart-tab-item>
            <smart-tab-item label="TAB 6">Content 6</smart-tab-item>
            <smart-tab-item label="TAB 7">Content 7</smart-tab-item>
            <smart-tab-item label="TAB 8">Content 8</smart-tab-item>
            <smart-tab-item label="TAB 9">Content 9</smart-tab-item>
            <smart-tab-item label="TAB 10">Content 10</smart-tab-item>
            <smart-tab-item label="TAB 11">Content 11</smart-tab-item>
        </smart-tabs>
    </body>
    

    If you have further questions feel free to ask.
    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

Viewing 15 posts - 856 through 870 (of 879 total)