To me it is great news reading about the RadFileDialogs where I can apply a custom theme! This is a feature I absolutely require for the product I am developing!
However, are there non-modal versions of RadOpenFileDialog, RadOpenFolderDialog and RadSaveFileDialog?
I do not want to block my Application/MainWindow (e.g. with a modal dialog box) at any time, but rather nest the RadFileDialogs within RadDocking.

Hello.
I have RadGridView with Source bound to QueryableDataServiceCollectionView that looks at OData services.
I have paging by 100 by default. And it normally works with filtering and sorting.
By when I run into grouping.. it goes wrong.
I see only first group on page and i can reach next group turning the page many times.
As I see applying the group involves data request with sorting by name of grouped column.
So I get 100 of 1000 first rows of first group and in result I get only one group on page and i must turn the page 10 times to reach next group.
When I collapse first group i certainly dont see others.
How to solve it and see all the groups?
I've got a combobox with MultiSelection, and in order to implement proper binding of selected items I use the following style:
<telerik:RadComboBox.ItemContainerStyle> <Style TargetType="telerik:RadComboBoxItem"> <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}}" /> </Style> </telerik:RadComboBox.ItemContainerStyle>
The binding of the selection works both ways, but unfortunately the Text-property isn't initialized to my set of selected items. The combobox remains empty until i open its dropdown, and then the Text-property is set. Seems like a bug, but is there maybe a way to get around it?
Hello,
is there any way how to change NumericUpDown control so that mouse wheel would do large step instead of small step? (users would like to add 10 by mouse wheel but only 1 by up/down arrows)
Thanks,
Karel
public class Tuple3iConverter : TypeConverter
{
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
if (context == null)
{
return false;
}
return ((sourceType == typeof(string)) || base.CanConvertFrom(context, sourceType));
}
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
if (value is string)
{
return value;
}
return base.ConvertFrom(context, culture, value);
}
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
if (destinationType == typeof(string))
{
if (value.Equals("New"))
return "lsw822Man";
else
return "NewMan";
}
return base.ConvertTo(context, culture, value, destinationType);
}
public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
{
List<string> genericList = new List<string>();
genericList.Add("lsw822");
genericList.Add("lsw833");
genericList.Add("lsw844");
return new TypeConverter.StandardValuesCollection(genericList);
}
public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
{
return true;
}
}
+
Second, when I resize the label columns and move the resizer to the leftmost position, each row stops in a different location.
I'm using Windows8Theme and this happens when using Windows8Theme. Please see the images attached.
Thanks!
Hello,
Upon application launch I want a RadPane to be maximized.
The user will not be able to change that status of this pane. It will be always maximized.
Later on, other panes will be programmatically displayed.
The user will be able to drag those panes, make them float but will not be able to maximize them.
Attached a xaml fragment I'm currently using.
Thank you,
Zvika
Hi,
Wondering if there's a way to override the default error message, "Error" when args.IsParsingSuccessful is set to false in the ParseDateTimeValue event handler. Would like to provide something more descriptive to my users.
Thanks
Hello,
Is there a way to customize the shape of each connector? For example the rectangle has four outer connectors, can I make one an arrow point up and another connector for that same shape a connector with an arrow pointing down. I have seen this thread http://www.telerik.com/forums/custom-connector-shape?actionMode=replyThread but that changes all the connectors. I want to change each connector with a unique image.
Your help is appreciated.
Thanks,
Amiel
Hello,
I'm looking to create generic templates where displayed info, if of a certain type, would be styled as an hyperlink (blue foreground and underlined). When clicked, the button (My first implementation was using a styled RadButton) sends a command from the code-behind.
Unfortunately, my current implementation even though it works great breaks the Highlighting of the cell and text when searching via the Full search text box on top of the grid.
I have been looking in the source code to understand the way it was implemented, but even templating GridViewCell doesn't seem to work (it never seem to be in Highlighted mode)
Any idea?
Best Regards,
Bastian
In my program, some time i need to disable some propertyDefinition, when the propertyDefinition has NestedProperties, i also need disable the expand to prevent user open or close the expander
i try to set the IsEnable propetry as this code
var expanderButtons= myRadPropertyGrid.ChildrenOfType<RadToggleButton>().Where(b => b.Name == "PART_NestedPropertiesButton").ToList();
expanderButtons.ForEach(t => t.IsEnabled = false);
it is ok at the beginning but when in the case as follows is not
1.when close or open the properties group;
2.when call the NestedProperties.Reset() method
3. when switch the propertyGrid to another one and then switch back
it seems this method can't be done after the second render
how to achieve this?
thank you