Telerik Forums
UI for WPF Forum
0 answers
81 views
can anyone plz help me to disable the match case button present in the rad data filter for dtring data types.
Chandan
Top achievements
Rank 1
 asked on 23 Nov 2011
2 answers
657 views
In this blog post the author describes populating a datagrid in a SilverLight application dynamically at runtime. I'm wondering how the same might be accomplished in a WPF application using RadGridView. Porting her solution shouldn't be too difficult I'm just not sure as to the XAML, in particular the item templates. Can some one offer some insight?  Thanks.

http://msmvps.com/blogs/deborahk/archive/2011/01/23/populating-a-datagrid-with-dynamic-columns-in-a-silverlight-application-using-mvvm.aspx
Vlad
Telerik team
 answered on 23 Nov 2011
1 answer
171 views
I would love to have an easy way to display the thumbnail preview of a file. The Windows Shell does it, but the pInvoke code required to make this work is excessive.

Something like this:
http://stackoverflow.com/questions/1439719/c-sharp-get-thumbnail-from-file-via-windows-api

Perhaps a "RadFileThumbnail" control?

The Windows API Code Pack for Windows 7 has something like this, but you lock yourself into Windows 7 by using it.
http://archive.msdn.microsoft.com/WindowsAPICodePack

-Mike.
Tina Stancheva
Telerik team
 answered on 22 Nov 2011
3 answers
113 views
Hi,

I've been reading the Q3 2011 Public Roadmap (http://www.telerik.com/products/wpf/whats-new/roadmap.aspx) and it mentions a new control "Timeline Beta". I'm wondering if Telerik can provide more details about this control (maybe an idea of what it will look like and function?) and when this control might be able to be tested.

I'm working on a project that is looking to visualize a sequence of events over time graphically and it sounds like this may be the ideal control for this purpose, however I would like to check whether this control provides what I require and if it would work within our development timelime.

Kind regards,
Dave.
Giuseppe
Telerik team
 answered on 22 Nov 2011
1 answer
96 views
Hey,

The XAML format provider (Telerik.Windows.Documents.FormatProviders.Xaml) requires System.Web for HttpUtility.HtmlEncode.  This basically means we cannot use it because our companies SOE only has the .net Client Profile installed.  WPF apps really shouldn't need System.Web.  Is there a technical reason that you cannot use an alternative such as SecurityElement.Escape?

Thanks,

Brock
Boby
Telerik team
 answered on 22 Nov 2011
1 answer
118 views
Hello,
It is recommended that you include a Drawing control to your WPF control collection.
Drawing control to draw different shapes and diagrams like those on MS Visio.
It would be great that you have it.

Thanks.

Hristo
Telerik team
 answered on 22 Nov 2011
1 answer
191 views
Hi, 

I currently am using a RadWindow as a ModalDialog in a WPF application. The content in the window expands as the user clicks buttons and unlocks more menus. I need the window to adjust automatically to the expanding size of the content.
Here are my window settings from the xaml file:

MaxHeight="800"  MaxWidth="730"  SizeToContent="True"  telerik:CanMove="True" telerik:ResizeMode="CanResizeWithGrip" ModalBackground="Transparent" CanClose="False" 
        Background="{x:Null}" Foreground="{x:Null}" WindowStartupLocation="Manual" Style="{DynamicResource LoginWindowStyle}" BorderBackground="{x:Null}" BorderBrush="{x:Null}" MouseLeftButtonDown="MoveLoginBox" HeaderTemplate="{DynamicResource HeaderTemplate}">

Is there something I am doing wrong or is there a bug somewhere?
Also, I'm not sure if this is related, I am not able to re-size the window at all. 


Thanks
Don 

Konstantina
Telerik team
 answered on 22 Nov 2011
0 answers
217 views

Hello,

I've developed a RadGridView as follow :

 <telerik:RadGridView Grid.Row="1" ItemsSource="{Binding SecuritiesNoteResult}" AutoGenerateColumns="False">
            <telerik:RadGridView.Columns>
             <!-- some other grid-->
                <telerik:GridViewDataColumn UniqueName="FileOpen" Header="Visualizza" x:name="test">
                    <telerik:GridViewDataColumn.CellTemplate>
                        <DataTemplate>
                            <Button HorizontalContentAlignment="Center" Click="Button_Click" >
                                <Button.Content>
                                    <StackPanel Orientation="Horizontal">
                                        <Image Source="/DOME;component/Media/pdfDocument.png" Height="20" Width="20" />

                                    </StackPanel>
                                </Button.Content>
                            </Button>
                        </DataTemplate>
                    </telerik:GridViewDataColumn.CellTemplate>
                </telerik:GridViewDataColumn>
            </telerik:RadGridView.Columns>       
        </telerik:RadGridView>

