Hi,
Is it possible to use google address autocomplete for telerik winform ? I want make the textbox autocomplete for address. like this:
https://developers.google.com/maps/documentation/javascript/places-autocomplete
but i think it is only for web form.
Thanks.
HI *,
I try to use OverwritePrompt feature like this:
<
p
>radBrowseEditor1.DialogType = BrowseEditorDialogType.SaveFileDialog;
</
p
><
p
>(radBrowseEditor1.Dialog as SaveFileDialog).OverwritePrompt = false</
p
>
;
But still having a question "<file path...> does not exist. Do you want to create?"
I would like to omit this question in this case but it seems to be not possible...
Here is the link: https://msdn.microsoft.com/en-us/library/system.windows.forms.savefiledialog.overwriteprompt(v=vs.110).aspx
Thanks a lot
Rostislaw
Hello, i want to extend functionality of the treeview with a textbox at top for search funtions. I'm trying to make with code similar to this (see below) but Treeview don't have "Item" like TextBox to get the instance. How can i get this functionality?
private static void AddIconToTextBoxElement(RadTextBoxElement textElement, ImagePrimitive icon)
{
var item = textElement.TextBoxItem;
textElement.Children.Remove(item);
icon.SetValue(DockLayoutPanel.DockProperty, Telerik.WinControls.Layouts.Dock.Left);
var dockPanel = new DockLayoutPanel
{
LastChildFill = true
};
dockPanel.Children.Add(icon);
dockPanel.Children.Add(item);
textElement.Children.Add(dockPanel);
}
I have three forms .In the form Button Exit Click form is closed but the Data is not initializing in the Text Box and Gridview.
Hi ,
When i click to the line "Click here to add new row" on grid view. It will enter to add new mode. Can i put one more row above a new row like "Please press enter to save" and a new row will be below. Because i want to guide the customer know how to save the new row. Can i do that or some way like that ?
Thanks.
dataTable.Rows.Clear();
dataTable.BeginLoadData();
((logic for adding rows to the data table is here))
dataTable.CaseSensitive = false;
dataTable.EndLoadData();
radGridView.MasterTemplate.BeginUpdate();
radGridView.MasterTemplate.CaseSensitive = false;
radGridView.DataSource = dataTable;
radGridView.GridBehavior.GridControl.CaseSensitive = false;
radGridView.MasterTemplate.EndUpdate();
I am using the following Telerik library:
WinForms Q3 2011 (version 2011.3.11.1116)
Can you please explain how to turn off case sensitivity for the filters in your WinForm grid control?
Can you also provide the class paths for all the CaseSensitivity flags?
e.g. 1) radGridView.MasterTemplate.CaseSensitive
2) radGridView.GridBehavior.GridControl.CaseSensitive
3) etc...
Thanks so much!
Scott
I realize we cannot add a RadSeparator to the RadRibbonBarBackStageView currently (it's not a RadItem) but there really should be some kind of "Separator" for the navigation (we have separators for every other navigational elements: ribbons, groups, menus.)
I also realize that earlier versions of the Office Backstage did not include a Separator however, all of the newer versions do so no harm in allowing someone to select "Windows 7" as their theme and still allow this, is there?
Adjustable Properties should be (IMHO)
EdgeWidth - this is how close to either edge the line will be drawn (there's no reason the line has to go 100% across)
LineHeight - in pixels how thick to draw the line. set limits at something reasonable like 1-10
LineColor - obvious
Height - users should be allowed to adjust how tall/short the separator is. This is not to be confused with LineHeight. This is the total height of the control whereas LineHeight is just the line being drawn.
The attached image shows what I came up with in my ap - I got a little fancy with the line itself by allowing a leading and trailing linear gradient and my usercontrol lets me select the length of the gradiation but no need to go totally cray cray.
Anyway just my two cents :)
-C
Hi,
I want to align my popup to snap the left or the right corner of its RadPopupEditor item. (See the picture for more details).
As you can see the popup is not aligned neither to the left nor to the right. How can I control the behaviour of the popup?
Things i have tried so far:
popUpEditorConnect.PopupEditorElement.Alignment = ContentAlignment.TopLeft;
popUpEditorConnect.Popup.AlignmentRectangleOverlapMode = AlternativeCorrectionMode.Flip;
popUpEditorConnect.Popup.DropDownAnimationDirection = RadDirection.Left;
popUpEditorConnect.Popup.HorizontalAlignmentCorrectionMode = AlignmentCorrectionMode.SnapToEdges;
popUpEditorConnect.Popup.HorizontalPopupAlignment = HorizontalPopupAlignment.LeftToLeft;
Hello,
A while back I requested the ability to embed fonts when exporting from a RichTextEditor to pdf. Eventually this functionality was added (thank you for that!), but in my current use case it's causing pdf filesizes to be extremely large compared to the workaround solution I've initially implemented. I was wondering if anyone at Telerik would have an idea on the differences between the two methods and why one is much larger than another.
Use case info:
I'm required to take the output from a bunch of RichTextEditors, export each one to a pdf and then merge those individual pdfs into a larger one. By using the PdfFormatProvider, this causes fonts to be embedded multiple times in the merged pdf (and makes the filesize really large).
However, before this functionality, Telerik recommended a workaround to get fonts embedded that takes the content from the the RichTextEditor into a docx file, then imported back in and exported to a pdf. This was a hacky workaround that causes some formatting issues, but actually embedded the font and didn't balloon the filesize.
(for details on the workaround, it was recommended in this thread: http://www.telerik.com/forums/embedding-fonts-in-pdf-output)
Is there anyway to make the proper pdf export provider work similar to the one in the workaround? Using the correct export provider fixes a bunch of my issues, but the duplicate embedded fonts causing large file size is a dealbreaker unfortunately.
Thanks!
-Tom