DNN Event Module problem with week series events


Author Message
Markku U

Posted: 8/15/2010
Quote message 

i've had a problem since April 8 with DNN Event Module with week series events. y make once recurrency week event but when y try to update that week series recurrency event (including more weekdays) update fails. could some help to get the same issue. problem is in script.js file with artLoadEvent.add(artLayoutIESetup).

eliminating this artLoadEvent.add(artLayoutIESetup) helps.



/* begin Layout */
function artLayoutIESetup() {
var isIE = navigator.userAgent.toLowerCase().indexOf("msie") != -1;
if (!isIE) return;
var q = artGetElementsByClassName("art-content-layout", document, "div");
if (!q || !q.length) return;
for (var i = 0; i < q.length; i++) {
var l = q;
var l_childs = l.childNodes;
var r = null;
for (var p = 0; p < l_childs.length; p++) {
var l_ch = l_childs[p];
if ((String(l_ch.tagName).toLowerCase() == "div") && artHasClass(l_ch, "art-content-layout-row")) {
r = l_ch;
break;
}
}
if (!r) continue;
var c = [];
var r_childs = r.childNodes;
for (var o = 0; o < r_childs.length; o++) {
var r_ch = r_childs[o];
if ((String(r_ch.tagName).toLowerCase() == "div") && artHasClass(r_ch, "art-layout-cell")) {
c.push(r_ch);
}
}
if (!c || !c.length) continue;
var table = document.createElement("table");
table.className = l.className;
var row = table.insertRow(-1);
table.className = l.className;
for (var j = 0; j < c.length; j++) {
var cell = row.insertCell(-1);
var s = c[j];
cell.className = s.className;
while (s.firstChild) {
cell.appendChild(s.firstChild);
}
}
l.parentNode.insertBefore(table, l);
l.parentNode.removeChild(l);
}
}
// artLoadEvent.add(artLayoutIESetup);
/* end Layout */

looking for test partner and show that issue to artisteer engineers.
they don't believe that there is the problem above mentioned.

Regards,

Markku