Hello Telerik Team,
I'm using RadGridView and has checkBoxColumn with Enabling HeaderCheckBox. When RadGridView is set to ReadOnly, checkBox from Data cell can't change toggle state. But checkBox from Header Cell can still changeable.
How to prevent this cause ???
Something so simply yet Telerik seems so un-intuitive.
I want a buttonface background color, but the cells I want white. It seems when I set the background color, it then colors the cells also. That to me seems very un-intuitive. Putting my gripe aside, any idea how to achieve this simply issue?

Hello,
I've just started working with RadMap and am trying to figure out what Wraparound does. My goal is to show a graphic in the tile layer and when the user pans all the way to the left side of the graphic, I'd like the pan to stop. Same goes for the right hand side of the graphic. All of your samples seem to wrap around. For example, with Bing maps, I'm centered on Europe -> hold down the pan left button, the map goes all the way around the world and pans to Europe again (and again...). What I'd like to have happen is that the user can pan no further left than Europe, and no further right than say, the Atlantic Ocean. I'm not tied to the BingMapProvider, and am ultimately going to write my own IMapProvider.
Additionally, when I set the Wraparound property in the designer, it doesn't persist.
Thank you.




Hi,
We are having issues with
older road imagery from Bing Maps API. Some roads are not getting displayed on the map.
We are using Telerik.Windows.Controls.RadMap . We have received information that we need to request
the imagery from BingREST imagery and we should be using the
"RoadOnDemand" Imagery Set as per the documentation here: https://msdn.microsoft.com/en-us/library/ff701716.aspx.
Can you help us to understand how to set property ImagerySet to 'RoadOnDemand' for Telerik.Windows.Controls.RadMap that we are using?
Thanks,

Hi
I have a form with 6 collapsible panels on it... if the user doesn't not have confidentiality access and the information is confidential then I want 5 of the panels to close and be disabled..so the user can only view 1 panel. Unfortunately the form loads with data before the panels close (even though the pane.collapse is called before the data load event...so the user can see the data from a confidential section...even if briefly.
Can you think of a way to stop this so that no confidential data can be viewed?
Thanks

When a user edits a cell and I need to update a row, I need to know the old value that was there before (I cannot get it without the entire data set).
Right now as a hack I'm saving it in CellBeginEdit, but I'm hoping there's a better solution:
string oldValue;
private void deviceGrid_CellBeginEdit(object sender, GridViewCellCancelEventArgs e)
{
if (e.Column.Name == "DeviceName")
{
oldValue = e.Row.Cells["DeviceName"].Value.ToString();
}
}
private void deviceGrid_CellEndEdit(object sender, GridViewCellEventArgs e)
{
if (e.Column.Name == "DeviceName")
{
string newName = e.Value.ToString();
Device device = Program.SapphireService.GetDeviceXmlByID(oldValue);
Program.SapphireService.UpdateDevice(device, newName);
}
}
