![]() |
Sergey Kornilov admin 2/10/2020 |
This can be done but will require extensive coding. You will need to load the initial list of options into a Javascript array. Then you need to implement field "change" event for those dropdowns. In that event you need to go through all dropdowns on the page and remove repeating options. |
A
|
abhijit2020 author 2/11/2020 |
This can be done but will require extensive coding. You will need to load the initial list of options into a Javascript array. Then you need to implement field "change" event for those dropdowns. In that event you need to go through all dropdowns on the page and remove repeating options.
|
A
|
acpan 2/11/2020 |
If i understand your question correctly, you want to: |
![]() |
Sergey Kornilov admin 2/11/2020 |
@ACP, |
A
|
abhijit2020 author 2/11/2020 |
If i understand your question correctly, you want to: Show the drop down list of a lookup table, excluding values already used in a grid during Inline Add. Here's what i did earlier using just the WHERE condition in the lookup Wizard, to filter off the used values on the grid. This is done using MySQL's GROUP_CONCAT to form a csv of the previously used values and use NOT FIND_IN_LIST to form the condition filter. Refer to the tip here show a drop down list excluding used values in a grid during add and edit ACP
|