Telerik Forums
UI for WPF Forum
2 answers
267 views
I am dynamically generating Tab like:
  RadTabItem itemToAdd = new RadTabItem()
                    {
                        Header = pnl,
                       ToolTip="RevKey : " + _revKey,
                        Content = newAudit,
                        Padding = new Thickness(10, 5, 10, 5),
                     };

here newaudit is some usercontrol which have agains tabs inside.
So,problem is that I am assigning tooltip="revKey=......" to Top control(itemToAdd ) tab and it show the tooltip to newAudit control tab's also as well as  for newaudit tab content (textbox,combox).

Bhavin
Top achievements
Rank 1
 answered on 23 Oct 2009
1 answer
53 views
When i have a few columns at the start of my grid, and i horizontally scroll to the last column, after i've scrolled back to the start, the Filtering icons have vanished from the column headers of the columns that were scrolled out of view.

Before and after shots attached. In between these two screenshots, all i have done is scrolled to the right, and then returned back.

I'm using the WPF Q3 Beta 2, not sure if this issue existed before then.
Rossen Hristov
Telerik team
 answered on 23 Oct 2009
1 answer
99 views
Hello all. I try to use RadTreeView but I can't  catch events: PreviewDrop and Drop. But PreviewDragStarted and other Drag events I catch. And UI works successfully.
Miroslav
Telerik team
 answered on 23 Oct 2009
1 answer
47 views

Hi,
I am new to Telerik WPF Controls,
I need to convert some Silverlight stuff to WPF.
I heard that "All the classes or controls in Silverlight has equal classes or controls in WPF".
But when i am trying to do it,i was not able to find some similar controls for WPF.

I will be greatfull if i get a mapping between the Silverlight and WPF controls.

For Eg.
(1) In silverlight,<HierarchicalDataTemplate> is in assembly=Telerik.Windows.Controls
but for WPF it is not there, may be due to <HierarchicalDataTemplate>
is present directly in WPF.

 

 

 

(2) in silverlight the folowing code is used what will be the equivalent code in WPF?.

xmlns:radDock="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"

<radDock:RadDocking.DocumentHost>
    <radDock:RadSplitContainer>
        <radDock:RadPaneGroup x:Name="DocumentHostRadPaneGroup">
        </radDock:RadPaneGroup>
    </radDock:RadSplitContainer>
</radDock:RadDocking.DocumentHost>

 


 

 

 

 

Miroslav
Telerik team
 answered on 23 Oct 2009
1 answer
114 views
I have a tool window (based on System.Windows.Window) which floats on top of my main window.  The tool window has a listbox with items I want to drag to various parts of the main window.

I can initiate a drag operation, but as soon as the mouse gets to the border of the tool window, the drag image gets stuck while the mouse moves on.  My targets never receive any QueryDrop events.

This project is being developed using Prism.  On the Silverlight side, I have a similar tool list hosted in a RadWindow, and drag/drop works great.  I've also tried using RadWindow on the WPF side, but I still have the same problem.

This is the trial version of Telerik.Windows.Controls.dll - Version 2009.2.724.1020


Thanks for you help!


Miroslav
Telerik team
 answered on 23 Oct 2009
1 answer
301 views
Hi,

I am using Treeview to show a recursive data structure. I would like to get the item when mouse is over, process the value of the item and show tooltip.

How can I get the item?

Thanks,
Tihomir Petkov
Telerik team
 answered on 23 Oct 2009
12 answers
567 views
Any examples of dragging a row from RadGridView onto another control using the RadDragAndDropManager?    
Miroslav
Telerik team
 answered on 23 Oct 2009
1 answer
137 views
Hi,

i have a radgrid which i has a edit form ( which is a usercontrol ), and a select column ( which is a check box ).
the issue is i am facing is when ever i open my usercontrol ( i.e the edit form ), and check the select column the details in the row disapper. and they appear back as soon as the select column check box is deselected.

please let me know how can i resolve this issue.

here is part of the code from my grid view

