@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 316 through 330 (of 918 total)
  • Author
    Posts
  • in reply to: Kanban #102380
    admin
    Keymaster

    my smart window is opening up a popup and its appearing BEHIND the smart-window.  i would like it to appear OVER the window.  the popup has a z-index of 100000 or so.

    admin
    Keymaster
    in reply to: source code for templates #102310
    admin
    Keymaster

    Hi,
    This topic is old. Templates code is available for customers after a purchase.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Smart DataAdapter not updating data source #102308
    admin
    Keymaster

    Hi aconley,
    The dataAdapter should not modify your original data. It modifies a copy of the data initially loaded into it. The Grid component raises events when the data is edited and if you need to make updates to your original data source, you need to use them.
    Best regards,
    Peter Stoev
    jQWidgets Team
    https://www.jqwidgets.com/

    in reply to: Font Size #102298
    admin
    Keymaster

    Hi xyzzy,
    Here’s a Blazor example with the ComboBox. In order to set the font size you can either put a CSS selector using the combobox’s INPUT or use a CSS variable –smart-font-size which changes the font-size of the Blazor combobox and its dropdown items.

    @page "/combobox"
    @using Smart.Blazor.Demos.Data
    @inject WeatherForecastService ForecastService
    <style>
    .combo {
    --smart-font-size: 24px;
    }
    </style>
    <Example Name="ComboBox">
    @if (forecasts == null)
    {
    <p><em>Loading...</em></p>
    }
    else
    {
    <h2>Forecasts Summary</h2>
    <ComboBox Class="combo" SelectedIndexes="new int[] { 0 }">
    @foreach (var forecast in forecasts)
    {
    <ListItem Label="@forecast.Summary.Trim()"></ListItem>
    }
    </ComboBox>
    }
    </Example>
    @code {
    private WeatherForecast[] forecasts;
    protected override async Task OnInitializedAsync()
    {
    forecasts = await ForecastService.GetForecastAsync(DateTime.Now);
    }
    }

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

    in reply to: Filter Row and editing enabled issue #102290
    admin
    Keymaster

    Hi nkralj,
    We do not have a new Vue JS release available. You can subscribe to our newsletter and when the release is available, you will be notified. The fix will be available within it.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Filter Row and editing enabled issue #102287
    admin
    Keymaster

    Hi,
    The latest code is for jqxGrid, not for Smart.Grid. if you have jqwidgets questions, please use the jqwidgets.com forum
    Regards,
    Peter

    in reply to: Filter Row and editing enabled issue #102285
    admin
    Keymaster

    Hi nkralj,
    The latest smart-webcomponents-angular build resolves this reported behavior.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Blazor gantt Task column format #102281
    admin
    Keymaster

    It is Smart.Blazor.10.0.37
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Blazor gantt Task column format #102275
    admin
    Keymaster

    Hi,
    The latest version of the Blazor Gantt Chart includes a NumberFormat property for the task columns which can be used for formatting of numbers. You can set the property to ‘p’ in order to apply percentages formatting.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Blazor gantt Task column format #102273
    admin
    Keymaster

    Hi Maserati,
    In a task column you can set the ‘DateFormat’ to a string like ‘dd-MM-yyyy’.
    Ex:
    // short date pattern
    ‘d’ – ‘M/d/yyyy’,
    // long date pattern
    ‘D’ – ‘dddd, MMMM dd, yyyy’,
    // short time pattern
    ‘t’ – ‘h:mm tt’,
    // long time pattern
    ‘T’ – ‘h:mm:ss tt’,
    // long date, short time pattern
    ‘f’ – ‘dddd, MMMM dd, yyyy h:mm tt’,
    // long date, long time pattern
    ‘F’ – ‘dddd, MMMM dd, yyyy h:mm:ss tt’,
    // month/day pattern
    ‘M’ – ‘MMMM dd’,
    // month/year pattern
    ‘Y’ – ‘yyyy MMMM’,
    // S is a sortable format that does not vary by culture
    ‘S’ – ‘yyyy’-‘MM’-‘dd’T’HH’:’mm’:’ss’
    Date format strings:
    ‘d’-the day of the month;
    ‘dd’-the day of the month
    ‘ddd’-the abbreviated name of the day of the week
    ‘dddd’- the full name of the day of the week
    ‘h’-the hour, using a 12-hour clock from 1 to 12
    ‘hh’-the hour, using a 12-hour clock from 01 to 12
    ‘H’-the hour, using a 24-hour clock from 0 to 23
    ‘HH’- the hour, using a 24-hour clock from 00 to 23
    ‘m’-the minute, from 0 through 59
    ‘mm’-the minutes,from 00 though59
    ‘M’- the month, from 1 through 12
    ‘MM’- the month, from 01 through 12
    ‘MMM’-the abbreviated name of the month
    ‘MMMM’-the full name of the month
    ‘s’-the second, from 0 through 59
    ‘ss’-the second, from 00 through 59
    ‘t’- the first character of the AM/PM designator
    ‘tt’-the AM/PM designator
    ‘y’- the year, from 0 to 99
    ‘yy’- the year, from 00 to 99
    ‘yyy’-the year, with a minimum of three digits
    ‘yyyy’-the year as a four-digit number;
    ‘yyyyy’-the year as a four-digit number.
    For the formatFunction – we are currently building new examples for Gantt, Inputs and other components.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Smart textbox font-size #102272
    admin
    Keymaster

    Hi tuillio0106,
    If you apply a custom CSS class, just put –smart-font-size to it, too.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Smart text box title class #102271
    admin
    Keymaster

    Hi tullio0106,
    The “title” is a native HTML element attribute. If you want to apply styles to tooltips, you can use our smart-tooltip component.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Smart drop down list size #102270
    admin
    Keymaster

    Hi tullio0106,
    You can use a CSS variable for that purpose.
    Example:
    smart-drop-down-list {
    min-height: 35px;
    height: auto;
    width: 300px;
    –smart-drop-down-list-drop-down-height: 100px;
    }
    The –smart-drop-down-list-drop-down-height determines the height of the DropDownList’s dropdown.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Font Size #102269
    admin
    Keymaster

    Hi xyzzy,
    Have you tried the CSS font-size property?
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

Viewing 15 posts - 316 through 330 (of 918 total)