Dear Telerik Team,
I am using the RadNumericUpDown control for accepting the numeric value. I have made hidden the up and down tick button so it look like simple textbox. The purpose of using this control specific for Distance and Weight values so it can be in any unit of measurement. For example, meter, millimeter, feet, kg, ton etc.
For simple UOM like meter, I can simply set the CustomUnit as "m" and it works fine. But How can I represent the value of 99.11 feet to feet and inch e.g., 99 ft 1 in
So whenever user trying to edit the value, it will be in feet only and once it is edited value will be displayed in feet and inch.
How can I achieve this behavior using RadNumericUpDown control ?
Thanks & Regards,
Hiren Lad

Hi,
Would it be possible to have an editable RadMasked Part to mimic the RadWatermarkTextBox with floating Label?
Hello everyone,
in my application I have 2 different usercontrol. In first ine I have a RadTileView, In the other usercontrol I have a simple list of element present in the first usercontrol (with a dedicated button) and i want to open the radtile view element by click on the button.
Through this code
var container = radTileElement.ItemContainerGenerator.ContainerFromItem(item) as RadTileViewItem;
if (container != null)
{
container.TileState = TileViewItemState.Maximized;
}i can open the Tile view from the other usercontrol, but only if all element of RadTileView are in Minimized state. If a tile view element in the RaTileView is Maximized this call
radTileElement.ItemContainerGenerator.ContainerFromItem(item) as RadTileViewItem;return null.
Any suggestions?
Thank you
Hello everyone,
I have a table in my RadDocument. I create the tabele with code and insert it at the end in my RadDocument.
Is there a way to keep the whole table together if the table reach a page break?
Best regards and thanks for your help :-)
Using the visual studio,when the mouse over the code folding button,the code including region line will become thick.
look at the attachment.
How to realize for the RadSyntaxEditor?
I'm making a simple file upload application that should only accept Excel files.
I've found out how I need to set the filter on the RadOpenFileDialog and I'm throwing an error (via messagebox) when the extension is wrong when dropping a file on the control.
public RelayCommand FilePathChangedCommand => new RelayCommand((ea) =>
{
if (!string.IsNullOrEmpty(FilePath))
{
var extension = Path.GetExtension(FilePath);
if (!extension.In("xls", "xlsx", "xlsm"))
{
//throw error
}
else
{
//process file
}
}
});When the extension is wrong, I would also like to clear the value in the RadFilePathPicker. But when I make it empty in the FilePathChanged event, it doesn't do anything.
What would be the correct approach to clear the control in this case?
I have this code in xaml:
<telerik:RadDiagram
x:Name="RadDiagram"
primitives:BackgroundGrid.LineStroke="{DynamicResource SelmoBrushDiagramLineStroke}"
..../>The problem is before the colors were predefined. It was a hex value.
Everytime I load the digram xml with RadDiagram.Load(xml) the LineStroke has the hex color which was saved before in the serialzed xml and the new Dynamic Color doesn't get applied.
Is there any possibility to override the loaded diagram xml, or maybe set the the LineStroke in codebehind after loading the diagram xml?