如何在禁用模式下更改状态类型下拉列表的外观

时间:2015-09-08 05:20:34

标签: html css dropdownbox

enter image description here我们有两个下降。根据第一个下拉事件更改,第二个下拉值将被填充。

如何更改第二类型下拉列表的外观,使其在启用和禁用状态下都应该不同?

在两个下拉列表中它们看起来都已启用,但在我们选择国家/地区之前,状态未加载任何方式.. select CSS在IE中表现为例外,但在Chrome中则不行。它在Chrome中看起来已启用。

// *********** //

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

When I removed the Color inherit from boot strap It makes the difference.How to override the style sheet which effecs the color to the state dropdown in the customized CSS
<div class="item1" id="countries">
    <div class="selectbox">
        <select data-bind="options: Countries, 
        optionsText: $data, 
        optionsValue: $data, 
        value: SelectedCountry, 
        event: { change: $parent.CountryActionChanged }">
        </select>
    </div>
</div>
<div class="item2" id="states">
    <div class="selectbox">
        <select data-bind="options: States, 
        optionsText: 'Name', 
        optionsValue: 'Id',
        value: SelectedStateType, 
        event: { change: $parent.StateActionChanged },
        enable: $parent.IsStateType"
        >
        </select>
    </div>
</div>

0 个答案:

没有答案