Skip to content

Commit

Permalink
Added 'please select value' to CDD options when filtering on lists.
Browse files Browse the repository at this point in the history
Workaround for little gotcha in filter.js which was leaving the spinner
up if the watched element was reset to 'Please select'.
  • Loading branch information
cheesegrits committed Nov 10, 2015
1 parent e2135d1 commit 1385944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -98,3 +98,4 @@ custom.css
!software_license.txt
/ZendFramework-1.12.3
/mobiquo
/node_modules
Expand Up @@ -562,7 +562,7 @@ protected function _getOptionVals($data = array(), $repeatCounter = 0, $incWhere

if ($filterView == 'table')
{
array_unshift($this->optionVals[$sqlKey], JHTML::_('select.option', '', $this->filterSelectLabel()));
array_unshift($this->optionVals[$sqlKey], JHTML::_('select.option', $params->get('cascadingdropdown_noselectionvalue', ''), $this->filterSelectLabel()));
}
else
{
Expand Down

0 comments on commit 1385944

Please sign in to comment.