Any DataGrid Gurus out there?

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

  1. #1

    Default Any DataGrid Gurus out there?

    Hi

    How can I force a DataGrid into Edit Mode from Page_Load?
    How can I call the ItemCommand from Page_Load?
    Can I have a hidden CommandButton and call it's click event
    programmatically?

    Please help - very urgent.



    wdewebserver Guest

  2. Similar Questions and Discussions

    1. Need SQL Query Help from Gurus
      I have a table that stores ratings information (column called PPMSBRTotal) for vendors on a monthly basis. The ratings data is stored along with the...
    2. To all Gurus: How can I edit/update a DataGrid in a DataGrid (nested DataGrid)? Possible?
      Hello, I am searching the whole Internet for a good example how to edit/update a DataGrid in a DataGrid (nested DataGrid). I know how to...
    3. Hey layers gurus-need an eye here
      This is my first "real" attempt at using layers. www.billraydrums.com/7_19_03/new.htm Please take a look-see and give me some hints as to how...
    4. Any Javascript gurus out there?
      Hello, I'm not a javascript guru, and am having a few problems changing the font color between different items in a dropdown menu created in...
    5. Kudos to the gurus
      Simply wanted to say thanks in general to all the experienced people that post to this newsgroup. I am constantly amazed at the responsiveness of...
  3. #2

    Default Re: Any DataGrid Gurus out there?

    the event handlers are just functions, so you can call them like
    page_load
    dg1_itemdatabound(null,null)

    if you intend to use the parameters to the function, you will have to
    manually create the sender and event arguments and fill them with
    appropriate data. Why do you need this functionality?

    --
    Regards,
    Alvin Bruney
    [ASP.NET MVP [url]http://mvp.support.microsoft.com/default.aspx][/url]
    Got tidbits? Get it here... [url]http://tinyurl.com/27cok[/url]
    "wdewebserver" <walterd@ananzi.co.za> wrote in message
    news:Ov9VWGQgEHA.3948@TK2MSFTNGP11.phx.gbl...
    > Hi
    >
    > How can I force a DataGrid into Edit Mode from Page_Load?
    > How can I call the ItemCommand from Page_Load?
    > Can I have a hidden CommandButton and call it's click event
    > programmatically?
    >
    > Please help - very urgent.
    >
    >
    >

    Alvin Bruney [MVP] 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