0

When my focus is on the menu bar and I am pressing the right key, focus is skipping the first item_row i.e. from the menu bar it goes to row_item_1_1, skipping row_item_1_0 and from menu to item_row_2_1 skipping item_row_2_0 and so on.

How can I resolve this issue?

case "ArrowRight": // Right button
 if (
 $(".sidebar-container").hasClass("toggle_menu") &&
 $("[id^=menu_]").is(":focus")
 ) {
 if ($(".profile_container").hasClass("active")) {
 var $logoutButton = $("#logout-button");
 if ($logoutButton.length) {
 console.log("element found with id #logout-button");
 $logoutButton.focus();
 }
 } else SN.focus(`#${first_page_focused_element}`);
 }
 e.preventDefault();
 break; 
Rory McCrossan
338k41 gold badges322 silver badges353 bronze badges
asked Jul 25, 2024 at 15:59
2
  • We can't help you to solve this without also seeing the relevant HTML Commented Jul 25, 2024 at 16:03
  • Hello, would you share your dev environment? simlator or TV device? Tizen Version? Which tools - Tizen Studio ? etc Commented Aug 20, 2024 at 6:40

0

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.