and in the viewmodel I've :

        public void test()
        {
            _windowManager.ShowWindow(new ReportViewModel(_repository));
        }

The event is not fired... I've tried both to put x:name on the Button and in the GridViewDataColumn...
What am I doing wrong?

Thanks

Michele
Top achievements
Rank 2
 asked on 22 Nov 2011
1 answer
75 views
Hi,
I have a gridview having a grid in its rowdetail, when row detail visibility changes i fetch data from database to load the row detail grid.
But the problem here is that when i sort or filter on the main grid, the data is removed from the already opened row detail grid.

Same thing happens when we have some controls in our rowdetails, and the values of expanded row details sets to blank when filtered or sorted.

Using "RowDetailsVisibilityChangedevent" to populate the rowdetails, due to some constraints not using "LoadingRowDetails".

Please let me know is there anything i can do so that those row detail grid data does not get removed when I do sorting or filtering on main grid.

Please reply its urgent.
Thanks
Manishkumar
Top achievements
Rank 1
 answered on 22 Nov 2011
1 answer
246 views

Hello,
The BusyIndicator works very well, but one small detail that I don’t like. Let's see if I can help:
When I apply BusyIndicator on a RadGridView  the text color from the rows of RadGridView turns from gray tone Metro (My default template) to color black.

this is my code:

<telerik:RadBusyIndicator IsBusy="{Binding Cargando}" BusyContent="Cargando">
                                <telerik:RadGridView Focusable="False" telerik:PersistenceManager.StorageId="RGrid" Grid.Row="0" AutoGenerateColumns="False" x:Name="radGridView1" ItemsSource="{Binding Conocimientos}" SelectedItem="{Binding ConocimientoSeleccionado}" CanUserInsertRows="False" CanUserDeleteRows="False" IsManipulationEnabled="False" IsReadOnly="True">
                                    <i:Interaction.Triggers>
                                        <i:EventTrigger EventName="MouseDoubleClick">
                                            <ei:CallMethodAction MethodName="radGridView1_MouseDoubleClick" TargetObject="{Binding}" />
                                        </i:EventTrigger>
                                    </i:Interaction.Triggers>
                                    <telerik:RadGridView.Columns>
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColIdConocimiento" DataMemberBinding="{Binding IdConocimiento}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColIdConocimiento_Header,Source={StaticResource resLanguage}}" Width="60" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColFecha" DataMemberBinding="{Binding Fecha}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColFecha_Header,Source={StaticResource resLanguage}}" Width="80" DataFormatString="{}{0: dd/MM/yyyy}" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColPregunta" DataMemberBinding="{Binding Pregunta}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColPregunta_Header,Source={StaticResource resLanguage}}" Width="200" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColRespuesta" DataMemberBinding="{Binding Respuesta}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColRespuesta_Header,Source={StaticResource resLanguage}}" Width="200" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColIdAplicacion" DataMemberBinding="{Binding IdAplicacion}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColIdAplicacion_Header,Source={StaticResource resLanguage}}" Width="40" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColAplicacion" DataMemberBinding="{Binding Aplicacion}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColAplicacion_Header,Source={StaticResource resLanguage}}" Width="150" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColIdAplicacionModulo" DataMemberBinding="{Binding IdAplicacionModulo}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColIdAplicacionModulo_Header,Source={StaticResource resLanguage}}" Width="40" />
                                        <telerik:GridViewDataColumn MinWidth="0" Name="ColAplicacionModulo" DataMemberBinding="{Binding AplicacionModulo}" Header="{Binding TAAF_Gestiones_Presentation_WPF_ConocimientosLista_ColAplicacionModulo_Header,Source={StaticResource resLanguage}}" Width="150" />
                                    </telerik:RadGridView.Columns>
                                </telerik:RadGridView>
                                </telerik:RadBusyIndicator>


Someone can tell me the reason?
Thanks and sorry for my English

Yana
Telerik team
 answered on 22 Nov 2011
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
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
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
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?