Great service and product!
Only a few observations..
I couldn't get the FOLDER to work correctly, I created a folder named "keep", but couldn't move any messages from my inbox into it. After I select the message, and then change the folder to "keep", am I supposed to push a button to move it.
It would be a nicety to have a button using javascript that would automatically select all the messages, or unselect them, something like:
Code Sample:
Button code:
onClick="SelectUnSelectAll( true, self.document.FQ_form, 'd')">
|
|
And the function would look something like:
Code Sample:
function SelectUnSelectAll( flag, my_form, field_name)
{
len = my_form.elements.length;
var index = 0;
for( index=0; index < len; index++ )
{
if( my_form.elements[index].name == field_name )
{
my_form.elements[index].checked=flag;
}
}
}
|
|
I think that would work with just some minor modifications. Use the SelectUnselectAll sending a true or false, if the all the check boxes should be selected.
Just my opinions. I think its great.... thanks
Sneaky