|
Comments and Discussions
|
 |
|
 |
Hi,
I have used this keyboard in my LogIn page of ASP.NET app (3.5 framework), but , there are many other customization like,
I want to disable at first load,
I am using checkbox to enable/disable keyboard,
restricting txtbox which is bind to this keyboard for only 10 char,
In all these cases I am facing issues like
1. Nothing is working in Firefox (Major) ( not even get bind to textbox )
2. Enable/disabe not working in chrome (Major) ( neither Javascript nor JQuery )
( some other JS are working, like alert, checkbox event etc, )
( I am even not able to debug JS )
but everything is fine in IE 8.0
I have used simple code
/**************** js **************/
var nodes = document.getElementById('#keyboard';).getElementsByTagName('*');
for (var i = 0; i < nodes.length; i++) {
nodes[i].disabled = true;
}
/*********************************/
/**********JQuery*************/
$('#keyboard').find('*').each(function() {
$(this).attr('disabled', true);
})
/*****************************/
prop(), attr etc all are tried, but not wrking,
please suggest me, In What way I have to think ?
Regards
Swapnil Dube
|
|
|
|
 |
Hello,
I explored more options,like
added more 10 div with 1 parent div, all 10 div has 10 asp.net buttons, they are getting disabled with my existsing code, but not the keyboard div, ( on IE and chrome also)
observed viwe source part, the keyboard is getting disabled attribute as 'disabled' by my code, but not reflecting the effect on screen,
I am too much confused, its very urgent,
plase help
Regards
Swapnil Dube
|
|
|
|
 |
Hey. First of all, thanks for this. I just unzipped these, opened up all of them in Firefox. Only the edit-simple example works. All the others, when you click the keyboard, the key flashes oranges but the letter does not appear in the text field. They all work in IE8. Any ideas? Im not versed in javascript.. Maybe Firefox is blocking something?
(Edit: oops, just saw this bug reported below. I'll leave this up for visibility)
|
|
|
|
 |
shift+X = ْ
Shift+E = ُ
shift+Q = َ
shift+A = ِ
shift+Z = ~
shift+W = ً
shift+S = ٍ
shift+R = ٌ
shift+T = لإ
shift+G = لأ
shift+Y = إ
shift+V = {
shift+c = }
shift+F = ]
shift+D = [
shift+U = ‘
shift+M = ’
Updated script to paste would be:
Ar_shift: ["ّ","!","@","#","$","٪","^","&","٭","(",")","_","+",
"َ","ً","ُ","ٌ","لإ","إ","‘","÷","×","؛",">","<","|",
"ِ","ٍ","[","]","لأ","أ","ـ","،","/",":",""",,
"~","ْ","}","{","ﻵ","آ","’",",",".","؟"],
|
|
|
|
 |
What you had given numpad, it is not working under Firefox, please help me what was the problem with that code. raki
|
|
|
|
 |
Working in firefox 8, but not working in firefox12 and above.
|
|
|
|
 |
I found the same issue, but I see someone has already reported it. Fix?!
|
|
|
|
 |
I have downloaded this several times and have no idea how or if it works at all. Once I try opening a file I cannot back up to try anything else. You need a user-friendly guide for consumers not programmers.
|
|
|
|
 |
Hi,
Is it possible to have the Numbers Pad open when the web page loads.
Also is it possible to have a "Clear all" button or a "Back Space" key.
Best regard,
Dereck
|
|
|
|
 |
masoudxxx
|
|
|
|
|
 |
Has anyone make the Vitual Keyboard work within a Masked Textbox ??
I've tried with RadMaskedTextBox (from Telerik), a jquery masked input plugin (from Digitalbrush) and a MaskedEditExtender (from AjaxToolkit) without success in all cases.
Thank you for this great tool !
|
|
|
|
 |
I want to add text to the keyboard. Specifically I have a request to have the keyboard say "SPACE" (Or, possibly in other languages)
Is that possible and where would I start?
|
|
|
|
 |
My javascript skills aren't that good so i'm looking for some help. How do i embed the Virtual Keyboard (vatmpad.js) into my existing ASP page. What i want to do is to be able to click on an input box, the keyboard pop up, enter whatever data via the onscreen keyboard, press enter on that keyboard and the keyboard pass that value to the input box. I'm creating a kiosk of sorts without a keyboard or mouse. Whatever help you can give would be great. Thanks...
|
|
|
|
 |
Hey I have been an Engg Student.
I work on .net normally.
I wanted to ask why have you used Java Script.
Means is it better or just because you have better experience in Scripting.
Can you suggest coz for a start i designed it in Vb.net and looking for code page fr Hindi and Marathi ( Indian Languages).
So wht if i want to add new languages.
|
|
|
|
 |
I was having no luck getting the translate function to work with Chrome. However after bit of Googling I made this hack which is UGLY but works.
It seems you have to use initKeyboardEvent instead of initKeyEvent for things to work in Chrome.
I made the following changes beginning at line 438 of edit-translator.html
if(userstr.indexOf('chrome') > -1){
var e = document.createEvent("KeyboardEvent");
e.initKeyboardEvent .... the rest is the same to line 451
}
else
{
repeat the original block beginning at line 438 to 451
}
This makes the change only on Chrome browsers since this change seems to break all other browsers.
Not pretty but it works.
FWIW
Tom
|
|
|
|
 |
Tried. Doesnt work for me
|
|
|
|
 |
can I have any demo
after changes still it is not working on chrome at my side
var e = document.createEvent("KeyboardEvent");
e.initKeyboardEvent("keypress", // in DOMString typeArg,
false, // in boolean canBubbleArg,
true, // in boolean cancelableArg,
null, // in nsIDOMAbstractView viewArg, Specifies UIEvent.view. This value may be null.
false, // in boolean ctrlKeyArg,
false, // in boolean altKeyArg,
false, // in boolean shiftKeyArg,
false, // in boolean metaKeyArg,
code, null); // key code.
document.getElementById("myText").dispatchEvent(e);
I want to fire keypress event when user press a button
|
|
|
|
 |
Nice one
|
|
|
|
 |
Please, take a look at my new Virtual Hebrew Keyboard (mikledit) ...And give me your opinion. http://hebrew-keyboard.com
I know that JS makes Faster VK but flash is funny.
|
|
|
|
 |
I love the layout and skin you have applied to your flash keyboard. I only wish this JS virtual keyboard looked as good and had a perfectly replicated qwerty layout.
|
|
|
|
 |
Can some one help me how to hide the language button?
|
|
|
|
 |
how to set default language as "Us' disableor invisible language selection button
parthiban
|
|
|
|
 |
I have enabled vkeyboard (6-test-fly-anonym.html) in my script. It is working great in Internet Explorer and FireFOx but it is not showing in CHROME browser. Can u help me up with this?
|
|
|
|
 |
|
|
General News Suggestion Question Bug Answer Joke Rant Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
|
Type | Article |
Licence | CPOL |
First Posted | 10 Apr 2006 |
Views | 671,072 |
Downloads | 15,395 |
Bookmarked | 319 times |
|
|