Hello. I have a problem and do not know how to solve it. I have a layoutControl with layoutControlGroupItem. I would remove the edge of the flange and content. Exploring with RadControlSpyForm I've learned that you have to put the property of RadPageViewContentAreaElement DrawBorder = false and LayoutControlTabStripItem, but I do not get access to these properties either in design or programmatically. How can I do it?
thank's
Again, Restating a thread form back in July with a clear BUG that doesn't get addressed!!!
1-i set height (say 2000) it only goes a certain size, not more. by the way, i am not capping it as I have the max height to 0 (unlimited). try set to 1000 or 2000 makes no difference. Why is there drop down height limit? ?
2-when i set dropdown height, the last column of the grid (on the right) doesn't fully show as the vertical scrollbar is partial covering it. if i don't set the dropdown height, it shows full and correct. why does it get cut off when i set a dropdown height?
Problems and problems...most of my day, instead of developing, it's one problem after another with these controls!

Hello everyone,
I have a question regarding radgridviews. If an object radgridview has focus and I press the pagedown key, the gridnavigator moves down to the last of the visible rows, or if it is already in the last of the visible rows it moves down as many rows as rows are visible. The same applies to the pageup key.
I have a radtextbox where I start to write something reseting a one second timer with every keypress, and when the timer goes off I launch a query with the content of the textbox. While in the textbox, if I press the left or right key I move between the characters in it. If I press the up or down key I use the gridnavigator of the gridview to move up or down one row. If I press the enter key, loads the content of the selected row in another form.
I searched the methods of the gridnavigator and couldn't find something to make that easily. Now the question is, is there an easy way to simulate the pageup or pagedown when the focus is in a component that it isn't the radgrid?. Or should I start making calculations like if the current rows divided by the visible rows the remainder is 0 use the gridnavigator to move the number of visible rows down or if it isn't 0 move x rows where x is the number of rows needed to reach the bottom?
I hope you can understand my question, thanks.

By embedding the Title label for each control in the control itself (like HTML5) instead of using a label next to the control, it frees up a lot of space and is consistent with modern controls.
Instead of this: First Name [ ]
Use this: [ First Name ]
The RadDropdownList is close, but it doesn't revert to the label when you remove a value. And the label should be gray.

With Standard comboboxes, I would set up a Key and Value. When I try the same with the RadDropdownlist, I get an error, when I try to get the value for the SelectedItem.Key.
The following code block is how I populate the RadDropdownlist. This works just fine. Notice line 10 and 11 where I set the members as Key and Value
01.''' <summary>02.''' Populates the dropdown_ cust serv cntry.03.''' </summary>04.Private Sub PopulateDropdown_CustServCntry()05. 06. cboCustServ_Cntry.Items.Clear()07. 08. Try09. cboCustServ_Cntry.DataSource = New BindingSource(dictCntry, Nothing)10. cboCustServ_Cntry.DisplayMember = "Value"11. cboCustServ_Cntry.ValueMember = "Key"12. 13. 'Default to US14. cboCustServ_Cntry.SelectedIndex = cboCustServ_Cntry.FindString("UNITED STATES") 'United States code15. 16. Catch ex As Exception17. End Try18.End Sub 'PopulateDropdown_CustServCntry
When I enter the following code for the SelectedIndexChanged event, I get the error at line 07. Is there a way I can make this work with the radDropdownlist?
01.Private Sub cboCustServ_Cntry_SelectedIndexChanged(sender As Object, e As Telerik.WinControls.UI.Data.PositionChangedEventArgs) Handles cboCustServ_Cntry.SelectedIndexChanged02. 'need to set up State dropdown based on selected country03. Dim CntryCode As String = ""04. 05. Try06. Try07. CntryCode = cboCustServ_Cntry.SelectedItem.Key08. Catch ex As InvalidCastException09. 10. End Try11. 12. 13. If Not IsNothing(CntryCode) AndAlso CntryCode.Trim <> "" Then14. PopulateDropdown_CustServState(CntryCode)15. cboCustServ_State.SelectedIndex = -116. End If17. 18. Catch ex As Exception19. 20. End Try21.End Sub 'cboCustServ_Cntry_SelectedIndexChanged
I appreciate your input!


Hi,
I meet a question on BeginEdit() function. When I call "this.gridView.Rows[1].Cells[1].BeginEdit();" , the text in Rows[1].Cells[1] will be selected so user will overwrite the previous text with the new type. I notice System.Windows.Forms has a function "BeginEdit(bool)" in GridView so developer can call
"BeginEdit(bool)" to not select any contents. Does Telerik has any similar functions to help me unselect text in a Cell? Or How can I unselect text in a Cell programmaticly if I call BeginEdit()?
Thank you,
Chen


I need to perform data retrieval and analysis on recurring appointment instances that exist in the future.
Here is the business logic:
1. User selects a date & resource combination.
2. Application pulls instances from scheduler tables.
3. Instances are loaded into var or datatable for application retrieval and analysis
Problem:
Instances of future recurring appointments do not exist in scheduler appointment table so I cannot perform a filtered retrieval.
Question:
How can I perform this action?

