Good morning.
I have a problem with the DocumentWindow in your RadDock class. I downloaded your RadControls for WinForms Q3 2009 release. I did the following steps:
Imports Telerik.WinControls.UI.Docking
Public Class Form1
Private Sub RadMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadMenuItem1.Click
RadDock1.Visible = False
Dim docW As DocumentWindow = New DocumentWindow("Test")
Dim pnl As New Panel
pnl.BorderStyle = BorderStyle.FixedSingle
pnl.Dock = DockStyle.Fill
docW.Controls.Add(pnl)
RadDock1.AddDocument(docW)
RadDock1.Visible = True
End Sub
End Class
I programmatically insert a new DocumentWindow with a Panel in it. If you omit instruction “RadDock1.Visible = False”, all is ok, otherwise the panel will overlap the tab. If you click the small down arrow on the right (it’s almost invisible) and select the window (Test), all returns ok.
In my application, obviously much more complicated, I need to make invisible the RadDock during certain operations. What can I do to solve this problem?
Thank you.
Good morning.
I have a problem with the DocumentWindow in your RadDock class. I downloaded your RadControls for WinForms Q3 2009 release. I did the following steps:
Imports Telerik.WinControls.UI.Docking
Public Class Form1
Private Sub RadMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadMenuItem1.Click
RadDock1.Visible = False
Dim docW As DocumentWindow = New DocumentWindow("Test")
Dim pnl As New Panel
pnl.BorderStyle = BorderStyle.FixedSingle
pnl.Dock = DockStyle.Fill
docW.Controls.Add(pnl)
RadDock1.AddDocument(docW)
RadDock1.Visible = True
End Sub
End Class
I programmatically insert a new DocumentWindow with a Panel in it. If you omit instruction “RadDock1.Visible = False”, all is ok, otherwise the panel will overlap the tab. If you click the small down arrow on the right (it’s almost invisible) and select the window (Test), all returns ok.
In my application, obviously much more complicated, I need to make invisible the RadDock during certain operations. What can I do to solve this problem?
Thank you.
I have a RadGridView which has a row for every employee in the database. Users manage employees using this Grid, so they have the capability to add, modify, and remove rows.
I have been able to use the RowsChanging/Changed events to call the appropriate DAL methods to add/remove the information from the underlying database, but when the user adds a row, the row is immediately sorted by whatever sort the user has chosen, and so it "appears" to disappear. In actuality, it has simply placed itself in the appropriate spot in the list according to the sort function. I would like to hook into an event that occurs when the user finishes adding the row and select the row so that the user can see that it was added successfully and did not disappear.
How would I accomplish this?