Hi Everyone,
I am using RadGridView to populate my data. For one of cell I am using GridViewDataColumn. Is there any BeginningEdit event at GridViewDataColumn level ?
Or how can I use BeginningEdit event at RadGridView level using MVVM pattern.
Is there any examples ? My requirement here is when cell is start edit. I want show another form where user can enter some data.
Regards,
Rajuendar.
Hello,
i have a RadRichTextBox (LayoutMode="Flow") and the RadRichTextBoxRibbonUI.
When i change the font/size through a combobox of the ribbon, the RichTextBox does not get the focus back (it stays on the combobox). The cursor in the RichTextBox is not blinking. When i continue typing, it only changes the selection of the combobox and does not insert text in the RichTextBox. Other controls like the buttons are working as expected.
This behavior does not appear when i change the LayoutMode to Paged. Unfortunately i dont need a paged editor. :(
I can easily reproduce this, by taking the "Telerik Editor"-Example from the SDK Samples Browser and changing
<
telerik:RadRichTextBox
Name
=
"editor"
LayoutMode
=
"Paged"
/>
to
<
telerik:RadRichTextBox
Name
=
"editor"
LayoutMode
=
"Flow"
/>
I tried to set the focus manually in the selection changed event of the combobox, but this didn't work.
Is there a way to get this working?
Thanks
Hello All,
I have a quick and easy question about setting up a cell datatemplate. I have a class that has two properties: a boolean value and a string value. In my app, I have created a collection of this class and would like to display it in a grid. I would like to display the boolean value as either a check-mark or a x-mark as in the example image I've attached... I'm pretty sure this can and should be done as a celldatatemplate, but I have no idea as to where to start... Could someone please point me in the right direction??? Is there a good example of this or is there a good explanation of setting a template up somewhere out there???
Thanks in advance,
Kevin Orcutt
I've got some weird behaviour going on, its probably something I've done, but I can't seem to work out whats going on.
I've set up two stack panels on my usercontrol, one called New Trip and one called New Misc Job - on initialize of the usercontrol I'm setting up the DragDropManager - actually all I'm doing is specifying the methods for DragIntialize like so :
DragDropManager.AddDragInitializeHandler(newTripDrag, NewTripDragInitialize);
DragDropManager.AddDragInitializeHandler(newJobDrag, NewMiscDragInitialize);
When the user drags one of the stackpanels onto the scheduleview, I've got some custom dragdropbehaviour going on, but at the end of the Drop method, it always calls base.Drop() and this is where the weird behaviour comes in, when I'm dragging a trip, it works perfectly and the trip is selected afterwards, but when I drag a misc job, it fires off the SelectedAppointment method with a null value which makes nothing selected afterwards.
Why would it be calling the SelectedAppointment for one and not the other, is there something I can change to stop this from happening, I've attached the Call Stack from the point of base.Drop() to Setting the SelectedAppointment for when I dragged a Misc Job (if that helps).
So I seem to have a memory leak. I am using JustTrace and Memory Profiler. What happens is in using the RadListBox on one of my views, I see InternalScope objects keep adding up everytime I open the view that has that RadListBox. But I don't know what that class is used for or what would make that problem? Any detailed help on how to find the root of this problem would be appreciated. Been trying to figure it out for days and have commented out templates and styles.
Hi!
I would like to suggest that page numbers and a page title be optionally added when exporting a GridView to Pdf. This should be easy to implement since RadSpreadProcessing already has a class "HeaderFooterSettings". Just expand the "GridViewPdfExportOptions" with two options: ShowPageNumbers (true/false) and PageTitle (string). Should be done in no time.
Regards
Heiko
I had browsed for a similar issue & seen the below link which had the same issue of mine, its said by Telerik that issue is resolved but I could not get the fix anywhere.
http://www.telerik.com/forums/radwindow-autosize-on-runtime#e9i78SNv102TDO2DCh_z6g
I have created a RadWindow and its content is set to a wpf view which has some controls & a RadExpander. I want this RadExpander to be shown when its expanded(my RadWindow Width should be resized accordingly).
I have set ResizeMode="NoResize" and SizeToContent="True" for my RadWindow. But RadWindow doesn't seem to adjust according to its content, how can I achieve It?(I have not set any Height or Width to my RadWindow)
Is SizeToContent changed to Enum to support WidthAndHeight or what is the fix for the problem given??