fully editable datagrid causing crash

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default fully editable datagrid causing crash

    i need to display up to possibly a few hundred rows from a database
    table in a datagrid that is fully editable.

    there need to be 5 editable numerical columns as textboxes and 2 non
    editable columns (strings) and a delete button for each row.

    after reading several tutorials on the web, i got something together.

    the only problem was that once i tried it for a substantial number of
    rows, say 60, the script would start hanging in internet explorer.
    in firefox, i actually got a dialog box stating that a script on the
    page was causing things to run slowly and i should terminate it!

    i must be just trying to load too much in one page? is there any way
    around this, or will i have to break up my table using paging?

    thanks in advance...

    fizzy Guest

  2. Similar Questions and Discussions

    1. Flash causing browsers to crash, HELP!!!!
      Each browser I have tried; IE 6, IE7, firefox 2.0, Netscape 8.1 all crash when i view flash sites. This happens on severl sites watching video or...
    2. Flach Player causing IE to crash
      Please help, I am not very computer literate. I recently purchased a game online called Magic Vines. When we try to open the game we get an error:...
    3. fully editable Datagrid..not bound to database..
      Hello ppl I read an article in this forum regarding constructing a datagrid not bound to a database. My question is on those line..though not...
    4. Fully editable datagrid
      Hi, I need to have a fully editable datagrid control for my webforms. I have managed to get the control so that I have one edit button at the...
    5. Fully multiple, editable dynamic datagrid.
      Hi, I've written previously, to no avail. Can someone please help, I am looking for a working code example, that allows one to create a datagrid...
  3. #2

    Default Re: fully editable datagrid causing crash

    You might try to disable viewstate of the datagrid. It can improve the
    performance. However, it also disables some functionality of the datagrid.



    HTH



    Elton Wang





    "fizzy" <janinedalton@gmail.com> wrote in message
    news:1119347427.108547.94910@f14g2000cwb.googlegro ups.com...
    > i need to display up to possibly a few hundred rows from a database
    > table in a datagrid that is fully editable.
    >
    > there need to be 5 editable numerical columns as textboxes and 2 non
    > editable columns (strings) and a delete button for each row.
    >
    > after reading several tutorials on the web, i got something together.
    >
    > the only problem was that once i tried it for a substantial number of
    > rows, say 60, the script would start hanging in internet explorer.
    > in firefox, i actually got a dialog box stating that a script on the
    > page was causing things to run slowly and i should terminate it!
    >
    > i must be just trying to load too much in one page? is there any way
    > around this, or will i have to break up my table using paging?
    >
    > thanks in advance...
    >

    Elton Wang Guest

  4. #3

    Default Re: fully editable datagrid causing crash

    thanks elton.
    i'll give it a go - i tend to get a bit confused about when i can
    disable viewstate and when it is best not to.
    i have disabled it in the past and it has actually slowed things down a
    lot!?
    what functionality is lost without viewstate?

    fizzy Guest

  5. #4

    Default Re: fully editable datagrid causing crash

    Some thimg like paging, sorting.

    "fizzy" <janinedalton@gmail.com> wrote in message
    news:1119357362.836286.286320@g44g2000cwa.googlegr oups.com...
    > thanks elton.
    > i'll give it a go - i tend to get a bit confused about when i can
    > disable viewstate and when it is best not to.
    > i have disabled it in the past and it has actually slowed things down a
    > lot!?
    > what functionality is lost without viewstate?
    >

    Elton Wang Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139