@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 826 through 840 (of 879 total)
  • Author
    Posts
  • in reply to: How to group radio buttons #99518
    admin
    Keymaster

    Hi hansT,
    Smart radio buttons can be grouped via setting their groupName property. In your case 6 buttons in 2 separated groups can be initialized by the following code:

        <smart-radio-button group-name="groupA">Option 1(group A)</smart-radio-button>
        <smart-radio-button group-name="groupA">Option 2(group A)</smart-radio-button>
        <smart-radio-button group-name="groupA">Option 3(group A)</smart-radio-button>
        <smart-radio-button group-name="groupB">Option 1(group B)</smart-radio-button>
        <smart-radio-button group-name="groupB">Option 2(group B)</smart-radio-button>
        <smart-radio-button group-name="groupB">Option 3(group B)</smart-radio-button>

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

    in reply to: Calendar arrow direction #99517
    admin
    Keymaster

    Hi Michael20,
    You can achieve that by simply setting the properties scrollButtonsPosition to far in order to place the buttons on the far right and scrollButtonsNavigationMode to portrait to change the animation direction. Here’s an example on how to set them as HTML attributes:
    <smart-calendar scroll-buttons-navigation-mode="portrait" scroll-buttons-position="far"></smart-calendar>
    Best Regards,
    Christopher
    Smart HTML Elements Team
    https://www.htmlelements.com

    in reply to: Many issues when creating a simple form #99507
    admin
    Keymaster

    Thank you cor pointing out things we should improve in our web components and in our documentation. We will do our best to resolve these as quickly as possible. Some of the documentation pages are actually already updated today – introductiom, accordion, button and calendar docs.

    in reply to: DropUp mode #99506
    admin
    Keymaster

    Hi pcng618,
    By default all drop down custom elements from the Smart framework automatically determine the opening direction of the actual drop down depending on the space available. For example, if there’s not enough space for the drop down to open below the element it will open above it. Regardless you can set a specific position via the dropDownPosition property. Here’s a link to the API with all avaialbe options: modes
    Example:

    
    <smart-drop-down-list drop-down-position="top">
     <smart-list-item>A</smart-list-item>
     <smart-list-item>B</smart-list-item>
     <smart-list-item>C</smart-list-item>
    </smart-drop-down-list>
    

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

    in reply to: Many issues when creating a simple form #99505
    admin
    Keymaster

    1. As mentioned before, if you go to the main page of the demos, scroll down to “Sample Applications”, you have a “Form” application listed. But that leads to the DropDownList demo page, where all the forms are just mock-up forms. That’s misleading.
    2. It seems that setting “display:block” on all the widgets in the form is mandatory, otherwise you end up with strange, uneven spacing like in my pictures. Thank you for pointing out. Maybe you could add a document describing how to create a proper form.
    3. I see. I guess I was mislead by the fact that the TextBox overview page shows the label in one of the animated gifs (see below) and the API page has both label and hint properties listed, without being mentioned that those are experimental features only.

    in reply to: Many issues when creating a simple form #99504
    admin
    Keymaster

    Hi PaoloBax,
    1. The Sample App is about DropDownList, not about TextBoxes. It is not a Form Sample App, it’s a DropDownList sample app.
    2. Here’s a sample with a Form:

    3. Hints and Labels are an experimental feature. We did not demonstrate them in our demos.
    Best Regards,
    B. Markov
    SmartHTMLElements
    https://www.htmlelements.com

    in reply to: Many issues when creating a simple form #99496
    admin
    Keymaster

    1. Can you please show me the code where the forms are created on that Sample app? In the source code at the bottom of the page I can’t locate any smart-text-box or similar.
    2. I know how to change the style. I just don’t understand why, by default, similar widgets (which usually are side by side in forms) have different styling.
    3. Actually labels are listed among the features in the TextBox overview page. In any case, even if I don’t use labels and hints, the layout has some issues, as you can see in the next picture. I can’t figure out where that extra space after (or before?) some inputs comes from.

    Any help to create that simple form is much appreciated.

    in reply to: Many issues when creating a simple form #99479
    admin
    Keymaster

    Hi PaoloBax,
    1. The Sample app opens https://www.htmlelements.com/demos/dropdownlist/overview/. This is not a Fake form. This is a sample built with our web components.
    2. Styling of the Web Components is done in smart.default.css. If you would like to put custom CSS, take it into account that such style could be already defined. In your case, to put custom Background of these Inputs, you should use something like that:

    smart-numeric-text-box .smart-input,
    smart-text-box .smart-input,
    smart-password-text-box .smart-input{
      background:blue;
    }

    3. Hints and Labels are not yet supported. We will add support for these in future versions of our web components. I would suggest you to take a look at the demos and how we use the components.
    4. The roadmap is available here: https://www.htmlelements.com/docs/roadmap/
    5. In general, this is an active project and we make frequent updates with bug fixes and new features.
    Best Regards,
    B. Markov
    SmartHTMLElements
    https://www.htmlelements.com

    in reply to: How to remove window's header section #99477
    admin
    Keymaster

    Hi pcng618,
    You can set the ‘headerPosition’ property to ‘none’. This will remove it. More info about the property: https://www.htmlelements.com/docs/window-api/
    Regards,
    B. Markov
    SmartHTMLElements
    https://www.htmlelements.com

    in reply to: Confusing documentation #99475
    admin
    Keymaster

    The linked example is empty. In any case I figured it out, thank you.

    in reply to: Confusing documentation #99471
    admin
    Keymaster

    Thanks for writing and for the feedback. We will resolve the reported things.
    The download currently includes a file that is combined from the files listed there. The individual files are included only in the commercial version.
    To run the project you have to refer to smart.default.css and smart.elements.js and that’s all. Example: https://codepen.io/pen/?&editable=true Material is the default theme so you don’t need to set anything here. The quick usage examples are all included in the .zip.
    Best Regards,
    Boyko Markov

    in reply to: Change arrow indicator of accordion items #99466
    admin
    Keymaster

    Hi hansT,
    You can manipulate(update or remove) accordion’s arrows, via updating the settings of .smart-arrow CSS class.
    To change arrows position in the header you have to update the order, for example order:0 will set the arrow at the beginning of the accordion item’s header block.
    If you want to remove the arrow – use display: none ;
    To change the arrow with a different icon you have to manipulate it’s ::after pseudo-element.
    Best Regards,
    Ivailo Ivanov
    Smart HTML Elements Team
    https://www.htmlelements.com

    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

Viewing 15 posts - 826 through 840 (of 879 total)