362 questions
0 votes
1 answer
65 views
Hibernate CascadeType Issue: Updates not Cascading to Child Entity
I'm encountering an issue with Hibernate when trying to update a parent entity that has a one-to-one relationship with a child entity. Specifically, I've configured CascadeType.ALL for the ...
0 votes
1 answer
144 views
Delay in CascadingParameter to child component
I have utilised cascading paramteres to pass data between a child and parent component. When I select a user from my dropdown list the child component does not recieve the new filter until (oddly ...
0 votes
0 answers
151 views
Why are my cascading parameters interfering with one another?
I select two different numbers from the drop-down lists (containing only numbers) and these are passed to the component via cascading parameters. On this component is displays the values that were ...
0 votes
1 answer
53 views
PHP cascading select & datetimepicker not working on dynamic data loaded in modal via ajax
Due to performance issues (because my data loads around 2k data), I was forced to load user information from another page to a modal via ajax. This is the tutorial that I have followed. From the ...
-2 votes
1 answer
45 views
PHP array_filtered acces object [duplicate]
I'm trying to filter array from DB and I've got this postman response: { "1": { "id": "3", "key": "emails_html_body_start", "value&...
3 votes
1 answer
2k views
JPA: Cascading OneToOne : which side should be the cascading attribute?
So far my understand was that cascading only makes sense from the parent to the child. Now I'm wondering: does this also applies to OneToOne relationships? I'm asking because I found in our code many (...
2 votes
1 answer
1k views
Blazor async cascading value always null
Let's say I have the following code in MainLayout.razor <CascadingValue Value="@(async () => await someclass.GetValueAsnyc())" Name="asyncValue"> <article class="...
-3 votes
1 answer
543 views
Cascading dropdown list in HTML
Ok I edited the question with below update. I tried with below script but it seems not working. Please someone can show me what is wrong with below code. <script> var myselect = document....
0 votes
0 answers
164 views
How to create ALL or SINGLE select parameters in BIRT?
I am having 4 Report parameters and these are linked with the 4 datasets individually. All 4 parameters are hierarchically linked. For eg: Country-->State-->City-->Town. I need to select a ...
0 votes
1 answer
865 views
cascading dropdown using data in the same table in dataverse for model driven app
In Dataverse, I have a school table with the following columns: School Teacher Grade School1 Teacher1 4 School1 Teacher2 5 School2 Teacher3 4 School2 Teacher4 ...
1 vote
0 answers
118 views
asp.net MVC cascading dropdownlist returns undefined using ajax
Im trying to make a cascading dropdown list for Classes and Subjects, when I select a Class from the dropdown list the subject Dropdown shows subjects that are in the responding Class. But the subject ...
0 votes
1 answer
37 views
Why my line is coming forward i need this to go behind
I am trying to make a timeline project where i want that this line come behind by button which i made using css. I want that this line comes behind the button so that it look nice but it isn't need ...
0 votes
0 answers
112 views
OpenCV Haar Cascade Validation Set Problem
I created my own Haar Cascade Classifier using OpenCV. It works well, but I simply do not understand one element. I used opencv_traincascade application to create cascade. In https://www.face-rec.org/...
1 vote
0 answers
13 views
How to change background color of nth-last-child(2) when :last-child is style is color: yellow [duplicate]
I need when last child's color is yellow need to add :nth-last-child(2) as RED background color without JavaScript td, th { border: 1px solid #dddddd; text-align: left; padding: 8px; } tr th[...
1 vote
0 answers
31 views
Where is the "cascading" objects defined in PyCascading
Many of the Python source code files for the amazing PyCascading package have references to cascading.someobject in their header. E.g. from cascading.tuple import Fields, Tuple, TupleEntry from ...