Hi Team,
Could you please suggest to do Copy Clipboard on Button click in blazor?
Thanks,
Vishnu
If I have multiple incoming notifications, how do I limit the number that are visible ? Is there a property to set or is there a way I can programmatically remove certain toasts?
Thank you
Hi, I need open xmlstring in new tab. How can I do it? Do I have to use JSRuttime, if yes, so how?
Thanks for answer
Peter
Hi,
I'm having trouble getting a GridCheckBoxColumn to remember what was checked on page 1 of a grid, if I switch to page 2 and then back to page 1.
I can't tell from the documentation if this is expected behavior or not.
Does anyone else know if I need to write custom code here?
Rob
Is it possible to have the BreadcrumbItem show the link in the browser status bar when a user hovers over it, like a regular anchor tag?
I tried using an ItemTemplate and wrapping the content in an anchor tag with the onclick set to return false, but I couldn't see any way to do this without losing all the existing styling. It seems like I'd have to pretty much rewrite the entirety of the BreadcrumbItem to get access to things like the Root or Last property in order to render the items correctly.
Hi there,
I use the sample code in here and I can see the scrollable icon.
But when I try to add tabs by button click , the scrollable icon is not shown.
How to fix it?
<TelerikTabStrip Scrollable="true"
Width="300px"
TabPosition="Telerik.Blazor.TabPosition.Top">
@{
for (int i = 0; i < tabCount; i++)
{
var title = "long long long-" + @i.ToString();
<TabStripTab Title="@title" @key="@i">
Tab content.
</TabStripTab>
}
}
</TelerikTabStrip>
<TelerikButton OnClick="AddTab">add tab</TelerikButton>
@code {
int tabCount = 0;
void AddTab()
{
tabCount++;
StateHasChanged();
}
}
Hi Team,
Currently I am using Telerik UI Blazor with 3.7.0 version, few cases and intermittently TooltipShowEvent.Click is not working and tooltip is not getting displayed and unable to find root cause for it.
Could you please assist what is causing for this behavior and feasible solution?
Below is sample code snippet where we use 3 tabs
<TelerikTabStrip Class="tmGraphTabStrip" ActiveTabIndex="@ActiveTab" ActiveTabIndexChanged="@ActiveTabChanged" @ref="@TabRef">
@for (var i = 0; i < 4; i++)
{
<TabStripTab Title="@TabName" Class="tmTabHeaderCellStyle">
<TelerikGridLayout RowSpacing="20px" ColumnSpacing="1px" Class="grid-CardlayoutNew">
@*
display data in gridlayout structure for each row/column along with tooltip, we are able to see div selector and target selector Ids from Dev Tools browser
*@
</TelerikGridLayout>
</TabStripTab>
}
</TelerikTabStrip>
Ex:
<TelerikTooltip TargetSelector="@ToolTipCurselector" ShowOn="@TooltipShowEvent.Click" Position="TooltipPosition.Top">
</TelerikTooltip>
Scenario:
Put a visual Linear Gauge into a GridColumn so to show a visual perspective of a count instead of a number.
Issue:
On first page render the Grid to the page, the TelerikLinearGauge shows. If I exit to another page and then come back to the page, the TelerikLinearGauge will not render, and the column is now blank.
How to Refresh:
There must be some trick to having the image of the gauge re-render on subsequent refreshes of the page. I hate guessing and think this is a typical scenario that should be documented on your site. Right?
Preferred Approach:
The Linear Gauge will render and refresh just like all the other columns without custom workarounds and/or techniques.
Telerik.Blazor.Components.TelerikLinearGauge LinearGaugeRef { get; set; }
Code:
<GridColumn Field="@nameof(PackageRequest.ViewCount)" Title="Views" Width="40px" Visible="false">