Telerik Forums
UI for WinForms Forum
1 answer
98 views
Hello all.
I see a strange behaviour when using the RadGridView instead of the DataGridView.
The grid's property is set to not allow to add new lines and not to be editable.

I have a win form with a DataGridView and two edit fields and a binding navigator.The DataGridView and the edit fields are bound to a database table.
If i press the „Add“ button in the binding navigator, the DataGridView scrolls down to the bottom, adds an empty line at the bottom and the two edit fields are cleared. After entering data in the edit fields, and selecting any other items in the DataGridView, the values from the edit fields are shown in the new line at the bottom of the grid.

Now I have replaced the DataGridView with the RadGridView 2010 Q3.

If I press the „Add“ button in the binding navigator, the RadGridView scrolls down (but not to the very bottom), adds an empty line at the bottom, however it does not scroll to this new line. So it’s invisible until the user scrolls the list to the end. The two edit fields still have the content of the last selected item. They are not cleared. I can overwrite in the two edit fields the existing values with some new values. The new values are now in the dataset but the RadDataView is not updated with the new values. At the bottom in the grid, there is still the new empty line. If I click on the empty line, the correct values are shown in the edit fields.
If I sort the RadGridView the empty line is updated with the value, entered in the edit field.

I want a behaviour like the .NET DataGridView.


I had a chance to install the 2009Q3 version of WinForms. And surprisingly here the behaviour is as I have expected (same as MS DataGridView).

So this leads to the conclusion, that between the versions 2009Q3 and 2010Q3 there was introduced a problem with the update mechanism.
Alexander
Telerik team
 answered on 29 Dec 2010
1 answer
109 views
Hello. Merry Christmas to you all.

I have A radgrid, bound to 2 datasets with hierarchy.

The relation is based upon a number, as it has to keep track of orders entered in the database.
My only issue is that orders that needs to be deliverd, gets a delivery number instead of an order number.
Here's my problem.

So from dataset 1 it loads all the data needed, included the order number. In my child, i call all the records containing that order number.
But when I need to load data for the delivery number, i get zero returns, because the order number acutally can not be changed.

So i need a way to make the grid look if the delivery number is 0, then load based on order number.
If deliver number > 0, then load based on delivery number.

Here's my code.

Hoping someone can help me.

dsRittenTemp.Clear()
        dsGoederenTemp.Clear()
        '
        cmdRittenTemp = New Odbc.OdbcCommand("Select * FROM ritten_temp WHERE ritnummer = '" & RitNummer & "'", cn)
        adpRittenTemp = New Odbc.OdbcDataAdapter(cmdRittenTemp)
        adpRittenTemp.Fill(dsRittenTemp, "ritten_temp")
        '
        cmdGoederenTemp = New Odbc.OdbcCommand("Select * FROM goederen_temp", cn)
        adpGoederenTemp = New Odbc.OdbcDataAdapter(cmdGoederenTemp)
        adpGoederenTemp.Fill(dsGoederenTemp, "goederen_temp")
 
        ' Me.RadGridViewOverView.MasterTemplate.Templates.Clear()
 
        RadGridViewOverView.DataSource = dsRittenTemp
        RadGridViewOverView.DataMember = "ritten_temp"
 
        Dim template As New GridViewTemplate()
        template.DataSource = dsGoederenTemp
        template.DataMember = "goederen_temp"
 
        RadGridViewOverView.MasterTemplate.Templates.Add(template)
 
        Dim relation As New GridViewRelation(RadGridViewOverView.MasterTemplate)
        relation.ChildTemplate = template
        relation.RelationName = "goederenticket"
        relation.ParentColumnNames.Add("goederenticket")
        relation.ChildColumnNames.Add("goederenticket")
        RadGridViewOverView.Relations.Add(relation)
 
        RadGridViewOverView.AllowEditRow = False
        RadGridViewOverView.MasterTemplate.Templates(0).AllowEditRow = False
Alexander
Telerik team
 answered on 29 Dec 2010
3 answers
187 views
I'm using version 2010.3.10.1109 of the Telerik controls.

