Hello, how can I remove the trailing zeros from the editor? Is possible to use the same format (###,##0.00###) when editing the value? right now when the value of the field is read from the database (is a decimal 18,5) and the value is for example 1,00000 (just one with 5 zero after decimal separator) then the textbox is formatted right (1,00) but when editing it is 1,00000. I hope the question was clear, sorry.
thank you
<TelerikNumericTextBox Width="100%" @bind-Value="docum.rigadoc.prezzo" Class="rightAlign" Decimals="5" Format="###,##0.00### €" Min="0" Max="99999999"></TelerikNumericTextBox>
Hello,
Is there a way to offset the data shown on the axis, without removing any data.
The issue is show below, where the text overlap, and my question is then if there is a posibility to offset the text as shown in the last image. Or maybe something simular.
Best Regards,
Emil
Is there a way to email a chart image, preferable from a server api so that is can be scheduled.
more context. Users can see a chart on the UI. Overnight jobs will check for outliers and if any are found, want an email with equivelent graph as image
Hi Team,
In GridCommandButton when we Enabled = false, TheTool Tip is not showing.
<GridCommandButton Command="Edit" Enabled="false" OnClick="@DeleteSelectedItemClicked" Title="This is Delete.">Delete</GridCommandButton>
Thanks,
Vishnu Vardhanan
I have hidden some columns using the code
<GridColumn Field="@nameof(DataEntryExternalUser.Name)" Editable="true" Visible="@IsVisible"/>
So when I edit in a pop-up form I set IsVisible=true;
The problem I have now is with exporting data. Only the visible columns is exported.
Can I somehow set IsVisible=true before triggering the export command?
Have tried setting it in the OnClick handler. Not working.<GridCommandButton OnClick="@ShowLoadingSign" Command="ExcelExport" Icon="file-excel">Export to Excel</GridCommandButton>
Hi guys,
My goal would be to store/retrieve my state from a database but I fail to understand how we can get the id of the reordered/resizeded tile?
The TileLayoutState has no reference of the moving TileItem, the header text or any data really.
It looks like it works with a defined set of TileItems but what if you don't know their numbers and positions or wish to change it?
The SetState can't help with that because the initial State will not be the same.
With my attached example, I have an initial Step1.png state, I change it to Step2.png. After my change one of the Test tiles is removed in the backend. How can I make sure next time I load the page I get Step2.png but without one of the Test tiles?
Am I missing something or is it a limitation?
Thank you for your help and keep up the good work on Blazor !
Is it possible to make the Radar Area circular?
How it looks now:
How it should look:
I also have a problem with the ChartValueAxis, I need to set the ZIndex to 1. If I don't, then the numbers disappear underneath the chart if I change the opacity on the series to 1. Is this normal behaviour, or?
Normal:
ZIndex 1:
Code:
<ChartValueAxes>
<ChartValueAxis>
<ChartValueAxisLabels Format="{0:N0}"></ChartValueAxisLabels>
</ChartValueAxis>
</ChartValueAxes>
---------------------------------
<ChartValueAxes>
<ChartValueAxis ZIndex="1">
<ChartValueAxisLabels Format="{0:N0}"></ChartValueAxisLabels>
</ChartValueAxis>
</ChartValueAxes>
Thanks
Regards,
Nikolas
Having a great time building with the lattest Blazor Ui components. Though I am having issues setting the initial Checked State on a Heirachical Data Model. Pretty certain everything is setup correctly:
I am setting the collection at the OnAfterRenderAsync as I am loading the data from LocalStorage. Unfortunately rather than Checking the Child Notes, the Parent Node is always selected. Note below the circled Itetms are in the CheckedSourceDatas collection but the parent is always checked (below)
Any pointede would be greatly appreciated. Thanks in advance.
I am filling my drop down from a data table. The Value and the Text are the same string. The Value
is also a string that matches the ValueField string. But when the DropDown Renders the value is not selected
and just shows a blank. How do I get the selected value to be selected?
<TelerikDropDownList Data="@MyVM.ContactFormatList"
TextField="@nameof(QuerySelector.ColumnName)"
Filterable="true"
ValueField="@nameof(QuerySelector.ColumnName)"
DefaultText="Select Contact Format"
@bind-Value="@MyVM.selectedContactFormat">
</TelerikDropDownList>
MyVM.ContactFormatList = list of QuerySelectors
public class QuerySelector
{
public string ColumnName { get; set; }
public string Value { get; set; }
}
Property in my MyVM
public string selectedContactFormat { get; set; }