ATLAS / AJAX question

C

CK

Hi All,
Is there any way to disable controls when doing an atlas callback? We have a
webform with controls like drop downs that are in Atlas Update Panels. When
you make a selection in the drop down, it updates other control values on
the page. The problem is when a user makes a change, then the callback
starts, if the user like scrolls the drop down during the callback, the
values get all messed up and the controls are not properly updated. I need
to be able to disable controls in a row of a grid view until the callback
and settings occur. Does anyone know how to do this?

Thanks In Advance,
~CK
 
B

bruce barker \(sqlwork.com\)

in client script

var e = document.getElementById('panelid').getElementsByTagName('select');
for (var i =0; i < e.length; ++i) e.disabled = true;

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top