{5} Assigned, Active Tickets by Owner (Full Description) (5 matches)
List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.
kamicane (5 matches)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #754 | Safari 2 Crashes on $A(node.childNodes) | Core | Mootools version 1.2 | defect | 01/17/08 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
This crashes Safari 2 on Leopeard every time. (note that if you relaunch safari2 after it crashes it will relaunch with the safari3 rendering engine) Seems to be an issue with passing .childNodes into $A() on an element that isn't attached to anything. http://tripledoubleyou.subtlegradient.com/Examples/mootools%20safari2%20crasher.html
I can't look at it anymore right now. I originally found the issue when I was using the Request.HTML code and it's taken me a while to boil it down to this issue. When I get some more time I can try and boil it down some more. http://tripledoubleyou.subtlegradient.com/stuff/Safari2/ |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #708 | Element.setText in Safari 2.0.4 standalone not working | Core | Mootools version 1.3 | defect | 12/21/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
With Safari 2.0.4 standalone version, nothing happens when I'm using Element.setText("content"), while other browsers sets "innerHTML" well. It seems to me that Safari 2.x just doesn't supports setting the "text" property by setProperty. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #742 | IE's attachEvent, FF's addEventListener and Event fire order | Core | Mootools version 1.3 | defect | 01/17/08 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
IE 6/7 with attachEvent fires event reversed as they were attached. It's a common issue, not related to mootools. However, the Events class can handle it. <script type="text/javascript">
addEvent("domready",function () {
$("x").addEvent("click",function () { alert("1"); });
$("x").addEvent("click",function () { alert("2"); });
});
</script>
<div id="x">x</div>
FF will alert 1, 2 IE will alert 2, 1 For custom events, it's obviously ok: <script type="text/javascript">
addEvent("domready",function () {
$("x").addEvent("custom",function () { alert("1"); });
$("x").addEvent("custom",function () { alert("2"); });
$("x").addEvent("click",function () { this.fireEvent("custom"); });
});
</script>
<div id="x">x</div>
alert 1,2 for both browsers. Though I'm not relying on the event order, it might affect stuff without noticing. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #577 | Create a new style element with innerCSS error. | Core | Mootools version 1.3 | enhancement | 11/02/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
I wanted this: var style = [
' * { margin: 0; padding: 0; }',
' body, html { width: 100%; height: 100%; overflow: hidden; font-size: 100%; font-family: \'Trebuchet MS\', \'Geneva CE\', lucida, sans-serif;}'
].join('');
var el = new Element('style', {
'type': 'text/css',
'text': style
}).inject(document.head);
But IE6/7 throws a some exceptions. This works: var el = document.createElement('style');
el.setAttribute('type','text/css');
Browser.Engine.trident ? el.styleSheet.cssText = style : el.appendText(style);
document.head.appendChild(el);
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #547 | element Attribute error in ie | Core | Mootools version 1.3 | defect | 10/24/07 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[html]
<div id="xx" empty="sss">
[/html]
$(el).getAttribute( 'empty') // return sss in firefox
//return Element.Prototype.empty in ie.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||