I'm trying to handle key strokes on a RadSpinEditor control; however the events are not being raised (so far as I can tell).  The ValueChanging event does happen; however I'm trying to subscribe to the KeyPress, KeyDown, KeyUp and none of those are happening. 

My real dilemna is that I've established a Maximum and Minimum value for the spin editor.  When a user enters a value outside those boundaries the control automatically sets the value to the min or max without telling the user that it did it.  I want to know when this happens and inform the user myself.
Richard Slade
Top achievements
Rank 2
 answered on 29 Dec 2010
1 answer
137 views
I'd like a run down regarding custom data binding scenario. I need to provide the Scheduler with my own LINQ feed for the Appointment and Resource bindings. Therefore, I need the scheduler's Binding source fully coded by hand as the wizard for the UI component doesn't take LINQ. I have the DB-Level SPs ready and they are implemented as LINQ methods in the DAL project. Kindly help me out here.
Dobry Zranchev
Telerik team
 answered on 29 Dec 2010
18 answers
1.2K+ views
dont we have functionality for selection of only time (in raddatetime picker win forms q3 2007), just like we have for asp.net toolkit.

thanks
divyesh
Stefan
Telerik team
 answered on 29 Dec 2010
2 answers
88 views
The data-binding of a grid is done  and then at a later point of time some of the missing values in original data become known.
How would I refresh the grid so the missing values show up in the grid? One way seems to be to re-bind the grid, but I think there might be a better approach.
As an example, a grid has a datasource of List<MyCar>.  But, when the original databinding is done,the car price and car depreciation are missing for each MyCar row.. These missing values are available later on, much after the original data-binding operation. The class MyCar is as listed below.
I am using Q1 2008 SP1 version of Winforms RadControls.

Thanks
Sunil

public class MyCar
    {
        private string _carOwner;
        private string _carModel;
        private int _carYear;
        private string _carColor;
        private double _carPrice;
        private double _carDepreciation;
 
        public MyCar(string carOwner, string carModel, int carYear, string carColor, double carPrice, double carDepreciation)
        {
            CarOwner = carOwner;
            CarModel = carModel;
            CarYear = carYear;
            CarColor = carColor;
            CarPrice = carPrice;
            CarDepreciation = carDepreciation;
        }
        public string CarOwner
        {
            get { return _carOwner; }
            set { _carOwner = value; }
        }
        public string CarModel
        {
            get { return _carModel; }
            set { _carModel = value; }
        }
        public int CarYear
        {
            get { return _carYear; }
            set { _carYear = value; }
        }
        public string CarColor
        {
            get { return _carColor; }
            set { _carColor = value; }
        }
        public double CarPrice
        {
            get { return _carPrice; }
            set { _carPrice = value; }
        }
        public double CarDepreciation
        {
            get { return _carDepreciation; }
            set { _carDepreciation = value; }
        }
 
 
    }
Stefan
Telerik team
 answered on 29 Dec 2010
1 answer
104 views
Hi,
I am working dockmanger in mdi from .there are two option in my application to view from in window or in tab form of docking,when i switched from doking to windows and again from windows to dock tab then tool window does't shows.
meraj
Top achievements
Rank 1
 answered on 29 Dec 2010
2 answers
132 views
I have a Gridview and using HtmlViewDefinition on it, but i can not disable HotTracking in this Gridview by setting EnableHotTracking to FALSE.
The HotTracking is still active. Can some body help ???
Phuong
Top achievements
Rank 1
 answered on 29 Dec 2010
10 answers
166 views
Hi,
    I have been using Rad drag and drop. I move all the items from left side grid to right side grid.Now when select a item and move it to the last record by using the scroll  in the mouse, the entire example is closed.How should this be avoided. I have worked in the telerik demos. It is happening for me.My version is telerik Q2 2010.

With Regards,
Surendar.
Surendar S
Top achievements
Rank 1
 answered on 29 Dec 2010
2 answers
112 views
Hi Team,

I developed a small site and hosted in my IIS. when i run the site in my system, the treeview is working perfectly. but when the i run the site from another system which is in a network, the treeview is not expanding (the treeview functionalities are not woring). how to acheive this?

Regards
Bhuvan
Bhuvan
Top achievements
Rank 1
 answered on 29 Dec 2010
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
NavigationView
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
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
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?