Telerik Forums
UI for WinForms Forum
9 answers
155 views
I'm trying to implement Ctrl-Page Up / Ctrl-Page Down keys to go to the previous / next Tab (aka Sibling ChildGridViewTemplate) in a RadGridView with Tabbed Child View like what is supported in .Net's TabControl and in Tabs in Microsoft Office apps.  I figure I'd have to set the GridBehavior Property to my class that overrides the ProcessKey Function.  Beyond that I'm at a loss.  The GridNavigator Class doesn't have a Select Next/Previous Template/View/Tab method like it does for Columns and Rows.  The GridViewTemplate's IsCurrent Property is Read-Only.

Tom Chien
Top achievements
Rank 1
 answered on 06 Nov 2009
3 answers
173 views
Hi,

I Have a RadTabStrip On Form and two TabItem on TabStrip and a Grid On each TabItem in this Grids, i have GridViewComboColumn. when a tabItem active i cant access to GridViewComboColumn.CellElement.Text of another TabItem`s Grid,
if i wanna to get displayMember value (GridViewComboColumn.CellElement.Text) what i must do.

Best Regard.
Martin Vasilev
Telerik team
 answered on 06 Nov 2009
2 answers
133 views
I saw that it is possible in RadScheduler in asp.net, I need exactly this function,
like this:
http://www.telerik.com/ClientsFiles/085705_scheduler.png

My question is..
it is possible in RadScheduler for WinForms and how to? ..

Thanks a lot for your attentions.
GERARDO JUAREZ CASTILLO
Top achievements
Rank 1
 answered on 06 Nov 2009
1 answer
65 views
Hello,
I'm trying to do some more complex grouping in a winforms RadGridView.  What I'd like to accomplish is to do a grouping on two fields at the same level.  For instance  have a table of invoices and in some situations the invoice can be rejected.  So what i'm trying to show is how many invoices per customer were paid or rejected for a certain date.  So what I'd like to see is something like this.

to start everything Customer/Pay date level
+   CUSTOMER1    10/01/2009
+   CUSTOMER2    10/01/2009        
+   CUSTOMER1    10/02/2009

then clicking on the + see:
-     CUSTOMER1    10/01/2009
    Paid            20    $200.00
    Rejected     2      $50.00
-     Customer 2     10/01/2009
    Paid            10    $100.00
    Rejected    1        $35.00


I've seen reference that something like this should be available in the Q2 2009 release and we have Q2 2009 SP1.  Could someone please verify this info is correct that it is possible and if so maybe point me to an example?

Thanks

Dennis

    
Victor
Telerik team
 answered on 06 Nov 2009
2 answers
57 views
Hi there

Today I installed the Q3/2009 version on my development system (side by side with the Q2/2009). After the upgrade process of the projects with the telerik utility most of the thinks looked ok. But on one user control with a radgridview on it I have the following problem:
After starting the property editor of the grid, it told me that the index is out of bounds. I don't know which index is out of bounds. After closing the message box the property editor started. But I could not see any fields of the data table. I can start "Build" in the top right corner then I see my fields. I can change the settings and press ok. The grid on the form does not show the fields and when I reopen the property editor I can see the binding source but all fields and their settings are lost.

Any ideas or workaround to fix this problem?

Kind regards
Roger
Jack
Telerik team
 answered on 06 Nov 2009
4 answers
88 views
I just installed Telerik Q3 2009 WinForms BETA (2009.2.9.1016) over Q2 2009 (2009.2.9.729) and the Vertical Scroll Bar no longer shows unless adjust at run-time the Size of the Parent Form of the RadGridView.  This is regardless of whether RadGridView.AutoScroll is True or not (it was working as False in Q2).

The only RadGridView change mentioned was removing separate Vertical Scroll Bars for each ChildGridViewTemplate.

Telerik 2009Q3 Beta (2009.2.9.1016), VS 2005 (v8.0.50727.762 SP.050727-7600), .Net2 (2.0.50727), XP SP3, Core2Duo 2.99GHZ with 3GB.

Jack
Telerik team
 answered on 06 Nov 2009
4 answers
128 views
This applied to Q2 2009 (2009.2.9.729) also which was bad enough, but is a much more critical of an issue in Q3 2009 Beta (2009.2.9.1016) because users can no longer avoid it by just using the Vertical Scrol Bar of the CurrentRow's ChildGridViewTemplate due to the new combined single Vertical Scroll Bar for all Master / Child GridViewTemplates.  Don't get me wrong, I love the new combined single Vertical Scroll Bar.  It's a much, much better u.i. solution than separate ones.  It just needs to be have its kinks worked out.

Telerik WinForms 2009Q3 Beta (2009.2.9.1016) / 2009Q2 (2009.2.9.729), VB, VS 2005 (v8.0.50727.762 SP.050727-7600), .Net 2.0 (2.0.50727), XP SP3, Core2Duo 2.99GHZ with 3GB.

Jack
Telerik team
 answered on 06 Nov 2009
1 answer
71 views
Hi,
I am using a ButtonElement to draw draggable images on a panel
The problem is that the ButtonElement does not expose DrogOver,DragDrop methods so I cannot know when one ButtonElement is dragged over another.

Is there any solution?

Thanks in advance
Victor
Telerik team
 answered on 06 Nov 2009
1 answer
129 views
Dear Sir/Madam,

Is it possible to add rows when a filter is applied to the GridView?

1. I've added a filter programmatically
FilterExpression filterDriver = new FilterExpression(); 
filterDriver.Predicates.Add( 
             FilterExpression.BinaryOperation.AND, 
             GridKnownFunction.Contains, 
             GridFilterCellElement.ParameterName ); 
 
filterDriver.Parameters.Add( GridFilterCellElement.ParameterName, varFilter ); 
gridAssigned.Columns[ COLUMN_DRIVER ].Filter = filterDriver; 

2. While this filter is active, I want to add a new row programmatically.
GridViewDataRowInfo newRow = gridAssigned.Rows.NewRow(); 
[...] 
gridAssigned.Rows.Add( newRow ); 

But this doesn't work. I also added
gridAssigned.MasterGridViewTemplate.Update( GridUINotifyAction.RowsChanged ); 
but without success.

Thanks in advance!


Julian Benkov
Telerik team
 answered on 06 Nov 2009
5 answers
196 views
Hi Guys,

I have a bit of an issue.  When my user switches tabs I run a lengthly process, but this process only needs to be run coming from one specific tab.  So...  How do I identify what was the last selected tab?

Example:
----------------------------
Tab 1    Tab2    Tab3

On click of Tab2 from Tab1 I run process XYZ.  On click of Tab2 from Tab3 I want to bypass process XYZ.  When the user clicks on Tab2 how do I know the previous selected tab?

Many thanks,
~Mike

Deyan
Telerik team
 answered on 06 Nov 2009
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?