[mochikit] Re: DOM Manipulation in IE (Changes only visible after additional mouse-click)

2007-04-18 Thread Matthew Kwiecien
That's because IE only fires the onChange event after the onBlur event for checkboxes. I'd suggest using onClick instead. Afterall, if a user clicks the checkbox at all, it should change it's state. -matt --~--~-~--~~~---~--~~ You received this message because you

[mochikit] Re: Captuing Key Events

2007-04-15 Thread Matthew Kwiecien
characters other than the underscore. Am I correct in understanding MochiKit is capable of this, and is used for this reason, or am I mistaken, and I have misunderstood what MochiKit is for? Thanks! -- | Matthew Kwiecien • Webhosting | Design

[mochikit] Re: Captuing Key Events

2007-04-15 Thread Matthew Kwiecien
I suggest looking at these two references to get the hang of events: http://www.quirksmode.org/js/introevents.html http://www.quirksmode.org/js/events_compinfo.html You're going to test by key ranges basically. After the keypress event, you'll test event.keyCode against the different key codes.

[mochikit] Re: Captuing Key Events

2007-04-15 Thread Matthew Kwiecien
I've not worked much with key detection, but from what I've read, preventDefault *only* works with keypress, not keydown. I'm not seeing that error you mention when I try it on your page. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[mochikit] Re: fortifysoftware securityreport

2007-04-03 Thread Matthew Kwiecien
Valerio's (of mootools fame) response when asked to comment on that article: Comment? On this bullshit? [...] Security is made server-side, not client side. There is no such thing as security in javascript. Look, Bob's right. That fact of the matter is that Javascript can be changed in any way,

[mochikit] Re: Future of MochiKit

2007-02-28 Thread Matthew Kwiecien
If Dojo was at its current state two years ago I would've used it rather than writing my own library. Boy am I glad you chose to write your own. :) Don't get me wrong, Dojo is nice, but they seem to have the philosophy that REAL programmers don't document! If it was hard to write it should be

[mochikit] Re: Can it be more simple ?

2007-02-26 Thread Matthew Kwiecien
More simple how? So you don't need the split and piecing back together? If so, then how about: if (compare(americanDate($('exsupplier_date').value),americanDate($('arrival_date').value))!=1) return true; else return false; If you're looking for something different than this, you're gonna have to

[mochikit] Re: Trouble with draggable.js

2007-02-23 Thread Matthew Kwiecien
It looks like everything should work properly. Have you tried including this line on your page yet? script type='text/javascript' src='DragAndDrop.js'/script What errors do you get in the js console? --~--~-~--~~~---~--~~ You received this message because you are

[mochikit] Re: Trouble with draggable.js

2007-02-22 Thread Matthew Kwiecien
; } -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group, send email to mochikit

[mochikit] Re: loading individual libraries

2007-02-21 Thread Matthew Kwiecien
, or just need mochikit.dom. Thanks for help -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[mochikit] Re: problems centering a div using Coordinates and setElementPostion

2007-01-25 Thread Matthew Kwiecien
In addition to that, you have your dialog nested inside the one you are setting opacity on and opacity is an inherited attribute. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group,

[mochikit] Re: problems centering a div using Coordinates and setElementPostion

2007-01-25 Thread Matthew Kwiecien
have now something to go on! regards Sander Elias -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[mochikit] Re: Drop Zone with Mochikit?

2007-01-22 Thread Matthew Kwiecien
! I´m really looking forward to getting started! greetings -frank -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~-~--~~~---~--~~ You received this message because you

[mochikit] Re: once again -- Mochikit::Async, putJSON

2007-01-22 Thread Matthew Kwiecien
. greetings -frank -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group

[mochikit] Re: once again -- Mochikit::Async, putJSON

2007-01-22 Thread Matthew Kwiecien
Oops, forgot to reply to the group (silly google, not putting the group as the default reply-to): No problem, as I said, friendly message. Since I rarely visit the webpage, I didn't realize you had deleted it. :) Did you still see my reply to it? I wrote: Drag and Drop is added in 1.4 (currently

[mochikit] Re: once again -- Mochikit::Async, putJSON

2007-01-22 Thread Matthew Kwiecien
with a database back and forth - i´m using a php-script right now on the server-side to do this. But maybe i´ll get the clue when i keep on trying... so long -frank On 22 Jan., 15:49, Matthew Kwiecien [EMAIL PROTECTED] wrote: Oops, forgot to reply to the group (silly google, not putting the group

[mochikit] Re: Drag and drop table rows with handle

2007-01-12 Thread Matthew Kwiecien
on mochikit yet, if anyone can kindly help and point out what's missing in the picture :-) -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~-~--~~~---~--~~ You received

[mochikit] Re: Drag and drop table rows with handle

2007-01-12 Thread Matthew Kwiecien
of the toolkits had it working. Looking at the YUI example you linked, it seems, to me, a bit slow and clunky. Then again, I've never really liked YUI. On 1/12/07, Matthew Kwiecien [EMAIL PROTECTED] wrote: Sorry if this sounds a little jerk-ish, because I don't mean it that way: You have to actually

[mochikit] Re: Create a flash object

2006-12-21 Thread Matthew Kwiecien
ended up doing on a similar project. I've always just used SWFObject to take care of that sort of thing. http://blog.deconcept.com/swfobject/ -bob -- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com