[mochikit] Different search result for different browser

2007-06-17 Thread tired

Hi,
When I try to search on JSON file with same search key in different
browser with sortable table, the result is different. IE6 shows only
those results (row) where search character(s) arrive at the very
beginning (like first letter(s) of sentence) of the  data. Why not
getting the result like FireFox (looks appropriate).

Thanks


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
MochiKit group.
To post to this group, send email to mochikit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~--~~~~--~~--~--~---



[mochikit] Re: Different search result for different browser

2007-06-17 Thread Bob Ippolito

On 6/17/07, tired [EMAIL PROTECTED] wrote:

 When I try to search on JSON file with same search key in different
 browser with sortable table, the result is different. IE6 shows only
 those results (row) where search character(s) arrive at the very
 beginning (like first letter(s) of sentence) of the  data. Why not
 getting the result like FireFox (looks appropriate).


You're probably going to need to show some code. Your description
doesn't really have enough information to determine why you're seeing
that.

-bob

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
MochiKit group.
To post to this group, send email to mochikit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~--~~~~--~~--~--~---



[mochikit] Re: MochiKit.Async, synchronousness, and testing

2007-06-17 Thread Leo Soto M.

On 6/11/07, GK [EMAIL PROTECTED] wrote:

 Your SimpleTest module accummulates a list of test results, then
 displays the result, right? And test_MochiKit-Async uses a combination
 of synchronous and asynchronous calls to add test results to this
 list.  Plus waitForExplicitFinish() and finish() to hold off
 completion until the Deferreds have fired.

Right.

 This does seem simpler than my first thought.  But this module has
 only one truly asynchronous callback that I can see:  so if there are
 several asynchronous calls, some mechanism is needed to hold off
 completion untill all are done.

Sorry if my reply came too late, but DeferredList can help here:

var allDeferreds = new DeferredList([d1, d2, ...]);
allDeferreds.addCallback(SimpleTest.finish);

-- 
Leo Soto M.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
MochiKit group.
To post to this group, send email to mochikit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~--~~~~--~~--~--~---