[mochikit] Re: How to debug a Maximum call stack size exceeded

2006-07-05 Thread Giulio Cesare Solaroli
Hi Bob, I was hoping that some obscure parameter in the about:config page could do the trick. Anyway, I will try do dig this with logging. Thanks. Giulio Cesare On 7/5/06, Bob Ippolito [EMAIL PROTECTED] wrote: You definitely could if you recompiled Firefox, but the best way to track this

[mochikit] Re: How to debug a Maximum call stack size exceeded

2006-07-05 Thread Giulio Cesare Solaroli
Hi Beau, thank for your suggestion, but I have already changed that parameter, but for other reason. The scope of that parameter is to avoid any script to block the whole browser (due to excessive resource usage, and thus extended execution time); my current problem instead is in stack depth,

[mochikit] simple test

2006-07-05 Thread Yaakov Nemoy
Hi List, so i'm doing a HelloWorld++ program just to make sure I have everything working, and this is my code: html head meta http-equiv=Content-Type content=text/html; charset=utf-8 / titleInsert title here/title /head body script language=javascript src=js/MochiKit/MochiKit.js/script script

[mochikit] Input Mask

2006-07-05 Thread Jorge Godoy
Hi! Is there some easy way to implement an input mask with MochiKit or is there some other library around that plays nice with MochiKit and adds this functionality? Restricting what chars may be input would be nice, but I'm more concerned with formatting the input field. Thanks for your

[mochikit] Re: POST requests and XMLHttpRequest

2006-07-05 Thread Yaakov Nemoy
after reading that, i think the argument is just silly. at least 90% of the forms i'm working on are going to just use querystrings to send their data, and basically do something very similar just setting a form method to 'post' in html. I'm sure someone wants to do something fancier, but the

[mochikit] Re: Back, Forward best practice

2006-07-05 Thread Beau Hartshorne
On 5-Jul-06, at 2:37 AM, elio wrote: I would like start to add the management of back, forward keys after looking few ways, (may be in the next week/s). Is there any intenction to make a Mochikit module or to follow a common way for all people that made Mochikit choice? Signal will

[mochikit] Re: Input Mask

2006-07-05 Thread Beau Hartshorne
On 5-Jul-06, at 3:48 AM, Jorge Godoy wrote: Is there some easy way to implement an input mask with MochiKit or is there some other library around that plays nice with MochiKit and adds this functionality? Restricting what chars may be input would be nice, but I'm more concerned with

[mochikit] Readonly textbox not readonly in IE

2006-07-05 Thread Jason Bunting
I have the following: var textbox = INPUT({type:text, id:MyTextboxId, autocomplete:off, readonly:readonly}); In FF, I get exactly what I expect, but in IE 6, the textbox is not readonly. Anyone happen to know why? If I call toHTML(textbox) immediately afterwards, the results look

[mochikit] Re: Readonly textbox not readonly in IE

2006-07-05 Thread Bob Ippolito
On Jul 5, 2006, at 11:19 AM, Jason Bunting wrote: var textbox = INPUT({type:text, id:MyTextboxId,autocomplete:off, readonly:readonly}); In FF, I get exactly what I expect, but in IE 6, the textbox is not readonly. Anyone happen to know why? If I call toHTML(textbox) immediately

[mochikit] Re: Readonly textbox not readonly in IE

2006-07-05 Thread Jason Bunting
On Jul 5, 2006, Bob Ippolito wrote: On Jul 5, 2006, at 11:19 AM, Jason Bunting wrote: var textbox = INPUT({type:text, id:MyTextboxId,autocomplete:off, readonly:readonly}); In FF, I get exactly what I expect, but in IE 6, the textbox is not readonly. Anyone happen to know why? If

[mochikit] Re: Readonly textbox not readonly in IE

2006-07-05 Thread Jason Bunting
On Jul 5, 2006, Bob Ippolito wrote: On Jul 5, 2006, at 11:19 AM, Jason Bunting wrote: var textbox = INPUT({type:text, id:MyTextboxId,autocomplete:off, readonly:readonly}); In FF, I get exactly what I expect, but in IE 6, the textbox is not readonly. Anyone happen to

[mochikit] Re: Readonly textbox not readonly in IE

2006-07-05 Thread Bob Ippolito
On Jul 5, 2006, at 11:34 AM, Jason Bunting wrote: On Jul 5, 2006, Bob Ippolito wrote: On Jul 5, 2006, at 11:19 AM, Jason Bunting wrote: var textbox = INPUT({type:text, id:MyTextboxId,autocomplete:off, readonly:readonly}); In FF, I get exactly what I expect, but in IE 6, the textbox is

[mochikit] Re: Readonly textbox not readonly in IE

2006-07-05 Thread Bob Ippolito
On Jul 5, 2006, at 11:42 AM, Jason Bunting wrote: On Jul 5, 2006, Bob Ippolito wrote: On Jul 5, 2006, at 11:19 AM, Jason Bunting wrote: var textbox = INPUT({type:text, id:MyTextboxId,autocomplete:off, readonly:readonly}); In FF, I get exactly what I expect, but in IE

[mochikit] Re: Readonly textbox not readonly in IE

2006-07-05 Thread Jason Bunting
On Jul 5, 2006, Bob Ippolito wrote: On Jul 5, 2006, at 11:42 AM, Jason Bunting wrote: On Jul 5, 2006, Bob Ippolito wrote: On Jul 5, 2006, at 11:19 AM, Jason Bunting wrote: var textbox = INPUT({type:text, id:MyTextboxId,autocomplete:off, readonly:readonly}); In FF, I

[mochikit] Does anyone have mochikit tooltip code and willing to share?

2006-07-05 Thread m.f
Hey everyone: I know that mochikit isn't huge into widgets of the tooltip sort, but if anyone has such code already tried and tested and is willing to share - I thought I'd reach out to see. I like this library a lot so far and so don't mind trying it myself if the answer is negative. Thanks for

[mochikit] Re: Back, Forward best practice

2006-07-05 Thread Kevin Damm
whoops, accidentally replied to the last sender and not the whole list... On 7/5/06, Kevin Damm [EMAIL PROTECTED] wrote: One approach I've found some success with (but haven't tested a great deal) is to load one page that checks a session variable or cookie value and if it isn't found loads a

[mochikit] isArrayLike(), repr() bug

2006-07-05 Thread Tom W.M.
I seem to have found a bug in isArrayLike(), and, by association, repr(). The issue deals with DOM text nodes: repr(document.createTextNode (text))[undefined, undefined, undefined, undefined] isArrayLike(document.createTextNode(text))truePresumably this is because text nodes have a length

[mochikit] Re: isArrayLike(), repr() bug

2006-07-05 Thread Bob Ippolito
On Jul 5, 2006, at 4:34 PM, Tom W.M. wrote:I seem to have found a bug in isArrayLike(), and, by association, repr().  The issue deals with DOM text nodes: repr(document.createTextNode ("text"))"[undefined, undefined, undefined, undefined]"

[mochikit] Re: Does anyone have mochikit tooltip code and willing to share?

2006-07-05 Thread Alex Ross
I have some tooltip code in operation here: http://pafg.arh.noaa.gov/. The code is here: http://pafg.arh.noaa.gov/tooltips.js. I hope this helps. - Alex --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit