@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 541 through 555 (of 984 total)
  • Author
    Posts
  • in reply to: Query Builder Custom Operator #101519
    admin
    Keymaster

    Hi JoeO,
    The purpose of the query builder is to build queries using buttons, inputs and conditions instead of writing them manually. Logically you can achieve the same output with different queries. We hope it fits to your application needs.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Problem to load data on grid (Angular Project) #101517
    admin
    Keymaster

    Hi Anselmo,
    Could you share your app.component.html, app.module.ts and app.component.ts so we can check them.
    Best regards,
    Peter Stoev
    Smart UI Team
    Htmlelements.com

    admin
    Keymaster

    Hi,
    Smart UI requires angular 8+. For old versions of angular you can use jqwidgets-ng.
    Regards,
    Peter
    Smart UI Team
    Htmlelements.com

    admin
    Keymaster

    Hi,
    The error seems to be caused because of the typescript version used in your app or a conflict with other lib in your package.json. In addition, the smart version used in your app is very old. We advice you to use the latest.
    Regards,
    Peter
    Smart UI Team
    Htmlelements.com

    in reply to: Gantt date issue #101505
    admin
    Keymaster

    Hi Walter,
    Excluding holidays is not implemented as a feature in the Gantt chart. We will consider that in future versions.
    Such functionality is available in our similar component – Scheduler.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    admin
    Keymaster

    Hi davout,
    Ok, thanks. We will Test that. If we find an issue, it will be resolved in the next smart-webcomponents-angular NPM package.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    admin
    Keymaster

    Hi davout,
    If you think that you have found an error, then please share an example, which we will be able to run, and instructions to reproduce the issue.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Gantt date issue #101499
    admin
    Keymaster

    Hi Walter,
    The component works with the Javascript Date object for dates, which is the native way to handle date operations in javascript. That means that when you set a String we will do

    new Date(your string).

    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    admin
    Keymaster

    Hi davout,
    1. The error message means that a String is expected.
    2. We have 1 checkbox component.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Clear selection from date picker? #101497
    admin
    Keymaster

    Hi davout,
    You can use the “nullable” property in your component.
    Please, take a look at this code snippet:

    <smart-date-time-picker [autoClose]="true" [calendarButton]="true" [dropDownPosition]="'bottom'"
    [dropDownDisplayMode]="'calendar'" [formatString]="'dd-MM-yyyy'" [nullable]="true" [placeholder]="'From'"
    [autoClose]="true" [value]="null">
    </smart-date-time-picker>
    <smart-date-time-picker [autoClose]="true" [calendarButton]="true" [dropDownPosition]="'bottom'"
    [dropDownDisplayMode]="'calendar'" [formatString]="'dd-MM-yyyy'" [nullable]="true" [placeholder]="'To'"
    [autoClose]="true" [value]="null">
    </smart-date-time-picker>

    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Scheduler Resources #101494
    admin
    Keymaster

    Hi MilesGibson,
    1. The id here represents a property of the Event in the specific resource. It is not necessary to be unique id in this case.
    2. No, it is not currently possible to modify the template for Scheduler Events.
    3. The blazor-demos/pages folder contains the Scheduler Blazor page.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Number input disabled spin buttons #101479
    admin
    Keymaster

    Hi Walter,
    Thank you for the feedback.
    As a workaround, you may add this CSS

    .smart-number-input[disabled] .nav .up,
    .smart-number-input[disabled] .nav .down {
    pointer-events: none;
    }

    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: How can I hide a specific column with CSS only? #101475
    admin
    Keymaster

    Hi,
    It seems that in 9.1.0, the column property is “hidden”, not “visible. You can use it like that:

               columns: [
    { label: 'id', hidden: true, dataField: 'id', dataType: 'number' },
    { label: 'Product Name', dataField: 'productName', dataType: 'string' },
    { label: 'Quantity', dataField: 'quantity', dataType: 'number' },
    { label: 'Price', dataField: 'price', dataType: 'number' },
    { label: 'Date Purchased', dataField: 'date', dataType: 'date' }
    ]

    After the next release, change it to “visible” and set it to false. “hidden” will be deprecated.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: How can I hide a specific column with CSS only? #101470
    admin
    Keymaster

    Do you use the latest version?
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: How can I hide a specific column with CSS only? #101468
    admin
    Keymaster

    Hi Johnny Johnny,
    With CSS this is not possible. In the script code, you can use the Table column’s “visible” property and set it to false.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

Viewing 15 posts - 541 through 555 (of 984 total)