Custom Query (18300 matches)
Results (163 - 165 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#166 | fixed | [patch] HtmlComboBox - comboBoxValue not being populated. | ||
Description |
When the selectOption method is called in the HtmlComboBox? the following code is executed. this.comboBoxValue = tgt.getAttribute("resultName"); this.comboBoxSelectionValue = tgt.getAttribute("resultValue"); However comboBoxValue and comboBoxSelectionValue are inputs. I think the code should read: this.comboBoxValue.value = tgt.getAttribute("resultName"); this.comboBoxSelectionValue.value = tgt.getAttribute("resultValue"); |
|||
#167 | fixed | Build CSS files | ||
Description |
It'd be nice to be able to build One True CSS File, much like string interning is done, so that you can replace the need for widgets to pull in the CSS files in production (right now I do a lot of copy/paste). |
|||
#168 | fixed | Bugs in dojo.html.getDocument{Width,Height} [patch] | ||
Description |
When the code for determing document width/height was moved from Dialog from dojo.html.getDocument{Width,Height}, the tests that were made changed, resulting in 0 width height in internet explorer. Here's a patch that gets things working again; the logic is a combination of the older and newer versions:
I haven't done the research to comment on what browsers have which of these properties a) present b) width useful values, so I can't really comment whether this patch is the best possible way to do things, but it's definitely better than the current code. |