Hi;
Thanks, but that is not correct.
If I need to set the background colour, or border style differently, then I need to set the outer span wrapper's attributes (class="textbox"), not the inner input element's attributes.
I am able to 'hack' the styling to get the desired effect:
input[readonly].easyui-textbox + span.textbox {
background-color: #EEEEEE;
}
input[readonly].easyui-textbox + span.textbox > input.textbox-text {
background-color: inherit;
}