Hello support guys,
I add a radgridview in a WPF usercontrol
[...]
radGridView1.ItemsSource = GetTable();
[...]
private DataTable GetTable()
{
// Here we create a DataTable with four columns.
DataTable table = new DataTable();
table.Columns.Add("Dosage");
table.Columns.Add("Drug");
table.Columns.Add("Patient");
table.Columns.Add("Date", typeof(DateTime));
// Here we add five DataRows.
table.Rows.Add(25, "Indocin", "David", DateTime.Now);
table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);
return table;
}
but when I trie filter a column, I cannot type anything in the filter textbox (see document attached). Is there any property to enable it?
Thank you in advance,
PP
Hi,
I am currently experiencing an issue where unpinned panes are cut off when mousing over the auto-hide tabs.
What's strange is that the first tab sizes correctly (could be any of the panes depending on the first one unpinned).
Here is a simple example:
<Window x:Class="Docking_Test.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" WindowState="Maximized"> <Grid> <telerik:RadDocking x:Name="radDock" HasDocumentHost="False"> <telerik:RadSplitContainer Orientation="Vertical"> <telerik:RadSplitContainer InitialPosition="DockedTop" telerik:ProportionalStackPanel.RelativeSize="100,80"> <telerik:RadSplitContainer InitialPosition="DockedLeft" telerik:ProportionalStackPanel.RelativeSize="40,100" Orientation="Vertical"> <telerik:RadPaneGroup> <telerik:RadPane Header="Gauge" ContextMenuTemplate="{x:Null}"> <Viewbox Stretch="Uniform"> <Border BorderThickness="5" BorderBrush="Black"> <Rectangle Fill="Red" Width="600" Height="700"/> </Border> </Viewbox> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> <telerik:RadSplitContainer InitialPosition="DockedRight" telerik:ProportionalStackPanel.RelativeSize="60,100" Orientation="Vertical"> <telerik:RadPaneGroup> <telerik:RadPane Header="Charts" ContextMenuTemplate="{x:Null}"> <Border BorderThickness="5" BorderBrush="Black"> <Rectangle Fill="Green" Width="1290" Height="700"/> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadSplitContainer> <telerik:RadSplitContainer InitialPosition="DockedBottom" telerik:ProportionalStackPanel.RelativeSize="100,20"> <telerik:RadPaneGroup> <telerik:RadPane Header="Timeline" ContextMenuTemplate="{x:Null}"> <Border BorderThickness="5" BorderBrush="Black"> <Rectangle Fill="Blue" Width="1900" Height="300"/> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadSplitContainer> </telerik:RadDocking> </Grid></Window>
Any help would be greatly appreciated!
Thanks,
Mike
Hi,
I'm using the IsolatedStorage mechanism to get/set my sorts for all my RadGridView(s)...but I need arrows to indicate ASC or DESC for the user selection from the column headers.
Any tips ?
Barry
P.S. I'll also need the same for RadTreeView (which uses manual sorting)
Hello,
I'm trying to apply the full text search to a grid that is bound to a data table (autogeneratecolumns=true). But when I type in something it filters out everything.
If I look at the FilterMemberType and FilterMemberPath properties these are empty.
Also if I try using the default filtering (starts with) it shows an error in the filter box: "the method or operation is not implemented".
You also have this in the gridview examples if you look at "Various Data Source" and choose data table.
How can I fix this?
Hi,
Is there any way of closing the DragVisual window in the OnDrop Event Handler. The reason I ask is that I want to open a modal dialog when an item is dropped into a treeview. I am able to open the dialog as I want, but the DragVisual window will stay on top of the dialog. So in the OnDrop Event I want to close the DragVisual and then open the dialog window. Is this possible?
Regards,
Roar
Hi,
I'm trying to change the HEADER background but my only success left the control inoperable - the sorting and filtering did not work.
I need the *HEADER ROW* background to be this gradient:
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF25578A" Offset="0" />
<GradientStop Color="#FF25578A" Offset="1" />
<GradientStop Color="#FF25579A" Offset="0.42" />
<GradientStop Color="#FF003F87" Offset="0.43" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
..any help would be appreciated.
Barry
(Level-1)Scalar ---valueEnum ---valueString ---ValueBoolean ---valueArray (Level-2) -Array (Level-3) -Scalar ---value -Enum ---value -String ---Value -Boolean ---value -Scalar ---value -Enum ---value -String ---Value -Boolean ---valueI want to display the above tree in RadTreeListControl. The logic to extract "Value" property for each types(enums,scalar,array...) is different. How can I proceed?Can it be done by writing code behind logic? Also Does RadTreeListControl concept of ItemTemplateSelector?
Regards,
Niranjan
Hi Team,
I have an issue with Rad carousel, i would like to move my items in the Rad carousel one by one against a touch movement but currently it sliding more that one item based on the touch movement amount, Please help me to fix this as soon as possible. For example , i want to move one item at first movement and second item should come to next movement.
<telerik:GridViewComboBoxColumn Header="To" DataMemberBinding="{Binding ToWireIns}" ItemsSource="{Binding WireInsCollection}" Width="150" SelectedValueMemberPath="WireInsId" Background="AntiqueWhite" IsComboBoxEditable="True"> <telerik:GridViewComboBoxColumn.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" > <TextBlock Text="{Binding CustodianCode}" Width="50" /> <TextBlock Text="{Binding AccountCode}" Width="40"/> </StackPanel> </DataTemplate> </telerik:GridViewComboBoxColumn.ItemTemplate></telerik:GridViewComboBoxColumn>