<telerik:RadGrid ID="rgCampaignList" EnableViewState="true" Height="100%" GridLines="none"
                    runat="server" AllowSorting="true" AllowMultiRowSelection="True" AllowAutomaticDeletes="true"
                    CssClass="GridMedium" AllowAutomaticInserts="true" AllowAutomaticUpdates="true"
                    AllowPaging="True" AllowFilteringByColumn="true" AutoGenerateColumns="false">
                    <HeaderContextMenu BackColor="White">
                    </HeaderContextMenu>
                    <HeaderStyle Font-Bold="true" Wrap="true" />
                    <PagerStyle AlwaysVisible="true" Visible="true" Position="topAndBottom" />
                    <MasterTableView GridLines="none" EnableViewState="true" Height="100%" EditMode="EditForms"
                        runat="server">
                        <PagerStyle AlwaysVisible="true" Visible="true" Position="topAndBottom" />
                        <Columns>
                            <telerik:GridClientSelectColumn UniqueName="campapignsSelectColumn" HeaderText="Actions"
                                HeaderStyle-Width="20" Reorderable="false" />
                            <telerik:GridEditCommandColumn HeaderText="Edit" ButtonType="LinkButton" UniqueName="EditCommandColumn"
                                EditFormHeaderTextFormat="Edit Campaign" Reorderable="false">
                            </telerik:GridEditCommandColumn>
                            <telerik:GridTemplateColumn DataType="System.String" DataField="CampaignName" UniqueName="CampaignName"
                                SortExpression="CampaignName" HeaderText="Campaign">
                                <ItemTemplate>
                                    <asp:LinkButton ID="btnCampaignName" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CampaignName") %>'
                                        CommandName="SelectCampaign" />
                                </ItemTemplate>
                            </telerik:GridTemplateColumn>
                            <telerik:GridBoundColumn DataField="DivisionName" UniqueName="DivisionName" HeaderText="Division"
                                DataType="System.String" SortExpression="DivisionName">
                                <FilterTemplate>
                                    <telerik:RadComboBox ID="RadComboBoxDivision" DataSourceID="SqlDataSourceDivisions"
                                        DataTextField="DivisionName" DataValueField="DivisionName" AppendDataBoundItems="true"
                                        runat="server" SelectedValue='<%# (container).OwnerTableView.GetColumn("DivisionName").CurrentFilterValue %>'
                                        OnClientSelectedIndexChanged="Division">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="---" />
                                        </Items>
                                    </telerik:RadComboBox>
                                    <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">

                                        <script type="text/javascript">
                                    function Division(sender,args) {
                                        var tableView=$find("<%# (container).OwnerTableView.ClientID %>");
                                        if (args.get_item().get_value()!="-1")
                                        {
                                         tableView.filter("DivisionName",args.get_item().get_value(),"EqualTo");
                                        }
                                        else
                                        {
                                        tableView.filter("DivisionName",args.get_item().get_value(),"NoFilter");
                                        }
                                        
                                    }
                                        </script>

                                    </telerik:RadScriptBlock>
                                </FilterTemplate>
                            </telerik:GridBoundColumn>
                            ........
                            .............
                            ..................

                        </Columns>
                        <EditFormSettings FormMainTableStyle-BackColor="#FFFFE0" FormStyle-Height="100%"
                            FormStyle-Width="100%" FormCaptionStyle-Height="100%" EditColumn-Resizable="true"
                            UserControlName="../usercontrols/Campaigns_Edit.ascx" EditFormType="WebUserControl">
                            <EditColumn UniqueName="EditCommandColumn1">
                            </EditColumn>
                        </EditFormSettings>
                    </MasterTableView>
                    <ClientSettings AllowColumnsReorder="true" ColumnsReorderMethod="reorder">
                        <DataBinding FilterParameterName="campaignname" FilterParameterType="String">
                        </DataBinding>
                        <ClientEvents OnRowDeselected="RowDeselected" OnRowSelected="RowSelected" />
                        <Selecting EnableDragToSelectRows="true" AllowRowSelect="True"></Selecting>
                    </ClientSettings>
                    <AlternatingItemStyle CssClass="GridMediumAlternate" />
                    <SelectedItemStyle CssClass="GridMediumSelected" />
                </telerik:RadGrid>


                    only the edit column and the campaign name column details are visible when we select the checkbox, the rest of the columns which are like 21 columns are hidden,

please help me out on this issue as this is important to the client.

thank you for your help in advance.




               
Vlad
Telerik team
 answered on 23 Oct 2009
1 answer
164 views
In code like this...

                pagesGridView.GroupDescriptors.Add(  
                    new GroupDescriptor {   
                        Member = "CmsPageParent.Title",   
                        SortDirection = ListSortDirection.Ascending   
                    }  
                ); 

How do I set the "title" property of the group? I need to simulate the grouping of a column named “Parent” – as far as I can see I cannot mark a column as a default grouping set so I need to do it programmatically. However when I do it this way the resulting item in the group header says “CmsPageParent.Title” not “Parent” as the header for the same column would.

Ideas?

Pavel Pavlov
Telerik team
 answered on 23 Oct 2009
1 answer
117 views
How do I install the trial version of WPF into VS2008?

The .zip file contains a Bin3/Documentation/Demos folders, but I can't find an installation file.

I can't seem to locate any help file to assist.

Thanks.
Milan
Telerik team
 answered on 23 Oct 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?