View Rowan Announcer Submission (2024)

Go to Main Content

HELP|EXIT

View Rowan Announcer Submission

View Rowan Announcer Submission (1)
"; var newNode = document.createElement("div"); newNode.setAttribute("id", datePickerDivID); newNode.setAttribute("class", "dpDiv"); newNode.setAttribute("style", "visibility: hidden;"); document.body.appendChild(newNode); } // move the datepicker div to the proper x,y coordinate and toggle the visiblity var pickerDiv = document.getElementById(datePickerDivID); pickerDiv.style.position = "absolute"; pickerDiv.style.left = x + "px"; pickerDiv.style.top = y + "px"; pickerDiv.style.visibility = (pickerDiv.style.visibility == "visible" ? "hidden" : "visible"); pickerDiv.style.display = (pickerDiv.style.display == "block" ? "none" : "block"); pickerDiv.style.zIndex = 10000; // draw the datepicker table refreshDatePicker(targetDateField.id, dt.getFullYear(), dt.getMonth(), dt.getDate());}/**This is the function that actually draws the datepicker calendar.*/function refreshDatePicker(dateFieldID, year, month, day){ // if no arguments are passed, use today's date; otherwise, month and year // are required (if a day is passed, it will be highlighted later) var thisDay = new Date(); if ((month >= 0) && (year > 0)) { thisDay = new Date(year, month, 1); } else { day = thisDay.getDate(); thisDay.setDate(1); } // the calendar will be drawn as a table // you can customize the table elements with a global CSS style sheet, // or by hardcoding style and formatting elements below var crlf = "\r\n"; var TABLE = "" + crlf; var xTABLE = "
" + crlf; var TR = ""; var TR_title = ""; var TR_days = ""; var TR_todaybutton = ""; var xTR = "" + crlf; var TD = ""; if (dayNum == day) html += TD_selected + TD_onclick + DIV_selected + dayNum + xDIV + xTD; else html += TD + TD_onclick + dayNum + xTD; // if this is a Saturday, start a new row if (thisDay.getDay() == 6) html += xTR + TR; // increment the day thisDay.setDate(thisDay.getDate() + 1); } while (thisDay.getDate() > 1) // fill in any trailing blanks if (thisDay.getDay() > 0) { for (i = 6; i > thisDay.getDay(); i--) html += TD + "" + xTD; } html += xTR; // add a button to allow the user to easily return to today, or close the calendar var today = new Date(); var todayString = "Today is " + dayArrayMed[today.getDay()] + ", " + monthArrayMed[ today.getMonth()] + " " + today.getDate(); html += TR_todaybutton + TD_todaybutton; html += " "; html += ""; html += xTD + xTR; // and finally, close the table html += xTABLE; document.getElementById(datePickerDivID).innerHTML = html; // add an "iFrame shim" to allow the datepicker to display above selection lists adjustiFrame();}/**Convenience function for writing the code for the buttons that bring us back or forwarda month.*/function getButtonCode(dateFieldID, dateVal, adjust, label){ var newMonth = (dateVal.getMonth () + adjust) % 12; var newYear = dateVal.getFullYear() + parseInt((dateVal.getMonth() + adjust) / 12); if (newMonth < 0) { newMonth += 12; newYear += -1; } return "";}/**Convert a JavaScript Date object to a string, based on the dateFormat and dateSeparatorvariables at the beginning of this script library.*/function getDateString(dateVal){ var dayString = "00" + dateVal.getDate(); var monthString = "00" + (dateVal.getMonth()+1); dayString = dayString.substring(dayString.length - 2); monthString = monthString.substring(monthString.length - 2); switch (dateFormat) { case "dmy" : return dayString + dateSeparator + monthString + dateSeparator + dateVal.getFullYear(); case "ymd" : return dateVal.getFullYear() + dateSeparator + monthString + dateSeparator + dayString; case "mdy" : default : return monthString + dateSeparator + dayString + dateSeparator + dateVal.getFullYear(); }}/**Convert a string to a JavaScript Date object.*/function getFieldDate(dateString){ var dateVal; var dArray; var d, m, y; try { dArray = splitDateString(dateString); if (dArray) { switch (dateFormat) { case "dmy" : d = parseInt(dArray[0], 10); m = parseInt(dArray[1], 10) - 1; y = parseInt(dArray[2], 10); break; case "ymd" : d = parseInt(dArray[2], 10); m = parseInt(dArray[1], 10) - 1; y = parseInt(dArray[0], 10); break; case "mdy" : default : d = parseInt(dArray[1], 10); m = parseInt(dArray[0], 10) - 1; y = parseInt(dArray[2], 10); break; } dateVal = new Date(y, m, d); } else if (dateString) { dateVal = new Date(dateString); } else { dateVal = new Date(); } } catch(e) { dateVal = new Date(); } return dateVal;}/**Try to split a date string into an array of elements, using common date separators.If the date is split, an array is returned; otherwise, we just return false.*/function splitDateString(dateString){ var dArray; if (dateString.indexOf("/") >= 0) dArray = dateString.split("/"); else if (dateString.indexOf(".") >= 0) dArray = dateString.split("."); else if (dateString.indexOf("-") >= 0) dArray = dateString.split("-"); else if (dateString.indexOf("\\") >= 0) dArray = dateString.split("\\"); else dArray = false; return dArray;}function randomString(string_length) { var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz"; var randomstring = ''; for (var i=0; i"; var newNode = document.createElement("iFrame"); newNode.setAttribute("id", iFrameDivID); newNode.setAttribute("src", "javascript:false;"); newNode.setAttribute("scrolling", "no"); newNode.setAttribute ("frameborder", "0"); document.body.appendChild(newNode); } if (!pickerDiv) pickerDiv = document.getElementById(datePickerDivID); if (!iFrameDiv) iFrameDiv = document.getElementById(iFrameDivID); try { iFrameDiv.style.position = "absolute"; iFrameDiv.style.width = pickerDiv.offsetWidth; iFrameDiv.style.height = pickerDiv.offsetHeight ; iFrameDiv.style.top = pickerDiv.style.top; iFrameDiv.style.left = pickerDiv.style.left; iFrameDiv.style.zIndex = pickerDiv.style.zIndex - 1; iFrameDiv.style.visibility = pickerDiv.style.visibility ; iFrameDiv.style.display = pickerDiv.style.display; } catch(e) { } } catch (ee) { }}// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -//' View Rowan Announcer Submission (2)View Rowan Announcer Submission (3) '; var orginalHeight; var orginalWidth; var btnStyle=""; var maximize = false; document.write(strOverLayHTML); this.Draggable = true; function Maximisze() { if (!maximize) { maximize = true; ResizePopUp(window.screen.availHeight - 200, window.screen.availWidth - 50); } else { maximize = false; ResizePopUp(orginalHeight, orginalWidth); } } function ResizePopUp(height, width) { var divFrameParent = document.getElementById("bailwal_div_frame_parent"); var divOverlay = document.getElementById("bailwal_div_overlay"); var iframe = document.getElementById("bailwal_overlay_frame"); var tdOverLay = document.getElementById("bailwal_td_overlay"); var left = (window.screen.availWidth - width) / 2; var top = (window.screen.availHeight - height) / 2; var xy = GetScroll(); if (maximize) { left = xy[0] + 10; top = xy[1] + 10; } else { left += xy[0]; top += xy[1]; } divFrameParent.style.top = top + "px"; divFrameParent.style.left = left + "px"; divFrameParent.style.height = height + "px"; divFrameParent.style.width = width + "px"; iframe.style.height = divFrameParent.offsetHeight - 60 + "px"; iframe.style.width = divFrameParent.offsetWidth - 2 + "px"; } var onPopUpCloseCallBack = null; var callbackArray = null; this.SetLoadingImagePath = function (imagePath) { document.getElementById("bailwal_img_overlay_loading").src = imagePath; } this.SetCloseButtonImagePath = function (imagePath) { document.getElementById("bailwal_img_overlay_close").src = imagePath; } this.SetButtonStyle = function (_btnStyle) { btnStyle =_btnStyle; } function ApplyBtnStyle(){ if(btnStyle == "") return; var styles = btnStyle.split(';'); for (var i = 0; i < styles.length; i++) { var style = styles[i].split(':'); var objBtn1 = document.getElementById("baiwlal_btn_overlay_1"); var objBtn2 = document.getElementById("bailwal_btn_overlay_2"); eval("baiwlal_btn_overlay_1.style." + style[0] + "='" + style[1] + "';"); eval("bailwal_btn_overlay_2.style." + style[0] + "='" + style[1] + "';"); } } function __InitModalPopUp(height, width, title) { orginalWidth = width; orginalHeight = height; maximize = false; var divFrameParent = document.getElementById("bailwal_div_frame_parent"); var divOverlay = document.getElementById("bailwal_div_overlay"); var iframe = document.getElementById("bailwal_overlay_frame"); var tdOverLay = document.getElementById("bailwal_td_overlay"); var left = (window.screen.availWidth - width) / 2; var top = (window.screen.availHeight - height) / 2; var xy = GetScroll(); //left += xy[0]; top += xy[1]; document.getElementById("bailwal_tr_overlay_btn").style.display = "none"; document.getElementById("bailwal_span_title").innerHTML = title; divOverlay.style.top = "0px"; divOverlay.style.left = "0px"; var e = document; var c = "Height"; var maxHeight = Math.max(e.documentElement["client" + c], e.body["scroll" + c], e.documentElement["scroll" + c], e.body["offset" + c], e.documentElement["offset" + c]); c = "Width"; var maxWidth = Math.max(e.documentElement["client" + c], e.body["scroll" + c], e.documentElement["scroll" + c], e.body["offset" + c], e.documentElement["offset" + c]); divOverlay.style.height = maxHeight + "px"; divOverlay.style.width = maxWidth - 2 + "px"; divOverlay.style.display = ""; iframe.style.display = "none"; divFrameParent.style.display = ""; //$('#divFrameParent').animate({ opacity: 1 }, 2000); divFrameParent.style.top = (top > 0 ? top : 0) + "px"; divFrameParent.style.left = (left > 0 ? left : 0) + "px"; divFrameParent.style.height = height + "px"; divFrameParent.style.width = width + "px"; iframe.style.height = "0px"; iframe.style.width = "0px"; document.getElementById("baiwlal_btn_overlay_1").style.width = ""; document.getElementById("bailwal_btn_overlay_2").style.width = ""; onPopUpCloseCallBack = null; callbackArray = null; } this.ShowURL = function (url, height, width, title, onCloseCallBack, callbackFunctionArray, maxmizeBtn) { __InitModalPopUp(height, width, title); var divFrameParent = document.getElementById("bailwal_div_frame_parent"); var divOverlay = document.getElementById("bailwal_div_overlay"); var iframe = document.getElementById("bailwal_overlay_frame"); var tdOverLay = document.getElementById("bailwal_td_overlay"); tdOverLay.style.height = divFrameParent.offsetHeight - 20 + "px"; tdOverLay.style.width = divFrameParent.offsetWidth - 2 + "px"; document.getElementById("bailwal_span_loading").style.display = ""; document.getElementById("bailwal_div_message").style.display = "none"; //iframe.src = url; iframe.style.height = divFrameParent.offsetHeight - 60 + "px"; iframe.style.width = divFrameParent.offsetWidth - 2 + "px"; setTimeout("bailwal_modalPopupWindow.LoadUrl('" + url + "')", 1); if (onCloseCallBack != null && onCloseCallBack != '') { onPopUpCloseCallBack = onCloseCallBack; } if (callbackFunctionArray != null && callbackFunctionArray != '') { callbackArray = callbackFunctionArray; } if (maxmizeBtn) { document.getElementById("bailwal_span_overlay_window_max").style.display = ""; } } this.ShowMessage = function (message, height, width, title) { __InitModalPopUp(height, width, title); document.getElementById("bailwal_tr_overlay_btn").style.display = ""; var tdOverLay = document.getElementById("bailwal_td_overlay"); tdOverLay.style.height = "50px"; tdOverLay.style.width = "0px"; document.getElementById("bailwal_span_message").innerHTML = message; document.getElementById("bailwal_div_message").style.display = ""; document.getElementById("bailwal_span_loading").style.display = "none"; document.getElementById("baiwlal_btn_overlay_1").value = "OK"; document.getElementById("baiwlal_btn_overlay_1").onclick = bailwal_modalPopupWindow.HideModalPopUp; document.getElementById("bailwal_btn_overlay_2").style.display = "none"; ApplyBtnStyle(); } this.ShowConfirmationMessage = function (message, height, width, title, onCloseCallBack, firstButtonText, onFirstButtonClick, secondButtonText, onSecondButtonClick) { this.ShowMessage(message, height, width, title); var tdOverLay = document.getElementById("bailwal_td_overlay"); var maxWidth = 100; document.getElementById("bailwal_span_message").innerHTML = message; document.getElementById("bailwal_div_message").style.display = ""; document.getElementById("bailwal_span_loading").style.display = "none"; if (onCloseCallBack != null && onCloseCallBack != '') { onPopUpCloseCallBack = onCloseCallBack; } if (firstButtonText != "") { document.getElementById("baiwlal_btn_overlay_1").value = firstButtonText; if (onFirstButtonClick != "") { document.getElementById("baiwlal_btn_overlay_1").onclick = onFirstButtonClick; } } if (secondButtonText != "") { document.getElementById("bailwal_btn_overlay_2").value = secondButtonText; document.getElementById("bailwal_btn_overlay_2").style.display = ""; if (onSecondButtonClick != null && onSecondButtonClick != "") { document.getElementById("bailwal_btn_overlay_2").onclick = onSecondButtonClick; } } if (firstButtonText != "" && secondButtonText != "") { if (document.getElementById("baiwlal_btn_overlay_1").offsetWidth > document.getElementById("bailwal_btn_overlay_2").offsetWidth) { document.getElementById("bailwal_btn_overlay_2").style.width = document.getElementById("baiwlal_btn_overlay_1").offsetWidth + "px"; } if (document.getElementById("bailwal_btn_overlay_2").offsetWidth > document.getElementById("baiwlal_btn_overlay_1").offsetWidth) { document.getElementById("baiwlal_btn_overlay_1").style.width = document.getElementById("bailwal_btn_overlay_2").offsetWidth + "px"; } } ApplyBtnStyle(); } this.LoadUrl = function (url) { document.getElementById("bailwal_overlay_frame").src = url; } this.OnUrlLoaded = function () { document.getElementById("bailwal_overlay_frame").style.display = ""; document.getElementById("bailwal_span_loading").style.display = "none"; } function ShowLoading() { document.getElementById("bailwal_overlay_frame").style.display = "none"; document.getElementById("bailwal_span_loading").style.display = ""; } this.HideModalPopUp = function () { var divFrameParent = document.getElementById("bailwal_div_frame_parent"); var divOverlay = document.getElementById("bailwal_div_overlay"); divOverlay.style.display = "none"; divFrameParent.style.display = "none"; this.Draggable=true; if (onPopUpCloseCallBack != null && onPopUpCloseCallBack != '') { onPopUpCloseCallBack(); } } this.CallCallingWindowFunction = function (index, para) { callbackArray[index](para); } this.ChangeModalPopUpTitle = function (title) { document.getElementById("bailwal_span_title").innerHTML = title; } function setParentVariable(variableName, variableValue) { window[String(variableName)] = variableValue; } function GetScroll() { if (window.pageYOffset != undefined) { return [pageXOffset, pageYOffset]; } else { var sx, sy, d = document, r = d.documentElement, b = d.body; sx = r.scrollLeft || b.scrollLeft || 0; sy = r.scrollTop || b.scrollTop || 0; return [sx, sy]; } } //========Dragging Logic====================== var dragging = false,dragTop =0,dragLeft =0; this.DoDragging=function(e,undefined){ if(!this.Draggable) return; if(dragging == false) return; var __div_frame_parent =document.getElementById("bailwal_div_frame_parent"); var top = parseInt(__div_frame_parent.style.top.replace('px','')); var left = parseInt(__div_frame_parent.style.left.replace('px','')); var currentX=0,currentY=0; if(e.pageX != undefined){ currentX = e.pageX; currentY = e.pageY; } else if(e.x != undefined){ currentX = e.x; currentY = e.y; } if(currentY > dragTop){ top += currentY - dragTop; } else{ top -= dragTop - currentY; } if(currentX > dragLeft){ left += currentX - dragLeft; } else{ left -= dragLeft - currentX; } dragTop = currentY; dragLeft = currentX; try { __div_frame_parent.style.top =top + "px"; __div_frame_parent.style.left=left + "px"; }catch(ex){} } this.StartDragging = function(e,_this){ if(!this.Draggable) return; dragging = true; dragTop = e.pageY; dragLeft = e.pageX; _this.style.cursor ='move'; } this.StopDragging = function(){ if(!this.Draggable) return; dragging = false; document.getElementById("bailwal_tr_title").style.cursor ='default'; }}//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -//'

Better than fireworks! IRT Training has your Training Tip

Summertime has never felt better! Barbecues, beach, pool parties, and of course, fireworks! But before you watch the sky light up, Information Resources & Technology will remind you to update your password before it expires. Note: Emails are sent to you starting 21 days prior to your password expiring with several reminder emails starting seven days prior to expiration. If you are too busy watching the fireworks and miss your reminders, we will help you learn how to reset your password after it expires. Follow the steps listed below, and you will have a Jolly July!

To reset your Rowan NetID password AFTER it expires:

  1. Log into netid.rowan.edu and select the Other Login button. Note: If you are having trouble logging in, try clearing your cache or using a private/different browser.

  2. Enter your information.

  3. Select Verify. Note: If you do not have a social security number on file with Rowan University, enter your Banner ID number.

  4. You will be prompted to verify whether you have one of your Duo Devices available. Select Yes.

  5. Verify your identity with Duo. Select Send Me a Push.

  6. In the left-hand navigation menu, select Update Password.

  7. Enter and confirm a new password.

  8. Select the check box acknowledging the University’s Acceptable Use Policy and select Update Password.

Congrats! You successfully changed your password.

NOTE: Once you’ve successfully changed your password, update your stored password on your mobile device for email and wireless.

Be sure to bookmark the Update your Rowan NetID Password knowledge base article for later because your password will expire every 180 days.

Need More Help?

The Rowan Support Portal is here to help you with your technology-related requests, questions, and issues at Rowan University. To submit a ticket, report a problem, browse our Knowledge Base articles and service catalog, log in to the support portal with your Rowan NetID.

You can also get help from, Ask Susan. Susan is available 24/7 to answer your technology questions. Can’t get answers to your questions? No worries! Susan will connect you to chat with one of our support experts to help you during designated hours. For more information, go to the IRT website.

Stay up to date with all things technology related with our Tech Digest newsletter at Rowan University. Sign up today for the Tech Digest newsletter. You can also visit or follow us on Twitter @RowanIRT.

Contact Information:

Sheena Pierce
Training/Information Resources & Technology
Technical Trainer
piercesh@rowan.edu
856-256-4179

Submitted By:

Name: Sheena Pierce
Department: IRT - Training Services
Title: Technical Trainer & Instructional Designer
E-Mail: piercesh@rowan.edu

Approved By:

Name: Robin Kincaid
Department: IRT - Technology Support Center
Title: Director of Technical Support
E-Mail: kincaid@rowan.edu

View Rowan Announcer Submission (4)

Skip to top of page

Release: 1.100


© 2024 Ellucian Company L.P. and its affiliates.
View Rowan Announcer Submission (2024)
Top Articles
Latest Posts
Article information

Author: Terrell Hackett

Last Updated:

Views: 5926

Rating: 4.1 / 5 (52 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Terrell Hackett

Birthday: 1992-03-17

Address: Suite 453 459 Gibson Squares, East Adriane, AK 71925-5692

Phone: +21811810803470

Job: Chief Representative

Hobby: Board games, Rock climbing, Ghost hunting, Origami, Kabaddi, Mushroom hunting, Gaming

Introduction: My name is Terrell Hackett, I am a gleaming, brainy, courageous, helpful, healthy, cooperative, graceful person who loves writing and wants to share my knowledge and understanding with you.