Hi,
I am searching for a way to make AX jump from an overview grid to a detail tabpage with a doubleclick. I would overide the doubleclickMethod on the form, but I have no idea how.
Thanks.
*This post is locked for comments
Hi,
I am searching for a way to make AX jump from an overview grid to a detail tabpage with a doubleclick. I would overide the doubleclickMethod on the form, but I have no idea how.
Thanks.
*This post is locked for comments
If you want the default behaviour from a list page, do as Petr says.
If you're talking about changing tabpages in the same form, override the mouseDblClick method on the grid control as following:
public int mouseDblClick(int _x, int _y, int _button, boolean _Ctrl, boolean _Shift)
{
int ret;
ret = super(_x, _y, _button, _Ctrl, _Shift);
MyTabPage.activatePage();
return ret;
}
Note that your tabpage must have the AutoDeclaration property set to Yes.
Hi Koeppe,
You should use property DefaultAction on an overview grid. See this How to: Specify the Default Action for the List Page Grid
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,235 Most Valuable Professional
nmaenpaa 101,156