I Have been working on a problem for the last couple of days with a few DevExpress ASPxComboBoxes. When the page loads, there are 5 boxes. the first one has selectable values, and the rest should be "inactive". When the active box changes value, it should fire the next combobox, get it to load data and deactivate the previous box.
We are using a mix of JavaScript and Server Site ASP.NET. The problem we are having are:
- when we mark a control as Client Disabled (from server side), we cant get data out of it from the server side...
- when we mark the control as Disabled (from server side) we cant get data out of it from either side...
- when we mark the control as Disabled using Java Script, we get the same problem as Client Disabled from Server Side...
- when we mark the control as ReadOnly, we cant "un-Readonly" it from client side!
we want to be able to mark child controls as inactive (readonly or disabled) and then re-activate them as we walk up the stack... we also need to be able to clear back down the stack (which is currently working in JavaScript, but the controls are still "active"). Any ideas?