Hi,
I need to resize the width of FlagEnumEditor whenever propertyGrid is resized, i want to set the new width of propertyGrid to the FlagEnumEditor.
Because if I wont set the propertyGrid width to it, then when more items are checked in FlagEnumEditor its width exceeds the propertyGrid limits and a horizontal scrollbar starts appearing, i dont want a scrollbar, i just want to restrict the FlagEnumEditor's width to the width of PropertyGrid specially when PropertyGrid is resized.
Regards,
Tayyaba
Hi,
I want to show the display name of the Enum in the FlagEnumEditor checkbox list.
Like I have a enum like this:
public enum SceneObjectTypes
{
[Display(Name = "Cross Sections")]
CrossSections = 0,
[Display(Name = "Observation Number.")]
ObservationNumber = 2,
}
I want to display those display names in the FlagENumEditor.
Thanks,
Tayyaba
Hello ! I know there are a lot of topics about this but i do have a issue with drag and rop .
I have a RadTreeView with sting data . The effect i`m looking for is to drag certain string from the TreeView into a Cell of the RadGrid . Each cell to be able to be with different content .
The tree view is just simple Tree view with data .
I want to able only to drag and drop from TreeView to Grid not the other way around
Thanks in advance !
I'm using a RadRichTextBox as a pure preview for printing. IsReadOnly is
set to True, but you can still enter header edit mode.
This means that when the document is first shown, the header is grayed out.
And when you double click the header, entering edit mode, the
rest of the content is grayed out.
This will lead to a kind of "false preview" of the document, as the colors will not match the final print.
Is there any way to enter a "true" read only/print preview state?
How can (resp. should) I enable the MeasureTextOnRender property?
myRadVirtualGrid.MeasureTextOnRender = true;
for (int i = 0; i < myRadVirtualGrid.InitialColumnCount; i++)
{
myRadVirtualGrid.FitColumnWidthToContent(i);
}
It seems to be quite simple, but crashes (unclear exception).
This exception comes from "myRadVirtualGrid.MeasureTextOnRender = true;" only ...
Any idea how to fix it?
Or at least a working example for using the FitColumnWidthToContent method?
Thanks a lot in advance!
Hagen
Hi,
I want to pin and unpin one of the Radpane based on Object selected and Active Tabitem in our application.It is not working as expected,Even though I set
<
telerik:RadPane
Header
=
"Input Parameters"
>
<
telerik:RadPane.Style
>
<
Style
TargetType
=
"telerik:RadPane"
BasedOn
=
"{StaticResource {x:Type telerik:RadPane}}"
>
<
Setter
Property
=
"Visibility"
Value
=
"Hidden"
/>
<
Style.Triggers
>
<
MultiDataTrigger
>
<
MultiDataTrigger.Conditions
>
<
Condition
Binding
=
"{Binding Path=SelectedSharedComponentItem, Converter={uxt:ObjectToBoolConverter}}"
Value
=
"True"
/>
<
Condition
Binding
=
"{Binding IsSharedComponentsTabActive}"
Value
=
"True"
/> </
MultiDataTrigger.Conditions
>
<
Setter
Property
=
"Visibility"
Value
=
"Visible"
/>
<
Setter
Property
=
"IsPinned
Value
=
"True"
/>
</
MultiDataTrigger
>
</
Style.Triggers
>
</
Style
>
</
telerik:RadPane.Style
>
</
telerik:RadPane
>
The new dialogs look really sweet. I wonder if you can control the source for the two navigation panes?
I run an application written with RadWPF on Citrix at a datacentre and we secure the folder structure with active directory but the standard MS dialogs show the full folder structure (all the users filesystem) of the Xen server then you get an access denied message when you try to browse directories you don't have access to. If there was scope to control what the is loaded as the source for the navigation it would make my software look better as the standard active directory denied loop always felt very clunky.
Cheers,
Hi,
When you copy to the clipboard some text of a PDF, the component copies to the clipboard the text as plain text (it does not preserve the font, size, italics, underlines, etc. )
Is there any option to activate this, or any possible workaround ?
Thank you,