@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
adminKeymaster
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.
October 3, 2021 at 7:49 am in reply to: error Uncaught TypeError: Smart.Grid.Column is not a constructor #102374adminKeymasteradminKeymasterHi,
This topic is old. Templates code is available for customers after a purchase.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi 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/adminKeymasterHi 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/adminKeymasterHi 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/adminKeymasterHi,
The latest code is for jqxGrid, not for Smart.Grid. if you have jqwidgets questions, please use the jqwidgets.com forum
Regards,
PeteradminKeymasterHi nkralj,
The latest smart-webcomponents-angular build resolves this reported behavior.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterIt is Smart.Blazor.10.0.37
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi,
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/adminKeymasterHi 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/adminKeymasterHi 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/adminKeymasterHi 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/adminKeymasterHi 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/adminKeymasterHi xyzzy,
Have you tried the CSS font-size property?
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/ -
AuthorPosts