Telerik Forums
UI for WPF Forum
1 answer
60 views
Hi,

Is it possible to change the text of AppointmentNavigationButtons?
All other labels are ok (in german language), only the "Prev Appointment" button is in english language.


next appointment is ok:


kindly regards.
Stefan


Pana
Telerik team
 answered on 19 Sep 2011
2 answers
92 views
Hi there,

Just a quick question regarding the PersistenceFramework. I haven't used the feature yet but I have a scenario and I would like to know how the Framework will react to it.

Suppose I have TreeView filled dynamically from a database with various nodes and child nodes, say for example categories with sub products. If I save the properties of the treeview as is, and then later reload the treeview but its nodes have changed / been updated with newer products etc, will the persistence framework throw an error when reloaded with older persistence settings?

Thanks for your time and I hope I've explained myself adequately.
Robert
Top achievements
Rank 1
 answered on 17 Sep 2011
3 answers
119 views
The task is to change the layout of elements in the component (like iGoogle dashboard).
To do that, you need to override the TileViewPanel methods. 
The field of that type is not available in the TileView instance, but can be found in the visual tree.

Is there and option of substituting the TileViewPanel instance in the TileView visual tree for a custom class:
class MyTileViewPanel: TileViewPanel
{
// my methods
}
Zarko
Telerik team
 answered on 17 Sep 2011
4 answers
194 views
I tried to develop a touch supported DateTimePicker, however after the calender is launched, no touch is active... how to intercept the touch event on the calender?
Boyan
Telerik team
 answered on 17 Sep 2011
3 answers
218 views
There is no indication of mouse over on selected items; note the Backstage Tab, selected Backstage Items and selected gallery items.  (I'm not sure if that is a "feature" of the theme or not).
The QAT displays below the Ribbon in the same MetroColors.PaletteInstance.BasicColor that is used for mouse over, negating the mouse over visual queue.

Are there Metro Theme guidelines available, and if so where can they be found?

Thanks,
Steve
Petar Mladenov
Telerik team
 answered on 17 Sep 2011
2 answers
566 views
After wrestling with this for a while and doing lots of research I have not been able to find a definitive answer.  I can find a myriad of examples about drag and drop between other controls and the RadGridView but little to no examples about dragging from or between these types of controls.  Searching back it seems that this is a hot topic for the past two years with solutions that temporarily worked or didn't at all.  I'd like to say that I've tried harder for a solution but simply don't know how at this point.  I've usually had wonderful success with the RadDragAndDropManager and all has been simple and easy except in this case.  I just want to be able to drag a row from one RadGridView to another using the standard RadDragAndDropManager methods.

My main issue at this point is that I can't get a row to drag at all.  I've tried applying a style to my GridView's RowStyle and to my column's CellStyle that sets the telerik:RadDragAndDropManager.AllowDrag to true but nothing happens.  Strangely enough if I set telerik:DragDropManager.AllowDrag equal to true I get some dragging ability but it always says I have an invalid drop target by showing the crossed out circle curser.

Below is a simple application that I think should work but doesn't.  I haven't bothered to set the drop properties yet.  Please give me some pointers or an example that I can study to know what to do on this that is relevant to .NET 4.0 and recent releases.  I am currently using the latest internal build as of 9/12/2011.

Thanks,
Adam
<Window
    x:Class="RadGridView_DragAndDropTest.MainWindow"
    x:Name="Window"
    Title="MainWindow"
    Width="640" Height="480">
 
    <Window.Resources>
        <Style TargetType="telerik:GridViewRow">
            <Setter Property="telerik:RadDragAndDropManager.AllowDrag" Value="True"/>
        </Style>
    </Window.Resources>
 
    <Grid x:Name="LayoutRoot">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="0.45*"/>
            <ColumnDefinition Width="0.1*"/>
            <ColumnDefinition Width="0.45*"/>
        </Grid.ColumnDefinitions>
        <telerik:RadGridView HorizontalAlignment="Right" Width="280.8" ShowGroupPanel="False" SelectionMode="Extended" AutoGenerateColumns="False" CanUserFreezeColumns="False" CanUserReorderColumns="False" ColumnWidth="*" DataContext="{Binding Source={StaticResource SampleDataSource}}" ItemsSource="{Binding Collection}">
            <telerik:RadGridView.Columns>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Property1}"/>
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>
        <telerik:RadGridView Grid.Column="2" d:LayoutOverrides="Width, Height" ShowGroupPanel="False" SelectionMode="Extended" AutoGenerateColumns="False" CanUserFreezeColumns="False" CanUserReorderColumns="False" ColumnWidth="*" DataContext="{Binding Source={StaticResource SampleDataSource1}}" ItemsSource="{Binding Collection}">
            <telerik:RadGridView.Columns>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Property1}"/>
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>
    </Grid>
