Check all the controls loaded

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • baburk
    New Member
    • Oct 2006
    • 111

    Check all the controls loaded

    Hi,

    anybody tell me.

    How to find particular control loaded completely.
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    What controls? If you want to execute some code when the page has loaded, use the onload event.

    Comment

    • baburk
      New Member
      • Oct 2006
      • 111

      #3
      Originally posted by acoder
      What controls? If you want to execute some code when the page has loaded, use the onload event.
      I want to check controls like textbox, button , gridview and etc...

      Comment

      • gits
        Recognized Expert Moderator Expert
        • May 2007
        • 5390

        #4
        and what do you mean with completly loaded? as acoder said, you may use the document's onload-event to be sure that the dom-nodes are ready to use ... when you mean some data-loading that is done by ajax-calls you just can rely on the callback that is executed when the response is ready (assuming that the calls are async) ...

        kind regards

        Comment

        Working...