|
16 | 16 | ************************************************************************ */ |
17 | 17 |
|
18 | 18 | qx.Class.define("osparc.dashboard.SearchBarFilterExtended", { |
19 | | - extend: osparc.filter.UIFilter, |
| 19 | + extend: qx.ui.core.Widget, |
20 | 20 |
|
21 | 21 | construct: function(sourceSearchBarFilter, resourceType) { |
22 | 22 | this.__sourceSearchBarFilter = sourceSearchBarFilter; |
@@ -178,21 +178,21 @@ qx.Class.define("osparc.dashboard.SearchBarFilterExtended", { |
178 | 178 | }, |
179 | 179 |
|
180 | 180 | __searchMyProjectsSelected: function() { |
181 | | - this.getChildControl("search-bar-filter").getChildControl("text-field").setPlaceholder(this.tr("Search My projects")); |
| 181 | + this.getChildControl("search-bar-filter").getChildControl("text-field").setPlaceholder(this.tr("Search in My projects")); |
182 | 182 |
|
183 | 183 | this.getChildControl("shared-with-button").setVisibility("visible"); |
184 | 184 | this.getChildControl("tags-button").setVisibility("visible"); |
185 | 185 | }, |
186 | 186 |
|
187 | 187 | __searchTemplatesSelected: function() { |
188 | | - this.getChildControl("search-bar-filter").getChildControl("text-field").setPlaceholder(this.tr("Search Templates")); |
| 188 | + this.getChildControl("search-bar-filter").getChildControl("text-field").setPlaceholder(this.tr("Search in Templates")); |
189 | 189 |
|
190 | 190 | this.getChildControl("shared-with-button").setVisibility("excluded"); |
191 | 191 | this.getChildControl("tags-button").setVisibility("visible"); |
192 | 192 | }, |
193 | 193 |
|
194 | 194 | __searchPublicProjectsSelected: function() { |
195 | | - this.getChildControl("search-bar-filter").getChildControl("text-field").setPlaceholder(this.tr("Search Public projects")); |
| 195 | + this.getChildControl("search-bar-filter").getChildControl("text-field").setPlaceholder(this.tr("Search in Public projects")); |
196 | 196 |
|
197 | 197 | this.getChildControl("shared-with-button").setVisibility("excluded"); |
198 | 198 | this.getChildControl("tags-button").setVisibility("visible"); |
|
0 commit comments