I have TelerikGrid and when I click on the item of this grid, I should open Telerik Window Modal component.
<StatusUpdateModalComponent WindowVisible="@ModalVisible"></StatusUpdateModalComponent>
In grid:
<GridCommandButton OnClick="ShowUpdateWindow">Update</GridCommandButton>
In event handler:
protected void ShowUpdateWindow(GridCommandEventArgs args) { ModalVisible = true; }
When it's inside grid it opens many modal windows (for each row).
But if outside it shows only one time and doesn't show again if I click again.
Should I put it inside grid or outside?
I've just upgraded from 3.6 to 3.7 and the paging styling on all of my grids, within my application, are now wrong.
Please see attached images.
Many thanks,
Rob
Hi, I need GridFilterMode.FilterRow for decimal or real numbers without arrows . Perhaps, TelerikNumericTextBox can be used, but without arrows or common TextBox. Could you help me with it. Are there any parameters or templates for it?
Thanks
Peter
Hello,
Update: Solved it with css.
I have a TelerikGrid like:
<TelerikGrid Data="@MainViewModels">
<DetailTemplate>
var details = context as DetailViewModel;
<TelerikGrid Data="details.Details">
<GridColumns>
<Grid Column Field="Title" />
</GridColumns>
</TelerikGrid>
</DetailTemplate>
<GridColumns>
<GridColumn Field="Field1" />
<GridColumn Field="Field2" />
<GridColumn Field="Field3" />
</GridColumns>
</TelerikGrid>
4 columns are generated: one <td class="k-hieracrchy-cell" role="gridcell"> and three <td class=" " role="gridcell"> columns.
But in <tr class="k-detail-row"> -> <td class="k-detail-cell"> there is colspan="3" instead of 4. So the details do not have the full width of the table.
How do I set the colspan to 4 or expand the detail table to the full width of the parent table?
Thanks
Is there a way to have the cursor position on the left starting position of the textbox when the textbox gets the focus when the user tabs to the control?
It now always starts at the right most position after the format: dd-MM-yyyy <-- here
I guess if the control has an onFocus event it would be possible using javascript.
thx in advance!
I'm using TelerikTreeList in a Blazor project. However, the paging appears very ugly. As you can see in the attached image, the paging elements are spread over three lines. That also doesn't depend on the width of the TreeList. I cannot influence the appearance via TreeListSettings --> adaptive. Anyone know what the problem is?
In this demo example:
I want to build that Hambugger side menu that pops out expanded options for the icons you click on.
That demo doesnt show how that was done. Do you have a demo example of how that was done?
New, very new, to Blazor.
Hello to all!
I want to share with you my experience of using Telerik charts to build a box and whisker chart.
This chart is extremely useful in statistical data processing to identify outliers in a data set.
https://en.wikipedia.org/wiki/Box_plot
Telerik doesn't have a special box and whisker chart component, but it's pretty easy to make one yourself.
To do this, we need a candlestick chart to visualize the range of data and a line chart to visualize outliers.
The open-source library MathNet.Numerics is used to calculate the summary statistics of five numbers.
https://numerics.mathdotnet.com
Attached is a sample code, enjoy!