I have the following dropdown list component in my application.
<DropDownListComponent id="taskStateSelector"
ref={taskStateSelector}
readonly={activityStateDisabledStatus}
change={onStateChange}
fields={fields}
dataSource={activityCompletionStatus}
value={completionStatusId}
valueTemplate={selectedStateTemplate}
itemTemplate={stateTemplate}
popupWidth="95px"
delayUpdate={false}
width="130px"
/>
The readonly property as explained in the documentation should disable it, if its true.
However the same is not happening, even if "true" is passed to that property.