Hi
I am using radmulticolumncombobox. when radmulticolumncombobox got focus that time it should be autodropdown automatically. what should I do. I have to use mouse to select the item Instead of that arrow key for navigation and enter key to select the item.
I'm enjoying the rich function available in the RadSpreadsheet, but as so often with the Telerik framework, it's the simple stuff which I find hard.
Yesterday I spent a few hours trying to discover how to get the value of a cell, where I don't know if the cell has a forumula, or is just a value.
Something like:
myString = myWorksheet.cell(2,3).value. (I know this doesn't work - it's just what the code should look like in my head).
So just pick one cell, and return what's visible to the user. I've looked through all the examples, and can't seem to find this one.
I'm just starting with the toast manager and notifications so I apologize if this is way off base. =)
I'm simply trying to dynamically create a new notification, based off of a template I created at design time, called "myRestart". This template is just a slightly modified News template (meaning, I've only changed some text in it really).
Dim toastNotification As RadToastNotification = toastManager.ToastNotifications("myRestart")
toastNotification.Name = "someRandomStuff12435176"
toastManager.ToastNotifications.Add(toastNotification)
When the final line of code above is run to add the notification to the manager, I get the error:
Telerik.RadToastNotificationManager.RadToastNotificationInvalidNameException: 'RadToastNotification: Name must be unqiue.'
I'm not sure what name it would be referring to other than the name property, which as you can see above I changed to some random text and still get the error.
Thank you for any help you can provide!
Hi, I'm trying to use the RadPageView with Navigation Mode and Hierarchy feature. Is it possible to set all the SubPages to be collapsed (item collapsed, not NavigationView Collapsed) at the Form Load event ?
This is current condition at Form Load (all sub pages are expanded)
And this is what I need at Form Load (all the sub pages are collapsed)
Thank you.
hi
How to localization the calendar in the filter radgridview
image atached
thanks
Hello,
I am developing a form that has 2 related RadGrids.
Everything works fine except for the filter in the Child template.
Since its two grids related through a column, each parent line ends up with a "sub grid" of the second one. However, that is just the second grid "filtered" as if it was multiple. Am I correct?
Problem is, when I filter one of those Childs, the filter is applied in all of them like the image below.
I want to filter just that specific Child. Which in this case, is the first one.
Is that possible? How?
Another question I have is about the way this relation is built.
private void radDateTimePicker_RootElement_MouseWheel(object sender, MouseEventArgs e)
{
if(e.Delta>0)
{
radDateTimePicker.Value.AddMonths(1);
}
}