I have been trying to export a part of the issue list to XML. It seems that the selection has no effect: all issues are exported instead. Any idea of how it could be done?
The checkboxes are provided to select issues for bulk actions listed in the select box (drop-down) towards the end of the table. The button actions on the top of the table does not respect the checkbox selection. This is the expected behaviour.
Related
This is my example with treeviewCheckbox. Now this allow multiple checked. I want to check only one at a time.
sample
If there any suggestions please help me.
You can change the setChecked([...checked, ...updatedValues]); to setChecked([...updatedValues]);. But still, if you select a folder it will auto-select all the items beneath it.
If you want to be able to select a single folder, without its its children, then you can remove all your isParent relevant code and add the noCascade property to the tree.
If you read the supported option in the documentation you can find other customization as well.
I create drop-down list(Q1,Q2,Q3) to filter the charts and tables. If I don't select anything in the drop-down list, the charts and tables will automatically show everything(Q1,Q2,Q3) -- how can I change the default value charts and tables that are displaying to Q1's value only?
To be more specific, if I don't select anything in the drop-down list, the charts and tables will show Q1's results; if I select Q2 in the drop-down list, the charts and tables will show Q2's result.
enter image description here
Kindly look for default selection at the filter property panel, as circled in screenshot below.
For example, when I enter "US" as the default selection, the entire dashboard is filtered to US by default. However, the user can still look for other selections if they are interested on other available country.
Do note the data here is dummy data, not the real-world data.
If you're interested to check out the dashboard to see what's the expected output, here is the link
I am using material-table in a project. I am trying to understand how the table knows which rows are selected and any possible way to access and modify that data.
Here are some example implementations of the selection feature
I could find the answer myself on the material-table github repo.
It turns out that each rowData will have an object "tableData" attached to it, which will store parameters such as id, checked, etc,.
So if the checked parameter is set to true, that row is selected, else not.
I have a requirement, where there is a checkbox on UI when I select it the first time it gets selected when I click it again it is deselected.
So in logic, I am adding the selected parameter to a set, and if it is already present I remove it for deselecting the parameter.
But this approach is not working when I have to count how many I have total, it gives incorrect values.
I have to implement select multiple and deselect multiple in a web page. Can anyone help me with this
Do you have a wrapper? Have a select all/deselect all command link, that command link will call an action which will select/deselect all of the records, then just rerender the table..
We are having a cascading LOV -> Deaprtment, class(inputComboBoxWithLOV). Class LOV is filtered with selected value of Department. When I follow the below steps:
select a department
click on the down arrow to show filtered results, I see filtered classes with the selected department. Select a class and tab out.
clear the class field, again click on the down arrow to show filtered results.(P.S : Department field is not touched) But the class field is not showing filtered results. But when I clicked on More... to display the Search and select popup, I could see the filtered results.
Only the the combobox dropdown values were unfiltered.
On Debugging, found that the viewCriteria which was applied to filter using Department is missing. The entire Where clause is missing.
This is occurring after our latest migration to 12.1.3, earlier we were using jdeveloper 11g and never faced this issue.
Any pointers about this issue will be highly appreciated.
The LOV UI hints "Filter Combo Box Using" option was unchecked, when I checked it and tried I was able to see filtered results in the dropdown.
However I did not understand why it was not picking values from existing view criteria from the view object definition related to the LOV's view accessor and why should I explicitly check this option.
This sounds like a 12.1.3 ADF BUG. You should fill in a Service Request with Oracle about it.
If you don't have a SR account, I will be happy to fill one in your behalf, if you can provide a sample workspace running on HR schema where we can reproduce the problem.