@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 271 through 285 (of 918 total)
  • Author
    Posts
  • in reply to: Safari flicker #102754
    admin
    Keymaster

    Hi Michele,

    We investigated the item, but we are still unable to find a solution for it. It is related to the smart-tabs component with specific sizes in auto-hide mode only. Once the issue is resolved, the information will be published in the release notes section on our website.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Kanban with Data Adapter – Tasks are not loaded #102752
    admin
    Keymaster

    Hi,

    Could you share a codepen example, because it would be hard to reproduce by using the provided code part. From ‘dataSource’ is undefined error I would guess that some kind of function context is not right which could be because of the async/await usage in the provided code.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: documentation should be more detailed #102748
    admin
    Keymaster

    Hi,

    Would you like to share what kind of details are missing? The docs are constantly improved and is a top priority for us. For example, two days ago we added 70+ help tutorials to our Blazor docs.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Cascade Tabs #102744
    admin
    Keymaster

    Hi Joko,

    We do not have support for Cascade tabs at present. We will add support for such scenario in one of the upcoming releases. Once the feature is available, the information will be published in the release notes.

    Update. The reported issue would be resolved in the next release.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    admin
    Keymaster

    Hi,

    I would suggest you using the Editor component instead which has such built-in functionality – https://www.htmlelements.com/demos/editor/editor-char-counter/

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: onCellUpdate #102728
    admin
    Keymaster

    Hi James,

    onCellUpdate is a property so in angular in app.component.ts it would be:

    ` onCellUpdate = function(cell, oldValue, newValue, confirm) {
    oldValue = cell.value;
    alert(cell.row.id + “/” + cell.column.dataField);
    if (newValue === “test”) {
    confirm(false);
    }
    else {
    confirm(true);
    }
    }`

    in the template, you will need to set the onCellUpdate grid property to point to the property in the app.component.ts.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: problem with addRow at the beginning of the grid #102727
    admin
    Keymaster

    Hi,

    There are several things wrong in the provided code:

    objRow.cells[0].value=arrData[0]; within the addRow callback function.
    objGrid.dataSource.dataSource=_data; – dataSource.dataSource is incorrect way to update a data adapter.

    For adding & updating rows we have an online example: https://www.htmlelements.com/demos/grid/dynamic-rows/.

    To add a row to the first position, simply modify it to use splice instead of push:

    rows.splice(0,0,createRow());

    or addRow method like that:

    document.querySelector('smart-grid').addRow(createRow(), false);. The second parameter instructs the datagrid to add the new row to the top.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: comboBox.select() with multiple selection #102718
    admin
    Keymaster

    Hi Dark Beccio,

    To select multiple values at once, the selectedValues or selectedIndexes properties should be used.

    Example:

    
        <smart-combo-box selected-values=["1","2"] selection-mode="checkBox">
            <smart-list-item value="1">Affogato</smart-list-item>
            <smart-list-item value="2">Americano</smart-list-item>
            <smart-list-item value="3">Bicerin</smart-list-item>
            <smart-list-item value="4">Breve</smart-list-item>
            <smart-list-item value="5">Cappuccino</smart-list-item>
            <smart-list-item value="6">Cafe Crema</smart-list-item>
            <smart-list-item value="7">Cafe Corretto</smart-list-item>
            <smart-list-item value="8">Cafe macchiato</smart-list-item>
            <smart-list-item value="9">Cafe mocha</smart-list-item>
            <smart-list-item value="10">Cortado</smart-list-item>
            <smart-list-item value="11">Cuban espresso</smart-list-item>
            <smart-list-item value="12">Espresso</smart-list-item>
            <smart-list-item value="13">Eiskaffee</smart-list-item>
            <smart-list-item value="14">Frappuccino</smart-list-item>
            <smart-list-item value="15">Galao</smart-list-item>
            <smart-list-item value="16">Greek frappe coffee</smart-list-item>
            <smart-list-item value="17">Iced Coffee</smart-list-item>
            <smart-list-item value="18">Instant Coffee</smart-list-item>
            <smart-list-item value="19">Latte</smart-list-item>
            <smart-list-item value="20">Liqueur coffee</smart-list-item>
        </smart-combo-box>

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: don't work a wrap for virtual Tree-grid #102716
    admin
    Keymaster

    Hi Oleg Ilin,

    The fix for that item is scheduled for Q1 2022.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: documentation should be more detailed #102711
    admin
    Keymaster

    Hi,

    Thanks for the feedback. Could you please elaborate on this? Which props are not described well compared to our other product. We are improving the docs and working on that every day.

    Regards,
    Peter

    Smart UI
    Htmlelements.com

    in reply to: change event #102706
    admin
    Keymaster

    Hi Joko,

    If you set the value programmatically then you will probably know when in your code you set it. Each value change results in ‘change’ event trigger. We do not have API which tells whether the value is set by programmatic setting. That can be achieved in your code where you set the Slider’s value. I would suggest you to use a boolean variable to add such logic.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: iterate through treeitems #102705
    admin
    Keymaster

    Hi,

    By using const tree = document.querySelector(“smart-tree”) you can get the Tree’s HTML Element instance. Then you get all tree items or tree item groups, you can use tree.querySelectorAll(“smart-tree-item”); or tree.querySelectorAll(“smart-tree-items-group”); You can also query select by ID or CSS class if you set such to your tree items or groups. By having the HTML Elements stored in a variable, you can then use Smart.Tree’s API to add or remove items. I would like to suggest you to look at https://www.htmlelements.com/demos/tree/context-menu/. This example shows how to add or remove tree items dynamically depending on user selection through a context menu.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: DropDownList in Form not submitted? #102704
    admin
    Keymaster

    Hi Giovanni,

    Could you please provide a full example which shows your use case? I would like to suggest you to look at the Form Events online example, too. You can use Form Properties and/or Events to get the Form’s value, if you use Smart.Form. For example: https://www.htmlelements.com/demos/form/events/. The example shows how to get the value of a form dynamically.

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Override header height #102703
    admin
    Keymaster

    Hi Joko,

    The sample code below shows how to set the columns height and rows height in our Datagrid component. Note that the minimum row height is 30px.

    smart-grid {
        width: 100%;
        width: 100%;
        height: 600px;
        --smart-grid-column-header-height: 30px;
        --smart-grid-row-height: 30px;
    }

    Best regards,
    Peter Stoev

    Smart UI Team
    https://www.htmlelements.com/

    in reply to: sample not work on firefox #102695
    admin
    Keymaster

    Hi,

    Unfortunately, with the provided information we are unable to replicate that behavior. We will further investigate with different versions of firefox and apache.

    Regards,
    Peter

Viewing 15 posts - 271 through 285 (of 918 total)