How do i combine bulk-actions with actions on a list. - admin-on-rest

The latest beta has support for bulk actions, I can't understand how to combine them with none bulk, if i add actions prop the bulk action menu does not appear when i select grid rows.
Another question related to bulk actions, is it possible to have bulk actions for a datagrid populated using a reference many field?

Related

Open API Spec3 - How to display a drop-down or a way to select an input from multiple inputs?

I am working on Spring Boot & Open API Spec3 using springdoc-openapi-ui. How to display a drop-down or a way to select an input from multiple inputs? I went through https://github.com/swagger-api/swagger-ui/issues/685, I need something like this.
My organization allows only 8 query parameters, we're using pagination, so page, size, sort (by multiple fields) and order (multiple fields). This all consumes 4 query Parameters and left only 4 to used, since for few of the endpoints, consumer wants to use many parameters as optional to fetch the data.
If somehow in api-doc if I can create option to select multiple things like Pagination and Sorting into one then it will be great.
The same question have been opened up here: https://github.com/springdoc/springdoc-openapi/issues/535
Springdoc team has to constantly looking and resolving the issues. Thanks!
Your question is not related to springdoc.
The swagger documentation explains clearly, how to display multiple choices:
https://swagger.io/docs/specification/data-models/enums/

Adding multiple entities to one main form

I am in the process of modifying forms to account for V9 of Dynamics which is being rolled out currently.
Our environment is using Dialogs but these are being deprecated with V9 which means we have to prepare the forms to be used instead of these Dialogs.
Due to how fragmented our solution is the data is all over the place in different entities and can all be written too at different times.
Is it possible to have multiple entities/records on the same form which are all editable? This way I can run rules to hide and show as people edit specific fields.
From what I can identify, there is no "true" way to achieve this. However, if there are entities which are linked via a relationship within the solution, it is possible to add the "Party List" type field to the form and this will act as the link between the two entities. When you go to search for an existing record within the related entity, there is a new button which allows you too create a new record of that entity which directly associated with the form you were working on initially.
We do have editable subgrids. Add the subgrids of related entities & allow users to edit the related records in main record form at one shot.

show the sub grid with filtering two or three fields that all are look up in crm 365

I have two custom entity.
I want to show the sub grid with filtering two or three fields that all are look up.
In SQL way I want to
select * from table where field 1 = *** or field 2=*** or filed 3 =***
But in CRM it's not possible you can select only one field.
I dont know how to add fetch xml and also i dont know, Should I create js on load of form or export solution add filter to fetchxml then import it to crm?
Have you tried creating a Custom View where you can set up this filter criteria and use this view on the Subgrid
Here you have the details: https://crmbook.powerobjects.com/system-administration/customization/customizing-views/

multiple filters in an APEX 3.2 report

I want to have multiple filters in an APEX report but it seems it's not possible? I'm new to apex so it's quite possible too I just don't know how to do it.
I've searched around the net and looked at the various settings in the APEX page but I can't find what I'm looking for.
Like in this screenshot: http://i.imgur.com/3j3wOIG.png
I can only have 1 filter available. I want to filter on other fields too including fields which are not in the report columns.
Is this possible? If yes, can you please teach me? thanks
Columns that aren't displayed in your report are not rendered on your page, therefore you can not filter on them. If you want do so anyway, you need to create a filter based on page items, which you can append to your report query in the where clause.
e.g. create a page item P1_FILTER1 and reference it in your query as: "...where my_column = nvl(:P1_FILTER1,my_column)".
To ensure data consistency you can best create your page item as a select list.

Grails - Passing multiple AJAX parameters through a single remoteFunction?

I am trying to create a dynamic advanced search with
Search field for name of person
Checkbox to enable inactive person records
Dropdown for team
So when I select a company, I want to update my template results with all people in that team. If I select a team and click checkbox for inactive person records, I want to see all people who have been with that team in the past.
So current I have something like this:
<g:checkBox name="showInactives" value="${true}" onchange="${remoteFunction(action:'updateResults', update:'searchResultsDiv', params:__VALUE OF EACH AJAX COMPONENT___)}" />
So when I select the checkbox, I am passing the value for the checkbox, the current results in the search, and which team was selected (if one).
Is this possible? Or is there an easier way with Grails and the AJAX components?
Yes, you can do that. Just pass in a map of the params you want:
params: [key1:value1, key2:value2, ....]

Resources