I'm using the bootstrap theme with CSS static content.
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-bootstrap/all.css" />
I would like to change the theme to dark but I can't find the name of the bootstrap dark theme. Is it available for the static content CSS?
If I use the CDN it works fine with both normal and dark modes but I'd prefer to use the static content.
Hi,
I have a Blazor TelerikGrid using the DetailTemplate feature to expand each line.
It works fine but I would also need to expand the footer line.
Is there a way to do that?
Also, is there a way to display the DetailTemplate "+" expand button on the RIGHT rather than on the left? I don't see any properties that would allow this.
Thx
A
Is it possible to customize the appearance of input and page size dropdown controls in the TelerikPager control or the pager of the TelerikGrid control?
Our application uses the Material theme and all controls are using the Outline FillMode but I cannot change the Pages dropdown control of the grid's default pagger.
I can use the GridPagerTemplate to change the default pager with a customized one but still the TelerikPager control does not allow configuration of the TelerikNumericBox control behind the PagerInput control and the TelerikDropDownList behind the PagerDropDownList control.
Having problem modifying the edit popup within Telerik Grid. Blazor version 4.0.1.
Error message:
+ Menu - Navigation Page Load to div "Desktop" + div desktop + Toolbar + Splitter Vertical +Splitterpane -Overview Grid +Splitterpane - Detail +TelerikEditForm -lot of stuff-
I have created a routine which will highlight the search string in a grid, much like F3 in your browser. It is working well, by intercepting the GridRead events and applying a <SPAN> around the searched text to highlight it. The problem I have is that I don't know if the search filter in the collection provided comes from the search box or another filter applied to the grid. Is there a way that I can determine the filter comes from the search box so I only apply the highlight if it is the search text?
Thanks,
Bryan
When I make a format of $AUD#, or #,#, or even # it works for anything that is not 0.
This also occurs in the demo formats in Blazor Numeric Textbox Overview - Telerik UI for Blazor
I assume it's as designed, but is there any way to force the display of 0?
Not sure if this is possible. Hopefully someone can point me in right direction.
I have a report with a set of columns in beginning and end. And within the center of the report is a set of columns that I wont know how many.
Example:
Col1, col2 , col3, col*, cola, colb, colc, etc....
Col* = 1 to many.
Each row is an order and the Col* represents items on the order.
I take it the telerik grid would have to be set to autogenerate the columns for the grid.
I am just not sure how I build the Class for the report result in this case.
public class RtpOrderItems
{
public string? Col1 { get; set; }
public string? Col1 { get; set; }
public string? Col1 { get; set; }
public string? Col* { get; set; } // ? How would u go about this piece. Closest I came is the Dictionary field but I could get it to work.
public string? ColA { get; set; }
public string? ColB { get; set; }
public string? ColC { get; set; }
}
Thanks in advance
<TelerikPdfViewer Data="Document.Image">
<PdfViewerToolBar>
</PdfViewerToolBar>
</TelerikPdfViewer>
Hi,
I´ve tried the DateTimePicker, DatePicker and TimePicker and they all work great but not when I put them inside a Boostrap Modal.
If I have a TextBox followed by a DatePicker inside an opened Bootstrap Modal and then click the calendar icon in the DatePicker the TextBox gets focused.
Is there a way around this behaviour?
/Daniel