[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread Andy Matthews

I found it REALLY slow in IE7 using the bells and whistles demo. Clicking
one of the column headers to sort on took several seconds. The loading bar
was a very nice effect, but there's no reason it should have taken that
long, not with only  20 or 30 rows.

I'd work on speed increases before any more feature development.

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rey Bango
Sent: Sunday, November 11, 2007 10:19 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1


Guys, I would also like to have folks do cross browser testing on this in
order to help Matt truly iron out any issues. People with Safari 2.x
installed would be especially helpful.

Rey

matthew knight wrote:
 Hi All,
 
 I've just posted the latest version of Ingrid datagrid plugin.
 Incorporates a lot of feedback I've received over the last couple 
 weeks, including:
 
 - Row selection
 - Saving state (page number, column sort amp; direction, selected
 rows)
 - Exposed object model, added helper methods like 
 ingrid.getSelectedRows(), ingrid.getColumn(), etc
 - A couple bug fixes and some general code refactoring.  I confess I 
 added way too many comments.  I'll get to those later...
 
 http://www.reconstrukt.com/ingrid/
 
 Check it out and let me know your thoughts.  Please send bugs, I'm an 
 absolutely awful tester. :)
 
 Cheers,
 
 Matt
 
 




[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread matthew knight

Excellent, thanks Karl for that feedback - I'll make a note of it.

Anything else, let me know

Matt



On Nov 11, 11:57 pm, Karl Rudd [EMAIL PROTECTED] wrote:
 A quick initial test on Safari 2.0.4 comes up with a syntax error on
 line 124 of the main JS file, jquery.

 .css({float: 'left', display: 'block'})

 My guess is that it doesn't like float being there (probably one of
 those keywords that were never used in JavaScript but were still
 reserved). Put quotes around it, 'float', and it should work.

 It's not easy to test the plugin at the moment. It'd be great to have
 a Zip archive with some basic examples.

 Karl Rudd

 On Nov 12, 2007 3:18 PM, Rey Bango [EMAIL PROTECTED] wrote:



  Guys, I would also like to have folks do cross browser testing on this
  in order to help Matt truly iron out any issues. People with Safari 2.x
  installed would be especially helpful.

  Rey

  matthew knight wrote:
   Hi All,

   I've just posted the latest version of Ingrid datagrid plugin.
   Incorporates a lot of feedback I've received over the last couple
   weeks, including:

   - Row selection
   - Saving state (page number, column sort amp; direction, selected
   rows)
   - Exposed object model, added helper methods like
   ingrid.getSelectedRows(), ingrid.getColumn(), etc
   - A couple bug fixes and some general code refactoring.  I confess I
   added way too many comments.  I'll get to those later...

  http://www.reconstrukt.com/ingrid/

   Check it out and let me know your thoughts.  Please send bugs, I'm an
   absolutely awful tester. :)

   Cheers,

   Matt



[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread matthew knight

@Andy:

The latency isn't Ingrid itself: its the data coming back - the feed
is very slow to respond.

When tested with a local data store, response time is (almost)
instant.  She's quick.

Please have another look and confirm this when you get a chance (use a
tool like Fiddler, for example, and watch the request/response times.)

Cheers,
Matt





On Nov 12, 7:47 am, matthew knight [EMAIL PROTECTED] wrote:
 Excellent, thanks Karl for that feedback - I'll make a note of it.

 Anything else, let me know

 Matt

 On Nov 11, 11:57 pm, Karl Rudd [EMAIL PROTECTED] wrote:

  A quick initial test on Safari 2.0.4 comes up with a syntax error on
  line 124 of the main JS file, jquery.

  .css({float: 'left', display: 'block'})

  My guess is that it doesn't like float being there (probably one of
  those keywords that were never used in JavaScript but were still
  reserved). Put quotes around it, 'float', and it should work.

  It's not easy to test the plugin at the moment. It'd be great to have
  a Zip archive with some basic examples.

  Karl Rudd

  On Nov 12, 2007 3:18 PM, Rey Bango [EMAIL PROTECTED] wrote:

   Guys, I would also like to have folks do cross browser testing on this
   in order to help Matt truly iron out any issues. People with Safari 2.x
   installed would be especially helpful.

   Rey

   matthew knight wrote:
Hi All,

I've just posted the latest version of Ingrid datagrid plugin.
Incorporates a lot of feedback I've received over the last couple
weeks, including:

- Row selection
- Saving state (page number, column sort amp; direction, selected
rows)
- Exposed object model, added helper methods like
ingrid.getSelectedRows(), ingrid.getColumn(), etc
- A couple bug fixes and some general code refactoring.  I confess I
added way too many comments.  I'll get to those later...

   http://www.reconstrukt.com/ingrid/

Check it out and let me know your thoughts.  Please send bugs, I'm an
absolutely awful tester. :)

Cheers,

Matt



[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread Guy Fraser

Andy Matthews wrote:
 I found it REALLY slow in IE7 using the bells and whistles demo. Clicking
 one of the column headers to sort on took several seconds. The loading bar
 was a very nice effect, but there's no reason it should have taken that
 long, not with only  20 or 30 rows.

 I'd work on speed increases before any more feature development.

The sorting on that demo is done server side so it was prolly the ajax 
call that took several seconds if the server was under load. The reason 
that one was sorting server side, I assume, is that the table was paged 
so sorting affects which results appear on which page.


[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-11 Thread Rey Bango


Guys, I would also like to have folks do cross browser testing on this 
in order to help Matt truly iron out any issues. People with Safari 2.x 
installed would be especially helpful.


Rey

matthew knight wrote:

Hi All,

I've just posted the latest version of Ingrid datagrid plugin.
Incorporates a lot of feedback I've received over the last couple
weeks, including:

- Row selection
- Saving state (page number, column sort amp; direction, selected
rows)
- Exposed object model, added helper methods like
ingrid.getSelectedRows(), ingrid.getColumn(), etc
- A couple bug fixes and some general code refactoring.  I confess I
added way too many comments.  I'll get to those later...

http://www.reconstrukt.com/ingrid/

Check it out and let me know your thoughts.  Please send bugs, I'm an
absolutely awful tester. :)

Cheers,

Matt




[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-11 Thread Karl Rudd

A quick initial test on Safari 2.0.4 comes up with a syntax error on
line 124 of the main JS file, jquery.

.css({float: 'left', display: 'block'})

My guess is that it doesn't like float being there (probably one of
those keywords that were never used in JavaScript but were still
reserved). Put quotes around it, 'float', and it should work.

It's not easy to test the plugin at the moment. It'd be great to have
a Zip archive with some basic examples.

Karl Rudd

On Nov 12, 2007 3:18 PM, Rey Bango [EMAIL PROTECTED] wrote:

 Guys, I would also like to have folks do cross browser testing on this
 in order to help Matt truly iron out any issues. People with Safari 2.x
 installed would be especially helpful.

 Rey


 matthew knight wrote:
  Hi All,
 
  I've just posted the latest version of Ingrid datagrid plugin.
  Incorporates a lot of feedback I've received over the last couple
  weeks, including:
 
  - Row selection
  - Saving state (page number, column sort amp; direction, selected
  rows)
  - Exposed object model, added helper methods like
  ingrid.getSelectedRows(), ingrid.getColumn(), etc
  - A couple bug fixes and some general code refactoring.  I confess I
  added way too many comments.  I'll get to those later...
 
  http://www.reconstrukt.com/ingrid/
 
  Check it out and let me know your thoughts.  Please send bugs, I'm an
  absolutely awful tester. :)
 
  Cheers,
 
  Matt