@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 886 through 900 (of 927 total)
  • Author
    Posts
  • in reply to: Accordion animation types #99464
    admin
    Keymaster

    Hi pcng618,
    The accordion has animation property. This property can be set to:
    – ‘advanced’ (by default) – animations are enabled and the element has ripple effect on click
    – ‘simple’ – animations are enabled, but ripple effect is disabled
    – ‘none’ – animations are disabled
    Best Regards,
    Ivailo Ivanov
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Progress bar inside a tooltip ? #99463
    admin
    Keymaster

    Hi hansT,
    To do this, you can use a template. Custom templates can be set via tooltipTemplate property. In the template, you can set various HTML content, including progress bar elements.
    Here is an example of how to do this:

    <template id="template">
            <smart-progress-bar value="50"></smart-progress-bar>
    </template>
    <smart-button id="button">Button</smart-button>
    <smart-tooltip id="tooltip" selector="button" arrow tooltip-template="template"></smart-tooltip>

    Best Regards,
    Ivailo Ivanov
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Gauge color range width #99460
    admin
    Keymaster

    Hello hansT,
    Here is how to set the width of the color ranges:

    <style type="text/css">
        #needleGauge2 .jqx-range {
            width: 15px;
        }
    </style>

    We hope this solution is helpful to you.
    Best regards,
    Dimitar
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Custom mask Masked textbox #99457
    admin
    Keymaster

    Hi hansT,
    To validate the user input this way, You have to use the following mask – “AA #### AA”(“A” matches A-Z letters, “#” matches digits).
    Here is a snippet:
    <smart-masked-text-box mask="AA #### AA"></smart-masked-text-box>
    Best Regards,
    Ivailo Ivanov
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Open direction? #99453
    admin
    Keymaster

    Hi Michael20,
    the open direction of the DropDownList custom element can be changed by setting the property dropDownPosition. There are several options available: ‘auto’, ‘top’, ‘bottom’, ‘overlay-top’, ‘overlay-center’, ‘overlay-bottom’, ‘center-bottom’, ‘center-top’. Check out the official API document for further details: API.
    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Selected by default #99448
    admin
    Keymaster

    This really helps, thanks.
    Best regards,
    Mike

    in reply to: Default color #99447
    admin
    Keymaster

    Thanks, Ivailo, it works!
    Best regards,
    Mike

    in reply to: Default color #99445
    admin
    Keymaster

    Hi Mike,
    To do this, you just have to set element’s type property to “success”:
    <smart-toast type="success">Successful operation!!!</smart-toast>
    You can use several “type” options to style easily the element – “info”, “warning”, “success”, “error”, “mail”, “time”.
    Best Regards,
    Ivailo Ivanov
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Selected by default #99443
    admin
    Keymaster

    Hi Michael20,
    You can select an item in several ways:

    • If you are initializing items declaratively inside your web page, you can set the selected attribute to the desired List Item element.
    • By setting the selectedIndexes or selectedValues properties to the correposnding value.
    • By calling the select method. This method accepts one argument – a List Item element instnace. You can get a reference to it by calling the getter items on the Combo Box element and filter out the item you desire.

    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Circular progress bars nesting #99442
    admin
    Keymaster

    Hi pcng618,
    Yes, you can nest anything inside the center part of the Circular Progress Bar element. Here’s a demo of a ToggleButton element inside a Circular Progress Bar:
    demo
    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Numbers after decimal point #99440
    admin
    Keymaster

    Hello hansT,
    To achieve this, please set the property precisionDigits, i.e.:
    <smart-slider show-tooltip precision-digits="2"></smart-slider>
    Best regards,
    Dimitar
    Smart HTML Elements Team
    https://www.htmlelements.com

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

    Hi Michael20,
    Yes, smart.listbox.js is also required in order to initialize a ComboBox custom element. All elements are coded to throw an error or a warning in the console in case of a missing reference or improper usage.

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

    Hi,
    Thanks for the clarification. Am I correct that it also requires smart.listbox.js, because smart-drop-down-list requires it?
    Best regards,
    Mike

    in reply to: Sorted by default? #99432
    admin
    Keymaster

    Thank you very much!
    Best regards,
    Mike

    in reply to: Customize scale labels and tick marks #99431
    admin
    Keymaster

    Hi hansT,

    • To show only the ticks with labels, please set ticks-visibility="major".
    • The color of tick marks can be set using the CSS variable --smart-tick-color, i.e.:
      <style type="text/css">
          smart-slider {
              --smart-tick-color: red;
          }
      </style>

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

Viewing 15 posts - 886 through 900 (of 927 total)