diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 09e92db23..03692b7ac 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -52,6 +52,7 @@ - Added the arrayRef() method to WebGUI::SQL::ResultSet, which is 12% faster than the array() method. - Added more tests to the test suite. + - fix: Search Feature Select Box Not Working 7.0.2 diff --git a/lib/WebGUI/Form/Asset.pm b/lib/WebGUI/Form/Asset.pm index a4fc93e39..3d72327af 100644 --- a/lib/WebGUI/Form/Asset.pm +++ b/lib/WebGUI/Form/Asset.pm @@ -112,7 +112,7 @@ sub toHtml { )->toHtml .WebGUI::Form::Button->new($self->session, value=>"...", - extras=>'onclick="window.open(\''.$url.'\',\'assetPicker\',\'toolbar=no, location=no, status=no, directories=no, width=400, height=400\');"' + extras=>'onclick="window.open(\''.$url.'\',\'assetPicker\',\'scrollbars=yes, toolbar=no, location=no, status=no, directories=no, width=400, height=400\');"' )->toHtml; } diff --git a/lib/WebGUI/Form/User.pm b/lib/WebGUI/Form/User.pm index a6beace51..78bb593b3 100644 --- a/lib/WebGUI/Form/User.pm +++ b/lib/WebGUI/Form/User.pm @@ -114,7 +114,7 @@ sub toHtml { )->toHtml .($self->get('readOnly')?'':WebGUI::Form::Button->new($self->session, value=>"...", - extras=>'onclick="window.open(\''.$self->session->url->page("op=formUsers;formId=".$self->get('id')).'\',\'userPicker\',\'toolbar=no, location=no, status=no, directories=no, width=400, height=400\');"' + extras=>'onclick="window.open(\''.$self->session->url->page("op=formUsers;formId=".$self->get('id')).'\',\'userPicker\',\'toolbar=no, location=no, status=no, directories=no, width=400, height=400, scrollbars=yes\');"' )->toHtml).$manage; }