Hi
How do I style the CheckBox to appear like the standard Check Box? I want it to be large, width= 50
<td><InputCheckbox id="chkpopup" class="form-control" style="width: 50px;" @bind-Value="Popup" /> </td>
<TelerikCheckBox Id="chkpopup"
@bind-Value="@Popup"
OnChange="@PopUpCheckChanged">
</TelerikCheckBox>
See attachment.. I want the small Telerik CheckBox to appear large and blue.
thx
Hi,
is there a possibility to zoom in to a part of a chart?
Best Regards
I have 2 different concepts which are displayed together with a shared category axis.
Currently there is a 1 to 1 mapping between each.
Is it possible to align each in every category so that they are vertically aligned?
Currently they seem to display side by side.
This might be because the bottom column can be vary large and in the worst case go all the way to the top.
In addition can the bottom column be made to be larger and a different z-index then the top chart?
For instance in the image the bottom column would grow from top to bottom and be visually larger than the top column.
Therefore any overlap would be visually easy to distinguish.
Is there a way to reset filter for combo box?
I have two comboboxes with filters. I want to reset filter for second combobox when value in first combo box is changed.
when running the Demo,If you scroll down too fast,Grid control don't refresh,even wait a long time
but if scroll back little ,then it can refresh.
I'm looking to do some a type of "mega menu" where a given top level menu item has a number of sub items, I'd like to have a different layout, or even a list view for the sub menu template. I thought maybe using the HasChildrenField set to false would allow me to do something but have not had luck so far.
An example of the type of thing I am talking about can be found here (https://freefrontend.com/css-menu/) in CSS
Hello,
I would like to change the color of my tooltip, and also of my buttons, as I understood, the whole UI is set with a single base Theme (Bootstrap or else).
The problem is that the tooltip with bootstrap is blue, and if I add it on a primary button, it's blue on blue and not readable. An attribute letting us to set the Color of a tooltip or a button would be good. I can't but red warning buttons for example.
I tried to set the class of a tooltip with a different background color, but only the rectangle is set not the whole tooltip (see pic).
Thanks in advance
system:windows10 , area:china,
blazor wasm test project,
when put the code in one pageï¼›
<TelerikDateTimePicker Value="System.DateTime.Now">
</TelerikDateTimePicker>
run with info:"An unhandled error has occurred",but some other controls like grid is OK!
is there the Culture setting problem?
I have a grid that when loading the data it is entering two times in ReadISHandler. I can see in debugger that enter and stops two times in LoadIS(); causing a performance problem, any idea what is happening
<TelerikGrid Data=@GridDataIS
TotalCount=@Total
Height=@Height
ScrollMode="@GridScrollMode.Virtual"
Sortable=false
RowHeight="40"
OnRead=@ReadISHandler>
protected async Task ReadISHandler(GridReadEventArgs args)
{
Skip = args.Request.Skip;
await LoadIS();
}