Opened 12 years ago
Closed 12 years ago
#9014 closed defect (wontfix)
Combobox widget doesn't work with Safari
Reported by: | demery | Owned by: | dante |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | DojoX Widgets | Version: | 0.4 |
Keywords: | combobox safari | Cc: | |
Blocked By: | Blocking: |
Description
No popup menu appears in Safari (any version inc 4.) using the combobox widget. Infact the Suburb field does not display at all. Below is the code for this...'
--- <td id="label">Suburb:</td>
<td>
<input type="hidden" name="privateAddressSuburbName" value="WOONONA" id="privateAddressSuburbName"> <select dojoType="ComboBox?" value="###" dataUrl="./data/suburb.jsp?search=%{searchString}" style="width:250px;" widgetId="privateAddressComboBox" mode="remote" name="privateAddressSuburb" id="privateAddressSuburb" maxListLength="15"> </select> <script>
function privateAddressSelected() {
var comboBox = dojo.widget.byId('privateAddressComboBox'); var value = comboBox.comboBoxSelectionValue.value; var temp = new Array(); temp = value.split('#');
comboBox.setValue( temp[0] ); document.getElementById('privateAddressSuburbName').value = temp[0]; document.getElementById('privateAddressState').value = temp[1]; document.getElementById('privateAddressPostCode').value = temp[2];
}
function privateAddressInit() {
var comboBox = dojo.widget.byId('privateAddressComboBox'); comboBox.setValue(document.getElementById('privateAddressSuburbName').value); dojo.event.connect(comboBox, 'selectOption', 'privateAddressSelected');
}
addEvent(window, "load", privateAddressInit);
</script>
</td>
Change History (1)
comment:1 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Version: | 1.3.0rc2 → 0.4 |
This code is from 0.4?
Sorry, we aren't supporting 0.4 anymore. If you have a test case against 1.3 that isn't working please attach it using the attach file button.