I want to cancel the delete event and not delete the current record. I just want to edit the current record and set the property "IsActive = false".
1.private void MyDataForm_DeletingItem(object sender, System.ComponentModel.CancelEventArgs e)2. {3. Person currentPerson = this.MyDataForm.CurrentItem as Person;4. currentPerson.IsActive = true;5. e.Cancel = true;6. }This code does not work. How can I implement the function?
When binding to a dynamic object in the grid, we all know that the Dynamic column will be treated as an object and the cell templates will not be what is expected for some columns. Is there a property on the Column (I haven't found one digging in the source yet) to set the columns data type or do I need to use a Template Selector to achieve this per column that I don't want to be treated as a string?
Thanks,
Maurice
RadDiagram:


Bing's branding guidelines states, "Bing Maps data provider attribution information can be accessed through the Get Imagery Metadata method in Bing Maps REST Services."
https://www.microsoft.com/en-us/maps/mobile-brand-guidelines
I see there's an imagery metadata classes in RadMaps, but I don't see how to access or use them. Can you provide an example?

In one of our applications, we want to restrict access to a configuration page.
Throughout the application, we are using RadWindow.Alert, Confirm and Prompt as our UI messaging system.
We don't need a crazy overdoing of security to restrict the configuration page, but it would be nice if we could change the TextBox of the RadWindow.Prompt to be a PasswordBox so the contents of the box are not visible to anyone looking at the screen.
Is there any way to do this? I would rather stay with the consistent look/behavior of using the RadWindow since we are already using it in several other places.
Thanks!!
Paul

Hello,
I am trying to spellcheck certain controls in our project. However, whenever I make a call to RadSpellChecker.Check(this.textBox1, SpellCheckingMode.WordByWord), the corresponding spell checking window does not seem to load/open properly (there is just a transparent footprint of the window). Our project uses implicit themes and we suspect this is causing the problem. On a small test project (no implicit themes), the RadSpellChecker seems to work fine. Thank you.

I have changed my shell to a RadWindow, the problem is I now get unable to cast to Window in the BootStrapper. Is there a way around this?
Hi,
I have some problems to keep selection when using the search functionality of the Grid.
To reproduce the problem:
- use the BoundSelectColumn of the Telerik sdk sample
- Hit Ctrl+f to make the search box visible
- Type 'pool' in the search box and check the 'liverpool' row
- Clear the search box => all row are displayed and liverpool is checked That's OK
- Type 'nal' in the search box and check the 'Arsenal' row
- Clear the search box => all row are displayed and Arsenal is checked but liverpool is not That's KO
Why the search functionality is clearing the isSelected property ?
How can i keep it's value between several search ?
Thanks
Ced,