Questions tagged [two-way]

Refers to a procedure, a function, or a case where the data has two sides.

Refers to a procedure, a function, or a case where the data has two sides. Often these are referred to as input and output, and sometimes they are referred to as beginning and end. In some contexts, two-way might mean information that flows into two separate directions, or a simultaneous execution of two processes.

165 questions
0
votes
0 answers

Angular2 pass referenced parameters between components

I think this question isn't new for someone but I didn't find a simply solution. I have 2 components, a parent that defines an object 'x' with inside another object 'y' (x.y). It passes the object 'y' to the child
Fabrizio P
  • 241
  • 3
  • 13
0
votes
1 answer

Two-way binding a SwitchCell in a Xamarin Listview

In Xamarin, I'm trying to use a SwitchCell in a list view with two-way binding. ObservableCollection DATAC = new ObservableCollection(); ListView lvDecks = new ListView(); DataTemplate dtDecks = new…
user3693290
  • 75
  • 1
  • 7
0
votes
1 answer

Two-way binding and a Selector

Setup: There is a ComboBox that is bound to a ObservableCollection. There is a Car object in the UI. Its Color property is bound to the ComboBox's SelectedItem (the binding: The color list can…
Jefim
  • 3,017
  • 4
  • 32
  • 50
0
votes
1 answer

Is there any way to set "angular-bootstrap-colorpicker" color pointer to some color code value?

I have used many mention angular colorpicker instances on a single page. I have encountered an issue when we have a color selected in one picker and have another picker where there is no color selected. Below is the image of the picker with a…
0
votes
1 answer

Plotting individual responses for two-way repeated measures design with geom_path from ggplot2

I want to use ggplot and geom_path to plot individual responses measured in a completely balanced two-way repeated-measures experimental design. I am able to generate the plot I want for data coming from a similarly structured mixed-model design. My…
Jayden.Cameron
  • 499
  • 4
  • 17
0
votes
1 answer

Android ListView how to scroll vertically and horizontally ?

I want my Listview to scroll both vertically and Horizontally! I can able to scroll the listItem horizontally but I want my whole listview to move horizontally and vertically. Can anyone help me ? Thanks in advance.
0
votes
3 answers

Component binding not working : Angularjs

Hi I'm trying to create a component, it works fine in controller, however not binding values to view. My Component is as below app.component("bdObjects", { templateUrl: "app/templates/components/BusinessObjects.html", controller: ["$scope",…
Khilen Maniyar
  • 2,519
  • 7
  • 31
  • 35
0
votes
1 answer

How do you read two-way tables?

I want to know what is two-way tables in SQL? And how can i read these two-way tables
0
votes
0 answers

Multicollinearity in a two ways fixed effect regression

I have a df based on a national survey conducted every two years; the time period is 2010-14 and I filtered the df in order to have only person that appears al least two times. In this way I have a panel df but unbalanced. I run a regression to…
Laura R.
  • 99
  • 1
  • 10
0
votes
1 answer

Setup two way ssl for running webservice between wildfly and weblogic

I want to set up two way ssl(self-signed cert) to call a webservice endpoint from wildfly to weblogic. I've tested the weblogic setting, it works fine. Now, the problem is how should I configure the wildfly in order to build the connection with…
Tim
  • 1
0
votes
1 answer

vue2 how add and observe changes element in array

I can't change child by type something in the input; how to observe the input and make it affected the child . and Verify if there is a name for each child the js: $(function () { var person = { name: '', …
李永博
  • 3
  • 4
0
votes
1 answer

WPF two way binding not working on CheckBox and List

Even after reviewing a multitude of solution proposals I cannot get a simple two way binding in xaml to work. I have a Window, a dataContext and an App. Problem is that: a) while the App constructor runs, the Window (initialized and .Show-ed in the…
Woelund
  • 25
  • 5
0
votes
1 answer

Two-way binding inside AngularJS directive work with ng-click, but not work with window.onclick

Can anybody explain, why when I click on my element vm.random updated inside element, but when I click just on window vm.random not updates on view layer (but console.log print new value), although both events fire same function…
vologa
  • 37
  • 1
  • 5
0
votes
1 answer

Two way bindings trigger 10 digest() iteration reached

I have some problems with angular binding and I'm not very experienced with it. I will post all questions here as they are related. Here is some angularjs code snipped that triggers 10 digest() cycle reached. I found some similar posts and the cause…
Cosmin D
  • 639
  • 1
  • 11
  • 24
0
votes
1 answer

AngularJS two way binding variables to array items

To view my code follow this link I've created a directive which handles an array of items (it will always be two because it's a "from" and "to" date pair). I want to make the array items accessible as separate values for later use so I refer to the…
Snsa90
  • 151
  • 9