Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Works with M&T But . . . JavaScript Calendar not rendering' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Works with M&T But . . . JavaScript Calendar not rendering
Authored by: rsnyder on Jan 16, '03 01:37:39AM

Following the notes on this thread, I added both dll and asp to this key in the .plist file. I am now able to access my accounts at the online M&T Bank site. Great. However, I did run into one interesting issue.

The JavaScript popup calendars for selecting start and end dates for viewing account activity do not render. I can work around this by entering dates in the text fields. However, I am currious as to what is going on with this. This calendar pop feature works in IE (though the calendar dates only show up after selecting one of the navigation buttons, like "today").

Here is the source for the pop up

<PRE> [added by me for this post]

<HTML>
<HEAD>
<TITLE>JavaScript Calendar&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TITLE>
</HEAD>

<SCRIPT LANGUAGE="JavaScript">

//newWin = window;

// USE THE JAVASCRIPT-GENERATED DOCUMENTS (calDocTop, calDocBottom) IN THE FRAMESET
calDocFrameset =
"<FRAMESET ROWS='70,*' FRAMEBORDER='0'>\n" +
" <FRAME NAME='topCalFrame' SRC='javascript:parent.opener.calDocTop' SCROLLING='no'>\n" +
" <FRAME NAME='bottomCalFrame' SRC='javascript:parent.opener.calDocBottom' SCROLLING='no'>\n" +
"</FRAMESET>\n";

document.write(calDocFrameset);

</SCRIPT>

</HTML>

</PRE>



[ Reply to This | # ]