How do you turn an element into an ms ajax object? -
How do you turn an element into an ms ajax object? -
i have element
$get(myid).children[0]
i want turn element ms ajax object but
$get($get(myid).children[0])
doesn't work.
$get finds element. if have element represents ajax control, utilize $find, takes id of command param, in:
$find("mycontrolclientid")
so you'd want do:
$find($get(myid).children[0].clientid)
if first kid ajax command ui element.
asp.net-ajax
Comments
Post a Comment