When tabbing, focus should be only within the project create area... currently user is able to tab accross the tree, navigation pane etc.,
kalyanbabu 0 Newbie Poster
Recommended Answers
Jump to PostThat works, but you will still tab out of the form area.
You need a javascript function:
function setFocus(input, objEvent) { if(objEvent.keycode == 66) { input.form[(getIndex(input)+1) % input.form.length].focus(); } function getIndex(input) { var index = -1, i = 0, found = false; while (i < input.form.length …
All 4 Replies
viswa_007 0 Newbie Poster
SheSaidImaPregy 28 Veteran Poster
kalyanbabu 0 Newbie Poster
SheSaidImaPregy 28 Veteran Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.