@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi Javi,
We will need a stackblitz example in order to check your use-case.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/October 19, 2021 at 3:28 pm in reply to: File upload component, pass specific validation error #102433admin
KeymasterHi Lukac,
The fileUpload has a responseHandler callback function, which can be defined for validation purposes. In this help tutorial is shown how to set it up. Web Components Fileupload – Getting Started | Fileupload Component | https://www.htmlelements.com/
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi Milan,
Swimlanes are currently not being updated automatically.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
To reapply swimlanes, you will need to set the property of the Kanban again. They are not updated automatically.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
Thanks for the feedback. The scrollbar is disabled on that page.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/admin
Keymastermy 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.
October 3, 2021 at 7:49 am in reply to: error Uncaught TypeError: Smart.Grid.Column is not a constructor #102374admin
Keymasteradmin
KeymasterHi,
This topic is old. Templates code is available for customers after a purchase.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi 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/admin
KeymasterHi 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/admin
KeymasterHi 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/admin
KeymasterHi,
The latest code is for jqxGrid, not for Smart.Grid. if you have jqwidgets questions, please use the jqwidgets.com forum
Regards,
Peteradmin
KeymasterHi nkralj,
The latest smart-webcomponents-angular build resolves this reported behavior.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterIt is Smart.Blazor.10.0.37
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
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/ -
AuthorPosts