Small addition to my Greasemonkey Outlook Web Access Extension -- now the enter key submits the search on the find names form.
Code shown below and as a download here.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Outlook Web Access Extensions | |
// @namespace http://www2.hawaii.edu/~dburger | |
// @description Extensions to using the bastard child Outlook Web Access | |
// @include https://mail.camber.com/exchange/* | |
// ==/UserScript== | |
( | |
function() { | |
// look for the toolbar and if found all 'Select All' to it | |
var tables = document.getElementsByTagName('table'); | |
for (var i = 0; i < tables.length; i++) { | |
var table = tables[i]; | |
if (table.className === 'trToolbar') { | |
var row = table.tBodies[0].rows[0]; | |
var newCell = row.insertCell(row.cells.length - 1); | |
newCell.setAttribute('valign', 'middle'); | |
newCell.setAttribute('nowrap', 'nowrap'); | |
var font = document.createElement('font'); | |
font.setAttribute('size', '2'); | |
font.appendChild(document.createTextNode('Select All')); | |
var nobr = document.createElement('nobr'); | |
nobr.appendChild(font); | |
var a = document.createElement('a'); | |
a.href = 'javascript:void(0);'; | |
a.addEventListener('click', function() { | |
var inputs = document.getElementsByTagName('input'); | |
for (var i = 0; i < inputs.length; i++) { | |
var input = inputs[i]; | |
var evt = document.createEvent('MouseEvents'); | |
if (input.type == 'checkbox' && !input.checked) { | |
// this won't fire the events to color the row | |
// input.checked = true; | |
// so dispatch as an event instead | |
evt.initEvent('click', true, false); | |
input.dispatchEvent(evt); | |
} | |
} | |
}, true); | |
a.appendChild(nobr); | |
newCell.appendChild(a); | |
} | |
} | |
// if this is the find names popup form let <enter> work as submit | |
var forms = document.getElementsByTagName('form'); | |
if (forms.length == 1 && forms[0].name == 'galfind') { | |
var form = forms[0]; | |
var inputs = document.getElementsByTagName('input'); | |
for (var i = 0; i < inputs.length; i++) { | |
var input = inputs[i]; | |
if (input.type == 'text') { | |
input.addEventListener('keypress', function(evt) { | |
if (evt.keyCode == 13) form.submit(); | |
}, true); | |
} | |
} | |
} | |
} | |
)(); |
Just stumbled on this. Do you know enough about how OWA works to add a "Mark Unread" option? This is the single biggest factor for me not being able to use OWA from Firefox. I typically use the read/unread status of a message to determine whether I've dealt with something or need to go back to it.
ReplyDeletePerhaps a bad system, but that's the way I work and would love to be able to do that from Firefox.
I've done a little preliminary research on how to do this and I think I will be able to get it to work. I'll put it up as a new blog post when finished.
ReplyDeleteany news on this yet? I am in the same boat as Anon above and would love to be able to mark items as unread in OWA using Firefox as well....thanks
ReplyDelete@buggles: Yes! I solved this problem as well soon after anonymous suggested it. You can find the update in the latest posting on this greasemonkey extension:
ReplyDeletehttp://david-burger.blogspot.com/2008/07/firefox-greasemonkey-outlook-web-access_19.html