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
Mohamed Amine Mahmoudi
100
Super User 2025 Season 1
Community Member
48
shanawaz davood basha
6