Telerik Forums
UI for WPF Forum
3 answers
1.0K+ views
Hi, 

I'm trying to place two grids in a window that looks like the below.

----------------------------------------------------------------
|                                                                              |
----------------------------------------------------------------
|                              |           |                                    |
|        GridView      |           |        GridView            |
|          Here            |           |          Here                 |
|                              |           |                                    |
|                              |           |                                    |
|                              |           |                                    |
|                              |           |                                    |
|----------------------------------------------------------------
|                                                                              |
----------------------------------------------------------------

Now the grids should resize with the window. This led me create a Grid with the following row and column definitions.
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto" />
            <ColumnDefinition Width="Auto" />
            <ColumnDefinition Width="*" />
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>

This works great when there aren't very many items in the gridviews but the gridview in the left will almost always have over 1500 items in it. I did read your documentation where it states that placing gridviews in a spot where it measures infinity it will perform slowly. How would you recommend I layout the view so that the grid resizes with the window and still allows for a large amount of items?
Carlos
Top achievements
Rank 1
 answered on 10 Feb 2014
1 answer
134 views
What effect, if anything, does putting a slash in from of the field bound to the control, have? For example:

​
<telerik:RadMaskedNumericInput
    Grid.Column="1"
    HorizontalAlignment="Left"
    Grid.Row="2"
    Margin="5,0,0,0"
    VerticalAlignment="Bottom"
    Mask="####"
    FontFamily="Century Gothic"
    FontSize="16"
    Value="{Binding /ProbationStartYear}"
    IsClearButtonVisible="False"
    AutoFillNumberGroupSeparators="False" />
Boris
Telerik team
 answered on 10 Feb 2014
1 answer
267 views
 I updated my WPF controls and now my border is blank when I set my border thickness to 0.5, the border is blank, or doesn't show.

  myMaskedTextBox.BorderThickness =  new Thickness(0.5);

if do: 
  myMaskedTextBox.BorderThickness =  new Thickness(1);  it's ok, but thicker than I want.

Sia
Telerik team
 answered on 10 Feb 2014
11 answers
947 views
Hello,

How can I hide filtering options?  I do not want to display the 'And / Or' dropdown as well as the 'Is equal to' dropdown and the textbox that goes along with it.  I tried using the DistinctFiltersVisibility property, but it did not hide those options.  Is that not what it is supposed to do?  Do I need to override the template and do custom filtering to hide these options?
Yoan
Telerik team
 answered on 10 Feb 2014
1 answer
619 views
Hi,

I am using RowActivated for my RadGridView and have a few issues:

- The RowActivated event is triggered on a mouse double click but NOT when Enter is pressed. According to the documentation and a lot of posts (with provided examples) it should. Since a lot a users get the event triggered successfully by Enter key down, I probably have some properties set that prevents this. If so, which properties would block the event (please see my XAML below).

- With the RowActivated event, I'd like to send a command argument that contains the string displayed in the first column. How do I achieve that (in XAML and in C# code)?

This is my XAML:

                <Telerik:RadGridView
                    RowActivated="HandleEvent_GridRowDoubleClick"
                    Telerik:StyleManager.Theme="Office_Blue"
                    RowIndicatorVisibility="Collapsed"
                    SelectionMode="Single"
                    Width="Auto"
                    CanUserFreezeColumns="False"
                    CanUserSortColumns="True"
                    HorizontalAlignment="Left"
                    HorizontalContentAlignment="Left"
                    ItemsSource="{Binding DataTableUnitLoads.DefaultView, Mode=OneWay}"
                    VerticalAlignment="Stretch"
                    AutoGenerateColumns="False"
                    ShowGroupPanel="False"
                    EnableColumnVirtualization="True"
                    ShowColumnFooters="True"
                    hlp:RadGridViewCustomKeyboardCommandProvider.PreventEnter="True"
                    ScrollViewer.HorizontalScrollBarVisibility="Auto"
                    EnableRowVirtualization="True"
                    CanUserReorderColumns="False">

And this is my C#:

        private void HandleEvent_GridRowDoubleClick(object sender, RowEventArgs e)
        {
        }

Thanks in advance for your help!
Dimitrina
Telerik team
 answered on 10 Feb 2014
4 answers
219 views

    Hi ,

        Could any one please help me in showing the stroke in the middle of the line series as shown in the image.

Thanks,
Ruth
Pavel R. Pavlov
Telerik team
 answered on 10 Feb 2014
2 answers
188 views
Is there a way to have a RadRibbonGallery automatically resize its width based on the content available when the window is resized? I currently have the ViewportWidth set to display three of the items it contains, but if there is more window space available I would like for it to display as many as possible and fill up the remaining whitespace in the ribbon. I have seen this functionality in MS Word with the Styles gallery.
Melissa
Top achievements
Rank 2
 answered on 10 Feb 2014
1 answer
127 views
Hi,

i bind a DataTable to my RadGridView like this:

​DataTable source = new DataTable();
source.Columns.Add("Nr.", typeof(int));
source.Columns.Add("Modul", typeof(string));
source.Columns.Add("ID", typeof(string));
source.Columns.Add("Nummer", typeof(string));
source.Columns.Add("Suchwort", typeof(string));
source.Columns.Add("Inhalt", typeof(string));
source.Columns.Add("Feld", typeof(string));


How do i set the width of each column in code behind?

Thanks a lot
Best Regards
MJ
Dimitrina
Telerik team
 answered on 10 Feb 2014
1 answer
108 views
This is big and unacceptable.  Please fix this now, I'm on 2013.3.1316.40.
What did you do to the input box on the last update.  This is the 2nd error I've found now. 

I have some sample code that will show you.

<Window xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"  x:Class="RadTextChanged.MainWindow"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <StackPanel>
        <StackPanel Orientation="Horizontal">
            <TextBlock Name="txt123" />
            <telerik:RadMaskedTextInput  Margin="10 0 0 0"  ValueChanged="tbChange_ValueChanged"  Name="tbChange" Width="200" Height="30" />
            <Button Content="Change Rad TextInput" Margin="10 0 0 0"  Click="Button_Click"  Width="200" Height="30"  />
            
        </StackPanel>
            <StackPanel Orientation="Horizontal">
                <TextBlock Name="txtPlain" />
                <TextBox  Margin="10 0 0 0"  TextChanged="tbPlain_TextChanged" Name="tbPlain" Width="200" Height="30" />
                <Button Content="Change Textbox" Name="btnPlain" Margin="10 0 0 0"  Click="btnPlain_Click"  Width="200" Height="30"  />
 
            </StackPanel>
        </StackPanel>
    </Grid>
</Window>

code behind
namespace RadTextChanged
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
 
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            tbChange.Value = "test123";
 
        }
 
        private void tbChange_ValueChanged(object sender, Telerik.Windows.RadRoutedEventArgs e)
        {
            txt123.Text = "Hello";
        }
 
        private void tbPlain_TextChanged(object sender, TextChangedEventArgs e)
        {
            txtPlain.Text = "Hello Plain";
        }
 
        private void btnPlain_Click(object sender, RoutedEventArgs e)
        {
            tbPlain.Text = "TestPlain";
        }
    }
}
Milena
Telerik team
 answered on 10 Feb 2014
1 answer
82 views
Hi All,

I took the dlls of Q3 2013 telerik dlls for WPF 4.0,but when building the aplication,it is showing that we need 4.5 framework.Could you please guide in this issue?Are there any dlls used with 4.5 framework in 4.0?


Thanks,
Ruth
Yana
Telerik team
 answered on 10 Feb 2014
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
InlineAIAssistant
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?