Search found 3 matches

by JMB
22 Aug 2019, 22:58
Forum: "How do I do this"
Topic: Be able to use tabulation with Menu
Replies: 3
Views: 10967

Re: Be able to use tabulation with Menu

Hi Jean-Michel,

the instructions used by the customer:

On the OnArrive Event :

var i = 0;
var num_opt = 0;
var nbr_elt_tab = USERENV.TabOpt_Popup.length - 2;

$("a").focus(function()
{

if(i<=nbr_elt_tab)
{
i ++;
}
else
{
i = 1;
}

num_opt = USERENV.TabOpt_Popup ;
FIELDS("a1 ...
by JMB
22 Aug 2019, 18:35
Forum: "How do I do this"
Topic: Be able to use tabulation with Menu
Replies: 3
Views: 10967

Re: Be able to use tabulation with Menu

Hi Jean-Michel,
I have asked to the customer more informations.

But I'm afraid that I couldn't get more. This a customer who wants always more explanations and advices. But he doesn't never find time to provide supplementary informations.
:?
by JMB
21 Aug 2019, 01:16
Forum: "How do I do this"
Topic: Be able to use tabulation with Menu
Replies: 3
Views: 10967

Be able to use tabulation with Menu

aXes 3.11

We have a customer who wants to use tabulations on their menus.
He has used Link extensions to replace all menu options.
And after that he has defined in USERENV.js a list and a function to retrieve the value and the Option description.

Apparently that works.

He can move in the menu and ...