This is a migrated thread and some comments may be shown as answers.

RadGridView Selection Changed

2 Answers 126 Views
MediaPlayer
This is a migrated thread and some comments may be shown as answers.
senthil nath
Top achievements
Rank 1
senthil nath asked on 09 Oct 2009, 01:22 PM
Hi

Iam using RadGriview  in web application

i want selected column  value

Regards
S.Senthilnathan

2 Answers, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 09 Oct 2009, 01:30 PM
Hello,

This forum thread is for RadMediaPlayer for Silverlight!

Please provide a bit more info about your grid version, your scenario and desired result.

Kind regards,
Vlad
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
senthil nath
Top achievements
Rank 1
answered on 09 Oct 2009, 01:34 PM
<UserControl xmlns:controlsToolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"  
    xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" 
    xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"  
    xmlns:telerikMedia="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.MediaPlayer"  
    xmlns:telerikGridView="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"  
    xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"  
    xmlns:my="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"  
    xmlns:dataInput="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.Input"  
    xmlns:telerikDocking="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"       
    x:Class="SilverlightApplication4.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:theme ="clr-namespace:System.Windows.Controls.Theming;assembly=System.Windows.Controls.Theming.ShinyBlue"
    mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
    <Grid x:Name="LayoutRoot">


        <telerikDocking:RadDocking x:Name="dockManger">
            <telerikDocking:RadDocking.DocumentHost>
                <telerikDocking:RadSplitContainer>
                    <telerikDocking:RadPaneGroup>
                                               
                    </telerikDocking:RadPaneGroup>
                </telerikDocking:RadSplitContainer>
            </telerikDocking:RadDocking.DocumentHost>

            <telerikDocking:RadSplitContainer Width="300" InitialPosition="DockedLeft" Orientation="Vertical">
                <telerikDocking:RadPaneGroup>
                    <telerikDocking:RadPane Header="Filter List" >


                        <telerikGridView:RadGridView x:Name="filterGrid" SelectionChanged="filterGrid_SelectionChanged" IsReadOnly="True"  ShowGroupPanel="False" ></telerikGridView:RadGridView>


                    </telerikDocking:RadPane>
                </telerikDocking:RadPaneGroup>
                <telerikDocking:RadPaneGroup>
                    <telerikDocking:RadPane Header="Filter Detail">


                        <ScrollViewer HorizontalScrollBarVisibility="Disabled"  VerticalScrollBarVisibility="Auto">
                            <StackPanel Orientation="Vertical">
                                <controlsToolkit:WrapPanel x:Name="paSettings">
                                </controlsToolkit:WrapPanel>
                                <controlsToolkit:WrapPanel x:Name="paSettingsChild">
                                </controlsToolkit:WrapPanel>
                            </StackPanel>
                        </ScrollViewer>

                    </telerikDocking:RadPane>
                </telerikDocking:RadPaneGroup>
            </telerikDocking:RadSplitContainer>

            <telerikDocking:RadSplitContainer Height="400" InitialPosition="DockedBottom">
                <telerikDocking:RadPaneGroup>
                    <telerikDocking:RadPane Header="Interaction">
                        <telerikGridView:RadGridView x:Name="myGrids"  ShowGroupPanel="False" SelectionChanged="myGrids_SelectionChanged"   ColumnsWidthMode="Auto" IsReadOnly="True"></telerikGridView:RadGridView>

                    </telerikDocking:RadPane>
                </telerikDocking:RadPaneGroup>
            </telerikDocking:RadSplitContainer>

            <telerikDocking:RadSplitContainer InitialPosition="DockedRight">
                <telerikDocking:RadPaneGroup>
                    <telerikDocking:RadPane Header="Dashboard"></telerikDocking:RadPane>
                </telerikDocking:RadPaneGroup>
            </telerikDocking:RadSplitContainer>

        </telerikDocking:RadDocking>


    </Grid>
</UserControl>

Tags
MediaPlayer
Asked by
senthil nath
Top achievements
Rank 1
Answers by
Vlad
Telerik team
senthil nath
Top achievements
Rank 1
Share this question
or