Jump to content
Son zamanlarda artan kullanıcı hesap hırsızlıkları sebebiyle tüm kullanıcılara şifre sıfırlama maili gönderilmiştir. Lütfen güveli şifreler seçiniz. Mevcut e-mail adresinize erişemiyorsanız, en aşağıdaki destek linkinden bize ulaşınız. ×

Tab Tuşu Ile Input Geçişleri


mert_ozsoy
 Share

Recommended Posts

YusufTekg246z, 02.03.2019 - 23:51 yazdı:

Sol kısımda yer alan Input veya farklı bir öğeyi alt alta getirdin mi tap tuşuna bastığında bir sonraki öğeye geçiş yapar yapamazsanız resim göndere bilirim

 

hocam malesef olmadı

Link to comment
Share on other sites

  • 2 hafta sonra ...

Merhabalar, her Input objesinin On Key evresine, bir sonraki Input objesine geçmesi için Focus yapmanız gerekiyor. Varsayalım 3 tane Input var;

Input 1 On Key

if (e_Key == 9) then
    Page.SetFocus("Input2");
end

Input 2 On Key

if (e_Key == 9) then
    Page.SetFocus("Input3");
end

Input 3 On Key

if (e_Key == 9) then
    Page.SetFocus("Input1");
end

 

Edited by Dark_Angel
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...