1,632 questions
0
votes
0
answers
18
views
multilevel Hierarchy on button click on TelerikGrid
I am trying to build multilevel Hierarchy TelerikGrid by hiding the default button and adding a custom Link. If a parent has sub list then the custom button will appear and on clicking the sub list ...
0
votes
1
answer
39
views
Unable to use ComboBox with Inline edit for Kendo MVC Grid
I have a basic grid that utilizes the inline edit feature. My goal is to use a combo box to enforce a specific value that can be saved. However, I'm not sure what I'm missing, as the edit still ...
0
votes
0
answers
86
views
Telerik RadGridView for WPF ComboBoxColumn does not show right
I'm using Telerik RadGridView for WPF and trying to get one column to be a combobox column. I can do that, but you have to click into it to edit the cell, then click again to drop down to get it. I'...
0
votes
1
answer
93
views
Telerik Blazor grid trim filter
do you guys know how to add a .trim() to any value entered in a telerik grid filter field. I dont want any white space in the field
<TelerikGrid Data="@GridData"
Pageable="...
0
votes
1
answer
270
views
My C# Blazor WebAssembly TelerikGrid Tooltip duplicating for all my rows
I have a grid that is populated with data from my Database using a DTO and a controller and I have the tooltip working but my issue is that it is the same tooltip for each row in my grid and I can't ...
1
vote
1
answer
560
views
How to Nest a TelerikGrid inside TelerikForm with Blazor
I have a TelerikForm with FormItems --> FormGroup --> FormItem(s) and I am wanting to have in the middle or bottom of my form to have a Grid in which I can add new items with multiple rows.
I ...
1
vote
1
answer
278
views
Trying to add a filter to a GridViewDataColumn from a derived class
So I have the following scenario
A RadGridView with the bingding for a List
This is My XAML
<telerik:RadGridView
x:Name="grid"
Grid.Row="0"
ItemsSource="{Binding ...
1
vote
1
answer
282
views
How to set height of row in ASP.NET Core Telerik grid?
I have grid that contains cell with multiple line string or when the string is too long it stretches whole row height.
@(
Html.Kendo().Grid<GuideViewModel>()
.Name("gridGuides")
...
1
vote
1
answer
607
views
Telerik for MAUI - how to fix RadDataGrid not filling the available grid space?
I'm having this UI Issue with the RadDataGrid feature of Telerik.
The above Image demonstrates my issue. As you can see on the right hand side there is white space representing the available space in ...
0
votes
0
answers
59
views
Paging not working correctly in Radgrid VB.net
Hello Everybody I'm using Radgrid to view data from the database with (Paging"NextPrevNumericAndAdvanced", Sorting, Filtering, and grouping) but paging does not work correctly
Ex. I wanted ...
0
votes
1
answer
96
views
How can I do color text hyperlink in Telerik ASP.NET Core Grid?
How can I do color text hyperlink in Telerik ASP.NET Core Grid?
I don't find description for this in official Telerik forum.
The screenshot is:
enter image description here
1
vote
1
answer
539
views
TELERIK Grid Blazor- Type arguments for parameter cannot be inferred from usage
Type arguments for method TypeInterface.CreateTelerikTreeList_1(RenderTreeBuilder, int, int, IEnumerable, int, RenderFragment) cannot be inferred from use.
This error appears when my api returns this:
...
0
votes
0
answers
424
views
Filtering both Parent and Child Grids in Telerik hierarchical Grid
Let's say I have a super basic implementation of the Telerik Hierarchy Grid for Blazor.
<TelerikGrid Data="salesTeamMembers">
<GridToolBar>
<GridSearchBox />
...
0
votes
1
answer
173
views
Telerik Kendo grid unable to get control value
I am unable to get edited control value from telerik jquery grid row. I am using .net core telerik kendo grid
@(Html.Kendo().Grid(Model.LedgerEntries)
.Name("LedgerEntries")
.ToolBar(tools =...
1
vote
2
answers
1k
views
How to customize button in Telerik form / kendo-form?
I'm new in the Telerik UI. When I want to customize a kendo form in asp.net razor pages. But I to rename button name. But I couldn't find any button field. I follow this link [Telerik Form][1]. I edit ...
0
votes
0
answers
128
views
Telerik Radgrid Issue in Modal box ASP.Net Webforms
I am using Telerik Ragdrid in the Modal Box but it is not fetching any values on OnBatchEditCommand in the Radgrid that I populated from jquery.
Here's the code from which I populated the Radgrid
var ...
0
votes
1
answer
97
views
how to get current sequence after reorder columns in kendo-vuejs
When you reorder columns then table columns reorder but columns array showing old sequence, so here you didn't get udpated columns list siquence, but in answer section you can get the updated columns ...
0
votes
1
answer
151
views
Error while passing parameter to RadGrid_NeedDataSource() Event
I am trying to pass DataTable to RadGrid NeedDataSource event function and assign that DataTable to RadGrid but facing below error:
Description: An error occurred during the compilation of a resource
...
0
votes
1
answer
282
views
Conditional Delete after button click (radgridview)
assume I have 2 columns in gridview : column A and column B. I want to delete the whole row if Column B has no value. this code checks column B if it doesn't have any value. next, how to enter the ...
0
votes
1
answer
334
views
How to customize Telerik Header Context Menu?
I want to customize the Telerik Header Context Menu by adding additional button to it and I want to change labels of existing buttons. How can I do it? I know that I can set custom CSS class, but this ...
0
votes
1
answer
35
views
Is there a way to count unsaved column cells in ASP.NET mvc telerik then create a pop up window when the user hasnt saved after 10 rows
Currently I am trying to count the number of unsaved columns a user has edited so that a pop up window will remind them to save or periodically produce the pop up message again.
My problem is i cant ...
0
votes
1
answer
1k
views
How to customize Telerik Blazor-UI grid filter options for entire grid when using filter-row?
I have a grid such as the below. How can I restrict the filter options for all grid columns to only 'Equals' and 'Contains' when FilterMode is set to FilterRow?
@using Telerik.DataSource;
<...
0
votes
1
answer
656
views
telerik:radgrid how to get all data from backend including pagination
I am using telerik:radgrid and i have an export to excel Button. The Grid has filters and pagination.
The export button generates an excel but only with the data in the page visible and not from the ...
-3
votes
1
answer
443
views
[Vue warn]:Unknown custom element: ... -did you register the component correctly?
When you get
[Vue warn]: Unknown custom element: <...> - did you register the component correctly?
For recursive components, make sure to provide the "name" option.
found in ---> &...
-1
votes
2
answers
533
views
Disable "Add New Record" Button when page loads
My page has a comboBox which filters grid values. Im trying to disable grid's "add new record" button, when comboBox is empty, and enable the button when a value is selected and ...