To provide a Close button
(instead of the Minimize button),
try this:
google.elements.keyboard.enableMinMaxMode(false);
google.elements.keyboard.setAutoHide(false);
Put those two lines ABOVE the keyboard constructor call
in your onLoad function.
__________________________________________________
To hide the language label and the layout control,
put this in the <head> section of your document:
<style type="text/css">
#kbd_t abbr { visibility: hidden !important; }
#kbd_oem { display: none !important; }
</style>
__________________________________________________
BTW:
For correct rendering (including Internet Explorer),
specify a strict doctype, or simply use this:
<!DOCTYPE html>
Make sure that the doctype declaration occupies
the very first line of your document.
-- omr
--
You received this message because you are subscribed to the Google Groups
"Google AJAX APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en.