Hi,
I was wondering if with the Bing Search feature in radmap is possible to get a Postal Code inputting an address (eg: City, Nation and street)...
Any idea?
Thank you
Adding a button collumn to the grid that passes the 10th collumn with this method the 11th overlaped the 10th a a 11th is created empty
Any ideias
GridViewCommandColumn commandColumnV5 = new GridViewCommandColumn();
commandColumnV3.Name = "CommandVer5";
commandColumnV3.UseDefaultText = true;
commandColumnV3.DefaultText = "Rejeita";
commandColumnV3.HeaderText = "Regeita";
commandColumnV3.Width = 20;
grdDocumentos.MasterTemplate.Columns.Add(commandColumnV5);
Hello,
I've started using the Telerik UI WinForms Map control, and have seen some samples using MapRectangle.
However, I can't find this class anywhere in the Telerik namespaces. All I can find is MapPolyline and MapPolygon.
My referenced assemblies are:
Telerik.WinControls.dll
Telerik.WinControls.RadMap.dll
Telerik.WinControls.UI.dll
Am I missing an assembly reference?
I appreciate any guidance you can provide.
I'm using RadGridView for WinForms. How do I get the DataRow object from the RowsChanged event below?
private void radGridView2_RowsChanged(object sender, GridViewCollectionChangedEventArgs e)
{
if (e.Action != NotifyCollectionChangedAction.Reset)
{
DataRow myRow = ????
}
}
Thanks!
Hello,
I'm facing a little problem concerning the radVirtualKeyboard control. I'm located in France and I would like the virtual keyboard to have the AZERTY-laoyout. No matter If I use the property SynchronizeCultureWithSystem or if I set the culture info manually, the keyboard only adapts some of the keys but the general layout remains QWERTY.
I'm using the code
radVirtualKeyboard1.SynchronizeCultureWithSystem = false;
radVirtualKeyboard1.VirtualKeyboardElement.CurrentCulture = new System.Globalization.CultureInfo("fr-FR", false);
This is the result:
The code
radVirtualKeyboard1.SynchronizeCultureWithSystem = false;
radVirtualKeyboard1.VirtualKeyboardElement.CurrentCulture = new System.Globalization.CultureInfo("de-DE", false);
leads to this result which is not correct as well because the german keyboard layout is QWERTZ
Is there maybe another property to set to apply the culture info to the entire keyboard?
Thank you in advance and have a nice day!
Jana
How can I hide the lines between the rows? (I use Office2019 theme)
I already tried this:
private void RadGridView_CellFormatting(object sender, CellFormattingEventArgs e)
{
e.CellElement.DrawBorder = false;
}
Gridlines are gone but the horizontal lines are still there.
Hi Team,
In Our application we are using the Telerik RadGridview, in that while we navigating the Next icon in the condition of there is no entries the Grid headers are not displaying. It Should show like the ScreenShot. I have added the video for your reference. Please do the needful.
Video link : https://ttprivatenew.s3.amazonaws.com/pulse/suganya-gmail/attachments/17976581/TinyTake27-09-2021-02-48-42.mp4
ScreenShot : https://prnt.sc/1ttpo5j
Hello,
I would like to use the virtualKeyboardForm in a WinForms application on a tablet. I would like to know if it's possible to fire event when pressing specific keys.
For example: if I click on the cross in the top right corner of the virtualKeyboardForm, I want that the associated textbox is not focused anymore. Or that if I click on Enter, the keyboardform will close automatically and the associated textbox loses its focus.
Is there a possibility to achieve this?
Thank you in advance and have a nice day!
Hello,
I am trying to get the screentip with a rounded corner. I have changed the Shape to RoundRectShape. Although, the shape is now rounded rect, but I still see the corner is painted with some other color.
Below is the code of my custom screentipelement
Padding = new Padding(4, 0, 4, 0);
ForeColor = Color.White;
Shape = new RoundRectShape(4);
ScreenTipFill.GradientStyle = GradientStyles.Solid;
ScreenTipFill.BackColor = Color.Blue;
ScreenTipBorder.BoxStyle = BorderBoxStyle.SingleBorder;
ScreenTipBorder.ForeColor = Color.Blue;
This is my output
Thanks