Telerik Forums
UI for WPF Forum
3 answers
192 views
Hi
I have an async data source in my ViewModel class.
I want to force the grid to show it's animation.
I set that DataLoadMode property to Asynchronous but it's not working (the grid don't know that there is background operation)
How can I make it work?
(In silverlight it was IsBusy state but here it's readonly )
Thanks
Adiel
Adiel
Top achievements
Rank 2
 answered on 18 Jun 2009
5 answers
307 views
Hi

Is there any documentation on using this feature (I'm assuming this will allow us to show some animation whilst the grid is loading data)?
Milan
Telerik team
 answered on 18 Jun 2009
1 answer
549 views
                    <telerik:GridViewDataColumn Width="25">  
                        <telerik:GridViewDataColumn.CellStyle> 
                            <Style TargetType="telerik:GridViewCell">  
                                <Setter Property="Template">  
                                    <Setter.Value> 
                                        <ControlTemplate TargetType="telerik:GridViewCell">  
                                            <Button   
                                            Command="{Binding IngredientDeleteCommand}" 
                                            HorizontalAlignment="Center"   
                                            VerticalAlignment="Center">  
                                                <Image Height="20" Width="20" Source="/CakeBoss.WPF;component/Images/delete.png" /> 
                                            </Button> 
                                        </ControlTemplate> 
                                    </Setter.Value> 
                                </Setter> 
                            </Style> 
                        </telerik:GridViewDataColumn.CellStyle> 
                    </telerik:GridViewDataColumn> 

I've got a column that is for deleting a row, and I'm using MVVM so i'm binding to a command instead of using the click event on the button.  The command does not fire from inside the grid, but the Click event does.   If I copy the button outside the grid the button works just great.  Any clues?
Jon
Top achievements
Rank 1
 answered on 18 Jun 2009
3 answers
263 views
I am populating a treeview control from a database. I want to allow the user to drag and drop nodes to arrange the nodes in a sort order. I was trying to use the DragEnded event to get the new position in the tree and update the new position in the database. I thought I could use the IndexOf to get the new position in the tree the node is located. If I drag a root node the Items.IndexOf for the dragged node returns the correct position, lower level nodes return -1. The code I am using is as follows:

    Private Sub RadTreeView1_DragEnded(ByVal sender As ObjectByVal e As Telerik.Windows.Controls.RadTreeViewDragEndedEventArgs) Handles RadTreeView1.DragEnded  
 
        Dim newSortOrder As Integer 
        Dim parentId As Integer 
 
        Dim draggedItem As RadTreeViewItem = e.DraggedItems(0)  
        Dim eStore As eStoreDataDataContext = New eStoreDataDataContext  
 
        If IsNothing(draggedItem.ParentItem) Then 
            ' no parent then item is root node  
            parentId = 0  
        Else 
            parentId = draggedItem.ParentItem.Tag.ToString  
        End If 
 
        newSortOrder = RadTreeView1.Items.IndexOf(draggedItem)  
 
        MsgBox("parentId = " & parentId.ToString)  
        MsgBox("newSortOrder = " & newSortOrder.ToString)  
 
    End Sub 
 


 I am using the tag property to identify the parentId value in my database table. Does anyone know why the Items.IndexOf returns a number corresponding to the order the item is displayed in the tree for root node items and -1 for all other nodes?

Thanks.
Kiril Stanoev
Telerik team
 answered on 17 Jun 2009
1 answer
72 views

hi

I have a radgridview in this two column first column have string value and in second column  combo box contain list of string.When application run user select any value in combobox when save then i have two value one is string and another is string value which is select from combo box .how to iterate on radgridview,save values.how can i achieve this problem.please send an example. 
Stefan Dobrev
Telerik team
 answered on 16 Jun 2009
6 answers
359 views
Hey

How can I set ShowGroupPanel=False
in a child grid (when I use hirarchy)

Thanks
Rossen Hristov
Telerik team
 answered on 16 Jun 2009
3 answers
166 views
I see there's an API to scroll a record into view:

RadGridView.ItemsControl.BringRecordIntoView

But I also need the ability to insure that a specific cell is also in view (if the grid has horizontal scroll bars), but I see no public API to do this.

Milan
Telerik team
 answered on 16 Jun 2009
3 answers
627 views

hi

I have a class in this two property string,list<string> when I bind List<string> to GridViewComboBoxColumn then show empty combobox.how can i achive this problem.please give a example.

<Grid>
        <Grid x:Name="blobsSizeSettings">

            <telerik:RadGridView  Margin="0,0,0,0" Name="BlobSizeSettings" telerik:Theming.Theme="Vista" MultipleSelect="True" 
               AutoGenerateColumns="False" ShowGroupPanel="False" RowIndicatorVisibility="Visible"  Background="White" CanUserFreezeColumns="False"  CanUserReorderColumns="False" CanUserResizeColumns="False" CanUserSortColumns="False" IsReadOnly="False" IsFilteringAllowed="False"  ColumnsWidthMode="Fill" ScrollMode="RealTime">
                <telerik:RadGridView.Columns>
                    <telerik:GridViewDataColumn HeaderText="BlockSize" UniqueName="FileSizeString"></telerik:GridViewDataColumn>

                     <telerik:GridViewComboBoxColumn HeaderText="Blocks" ItemsSource="{Binding Size}}"></telerik:GridViewComboBoxColumn>
                </telerik:RadGridView.Columns>
            </telerik:RadGridView>
           
        </Grid>
    </Grid>

Stefan Dobrev
Telerik team
 answered on 16 Jun 2009
1 answer
121 views
I am deploying some of the controls in my WPF application using InstallShield.  How can I resolve the warnings below:

ISDEV : warning -6248: Could not find dependent file penimc.dll, or one of its dependencies of component Telerik.Windows.Data.dll

ISDEV : warning -6248: Could not find dependent file presentationhostdll.dll, or one of its dependencies of component Telerik.Windows.Data.dll

ISDEV : warning -6248: Could not find dependent file wpfgfx_v0300.dll, or one of its dependencies of component Telerik.Windows.Data.dll

Milan
Telerik team
 answered on 16 Jun 2009
1 answer
79 views
I am reviewing the Telerik RadGridView for WPF. I've seen the demos and like what I see; however, the demos are quite simplistic. How innovative will I be able to get with the grid? Are there more examples out there? 

My Needs:
I would like to have a nested grid within a cell.

Or, I may want the ability to have different custom lookups within the same column for different rows depending on a given type. For example, row 1 may identify product A so column A may need a date lookup in Column 5. However, row 2 may be for a different product and column 5 may need a card layout lookup for that row.

 Are these possible?

Thank You.
Nedyalko Nikolov
Telerik team
 answered on 15 Jun 2009
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
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
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
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?