Announcements
No record found.
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 Koeppe,
You should use property DefaultAction on an overview grid. See this How to: Specify the Default Action for the List Page Grid
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.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.