
Hello Support,
I have two Gridviews, when an item on the top grid is selected, the bottom grid populates with content related to the selection that is displayed by handling the SelectionChanged() event. I grid also includes GridViewHyperlinkColumn()s which show a popup window by handling the HyperlinkOpening() event.
Currently, when I click on a hyperlink on a row that is not selected, my dialog opens up. When I close the dialog the row is selected is the bottom content opens up.
The behavior I would like is that when I click a hyperlink, the row is not selected. Or, when clicking the hyperlink, the row is selected, then the hyperlinkOpening() is handled.
What is the recommended way to accomplish this?
Thanks!

How do I allow the mouse click to pass thorough this control transparent area to any controls behind it?


Hi,
I have a DateTime field in my table that is nullable.
How can I keep null value in my grid?
I would show empty cell when date is null, and user could insert a date or cancel a date that already exists.

Hi to all,
I would create a structure like this:
Can I do this?
Actually Imet this problem, when I try to add valuteUC to valuteLG it says me thatvaluteLG.Container = Nothing
What I have to do?
Dim valuteUC = New ValuteUserControl()Dim valuteLG = New LayoutControlGroupItem()valuteLG.Container.Add(valuteUC)MainLayoutControlTabbedGroup.Container.Add(valuteLG)
Hello there!
The function of the control itself it's pretty straightforward, however, it seems that it does not have the ability of binding to a data source. Is there any possible workaround?.
Thanks in advance.

Hi Folks,
I have a user control (WinForms) that has a radGridView placed on it.
I use it on my radForm as follows:
Declare the instance of the control as a member level variable
private UserctlItemMastGridView _gridview;Then in the constructor of the form I set it up and:
_gridview = new UserctlItemMastGridView();_gridview.Dock = DockStyle.Fill;pnlAll.Controls.Add(_gridview);_gridview.GridClicked += new EventHandler(this._gridview_GridClicked);Which is fine. I have an event handler which fires when the grid is clicked.
The issue I have is the mouse-wheel scroll is not being fired or captured. Is there a way to raise an event for mouse scroll on the user control and pass it back to the form?
Many thanks,
Martin.

