• Recent
    • Tags
    • Popular
    • Register
    • Login

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website

    Mailing list

    User help
    2
    5
    3.0k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      skiv71
      last edited by

      hi, i use google chrome when constructing mango projects, and i've noticed what maybe a bug when creating mailing lists?

      at the moment i'm having to revert to IE (which is dog slow) for this part...

      When i create a new mailing list, i cannot overwrite the XID for it, i cannot select users from the drop down list, its just like the page has crashed.

      In IE i can do all the above, but i still cannot drag over text to make it blue (and then replace-overwrite it).

      Bug in the 'mailing_lists.shtm'??

      1 Reply Last reply Reply Quote 0
      • L
        lordportux
        last edited by

        Hello! wich is your mango version?

        1 Reply Last reply Reply Quote 0
        • S
          skiv71
          last edited by

          hi sorry, think its 1.12.4

          1 Reply Last reply Reply Quote 0
          • L
            lordportux
            last edited by

            Hi skiv71

            To solve this problem you have to edit the mailing_lists.shtm file and remove the document.onmousedown line in "function scheduleInit()":

            
                function scheduleInit() {
                    var tbody = $("scheduleRows");
                    var i, tr, td, hour, j, tbl2, tr2, td2, k, content, title, intId;
                    for (i=0; i<24; i++) {
                        tr = appendNewElement("tr", tbody);
                        td = appendNewElement("td", tr);
                        hour = ""+ i;
                        hour = ("00"+ hour).substring(hour.length);
                        td.innerHTML = hour +":00 - "+ hour +":59";
                        
                        for (j=0; j<7; j++) {
                            td = appendNewElement("td", tr);
                            td.className = "ptr hreg";
                            td.style.paddingLeft = "3px";
                            td.onmouseover = function() { hourOver(this); };
                            td.onmouseout = function() { hourOut(this); };
                            td.onmousedown = function() { return hourDown(this) };
                            
                            content = '<table cellspacing="1" cellpadding="0"><tr>';
                            for (k=0; k<4; k++) {
                                if (k == 0) title = hour +":00";
                                else if (k == 1) title = hour +":15";
                                else if (k == 2) title = hour +":30";
                                else title = hour +":45";
                                intId = getIntervalId(j, i, k);
                                content += '<td id="ivl'+ intId +'" style="padding-right:2px;" title="'+ title +'"';
                                content += ' class="qreg qon" onmouseover="quarterOver(this)" onmouseout="quarterOut(this)"';
                                content += ' onmousedown="quarterDown(this); return false;">&nbsp;</td>';
                            }
                            content += '</tr></table>';
                            td.innerHTML = content;
                        }
                    }
                    
                    document.onmousedown = function() { return false; };                                             // DELETE THIS LINE TO ENABLE THE ONMOUSEDOWN FUNCTIONALITY
                    document.onmouseup = function() { mouseDown = false; return false; };
                    document.onselectstart = function() { return false; };
                }
            
            

            Regards! :D

            1 Reply Last reply Reply Quote 0
            • First post
              Last post