How can I put the apex select list out of the filter box in an interactive grid, please? - apex

I use an interactive grid, and I want to make the filter option more simple, the idea is to put the select list in the filter box next to the search bar so that it will be accessible to the user and visible, cause a simple user will not understand that he should select action the filter the choose a column to access to a specific select-list.
I tried to add my select list but I couldn't put it next to the search bar - if there is any solution please help me! Thanks in advance
This is the apex select list that I want to put next search bar in the toolbar

Related

How to create a form allowing multiple checkbox selection in Wix?

Does anyone know if there's a possibility to create a form where users can select multiple checkbox options instead of just one? I need users to be able to check multiple boxes. Any help for a newbie would be greatly appreciated.
I know I'm late, but if you're using Wix Forms, you can click on the form, click the plus sign, then click "Selection" in the left column, then click "Multi Checkbox Field" to get checkboxes where users can select more than one. Right now you're probably using Radio Buttons, which are often used as the default in most form templates but only allow for one box to be selected.

Global filter in a single sheet

Recently, I saw a tableau workbook with all filters in one dashboard. Simply it acts as a master filter for all the dashboards. How to create such a dashboard with global filter alone in one place without any graphs?
On any of the worksheets you have on the dashboard, click the Options button. In the dropdown menu, one option will say Filter. That opens a submenu of all possible filter dimensions and measures. Choose one and it will create the filter on the dashboard itself. And as #Silva said, make sure to set it to Apply to All Worksheets.
Click on the sheet in the dashboard
In the upper right of the layout container, there is an arrow, a funnel, and a "x".
Select the arrow.
Hover over Filters.
Select which filter should be added to the dashboard.
Video from Tableau available at http://kb.tableau.com/articles/howto/adding-filters-to-dashboards.

Make enter select existing or top match

We've implemented algolia for our search, but now we're trying to figure out how I can trigger "enter" to select the existing match (say you're done typing and it's a match), or the #1 selected choice that comes from the dropdown.
I haven't been able to find any good documentation on this. Does anybody know how to do this?
Example (here I want 0934 to be chosen when you click enter):
I think you're just looking for the autoselect parameter of autocomplete.js.
autoselect – If true, pressing ENTER in the search bar will automatically select the first suggestion.
I guess, based on your question, that you've already handled the selection event afterwards, but in case you didn't, or for others that would stumble upon this question, the next thing to do is to use the autocomplete:selected event to use this selection (e.g. redirect or change something on the page).

How to add a Button to a HeaderSpan in SmartGWT?

I want to add a Button to a HeaderSpan in SmartGWT. At start, the title of the button will be + (Plus), when the user clicks the button, all the rows of the table are shown and the title of the Button becomes - (Minus). There are around 25 columns in the ListGrid hence I want this behaviour.
I have tried using the HeaderSpan.setAttribute("button", new Button("+")) method but it did not work. Please help.
Any other approach to hide/unhide columns will be very much appreciated.
I've watched this link. As per the overview given in the screen, it does provide hide/show of particular column as well as particular headerspan. On right side of each column a dropdown like button is given which is visible on mouse over & serves your purpose. If you want to change it's icon, you can try the following code, where headerMenuButtonIcon is the path of your image:
grid.setHeaderMenuButtonIcon(headerMenuButtonIcon);
Hope this helps you.

Display Additional Form on Update - RadGrid

I'm using a RadGrid for changing record status's. Users have the ability to select a status from a dropdown and update that record with that status. Depending on the status chosen, when the user clicks update I want to popup an additional form so the user can fill out more data required for the update. I'm not sure the best way to go about implementing this. Any suggestions are appreciated.
One way is to use the RadWindow like a modal and pop it up to the user via client-side JavaScript. We use RadWindows in our applications and it works. Or, the RadWindow supports a Nested Grid or View that you can have as a record's child; so you can have the master record, click on the arrow on the left and expand the record to view a nested grid of data, or a custom view (via the NestedViewTemplate property). You can also have the form in a DIV, hide it, then show it via JavaScript too.
Those are two ways.
HTH.