</Window>

Tsvyatko
Telerik team
 answered on 17 Sep 2011
0 answers
116 views
I want the first Combo box , that appears in the data filter , to have ceratin properties like, it must have a scroll drop down. and have the intellisense property, whrein we can put anything in the text box, with auto complete feature. thesefeatures  are possible when i set the properties of combobox item independently. but how to set it for a combobox which is a component of datafilter. i tried the tutorial , but couldnt do it. can someone tell me how to do it.
Chandan
Top achievements
Rank 1
 asked on 17 Sep 2011
1 answer
100 views
Hi team,

Can you please give one sample example of RadGrid(wpf control) with inline(Excel Like Grid) adding and editing Deleting  and TypedCombo in one column of the Grid.

Untill user presses save button than only want to save the data in DB.

Please send us ASAP
Maya
Telerik team
 answered on 17 Sep 2011
4 answers
1.8K+ views
Hi,

I am having a hard time figuring out how to make the Text property of the RadComboBox bind to a string property in my View Model.  I have a combo box that is Editable so that user can search for anything that starts with the values typed on the text box.  I want to get that value in the view model, use it as part of a LINQ query (sarts with), and fill a collection source to display on a view.

The problem:
------------------
The string property on my view model "SearchText" is returning null (never gets the value entered by user).  Sample code is below:

        private List<SupplierMaster> foundSuppliers;
        public List<SupplierMaster> FoundSuppliers
        {
            get { return foundSuppliers; }
            set { if (foundSuppliers == value) return; foundSuppliers = value; OnPropertyChanged("FoundSuppliers"); }
        }
  
        private string searchText;
        public string SearchText
        {
            get { return searchText; }
            set { if (searchText == value) return; searchText = value; OnPropertyChanged("SearchText"); }
        }
  
        private void Search()
        {
                FoundSuppliers = (from sm in SupplierMaster where sm.SupplierName.ToUpperInvariant().StartsWith(SearchText.ToUpperInvariant()) select sm).ToList();    //Here the SearchText property is always null **ISSUE**
                FoundSuppliers = FoundSuppliers.OrderBy(n => n.SupplierName).ToList();            }
        }
  
  
XAML:
  
                        <telerik:RadComboBox Height="23" Name="txtSearchBox" TabIndex="1" HorizontalAlignment="Left" 
                                         Width="246" IsEnabled="True" VerticalAlignment="Top" IsEditable="True" IsTextSearchEnabled="True"
                                         IsTextSearchCaseSensitive="True"  Text="{Binding SearchText}"
                                         TextSearchMode="StartsWithCaseSensitive" Margin="0,3" 
                                         ItemsSource="{Binding SupplierMaster}" 
                                         DisplayMemberPath="SupplierName" 
                                         SelectedValuePath="SupplierName"
                                         SelectedItem="{Binding SelectedSupplier}" EmptyText="Name starts with..."
                                         >
                            <telerik:RadComboBox.ItemsPanel>
                            <ItemsPanelTemplate>
                                <VirtualizingStackPanel />
                            </ItemsPanelTemplate>
                        </telerik:RadComboBox.ItemsPanel>
                    </telerik:RadComboBox>


Please advice if this is possible or if I am missing something.

Thanks,

Gabe.
John
Top achievements
Rank 1
 answered on 16 Sep 2011
1 answer
125 views
Can any of the telerik controls make a true "heatmap" ..  i.e. one that's based strictly on data and not laid over an actual geographical map.

Something like: 

http://finviz.com/map.ashx?t=sec

In that case, the data set is something along the lines of:

Sector (Light Blue)
Sub-Sector (Yellow)
Symbol - label for each box
Market Cap - Size of each box
Today's return - Color of each box, scaled from -3 for red to +3 for green.

Syncfusion has this: http://www3.syncfusion.com/products/user-interface-edition/wpf/chart/heat-map

?

-Peter
Bartholomeo Rocca
Top achievements
Rank 1
 answered on 16 Sep 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
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
VirtualKeyboard
HighlightTextBlock
Security
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?