@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi Mark,
For multiline text edit, we have a special built-in textarea editor. You can check it out here: TextArea Editor in Smart Grid. (htmlelements.com)
As for a custom edit dialog – we do not have such API at present. We will add a work item which allows such customization in the next release of Smart.Grid component.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi tullio,
The “getRows” method returns the rows in the Grid. Each row has a “data” property with its data. You can use that functionality to keep the things in sync with your backend data.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/October 20, 2021 at 6:54 am in reply to: The ability to manage the rows in the categories of a grid tree #102441admin
KeymasterHi Oleg,
In a tree grid that is not possible. It is possible and enabled by default when the data grid is grouped by a field. Example: Grouping Basic | Grid | Smart UI for Web Components (htmlelements.com)
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/October 20, 2021 at 6:53 am in reply to: ability to manage the rows in the categories of a grid tree #102440admin
KeymasterHi Oleg,
In a tree grid that is not possible. It is possible and enabled by default when the data grid is grouped by a field. Example: Grouping Basic | Grid | Smart UI for Web Components (htmlelements.com)
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/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/ -
AuthorPosts