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
1
vote
2 answers

angular2 two way binding for radio button

I have created a array like this this.list= [{ id: 1, value: 'One', checked: true }, { id: 2, value: 'Two' }]; and i tried to do Two way binding like this
Kokulan
  • 1,316
  • 3
  • 19
  • 35
1
vote
2 answers

VueJS Component Input Sync

I want to create components which have input which two-way bind to the local scope of the component. Without a component, I would create a new Vue instance and then set my data to what I need. Then using v-model, bind an input to that data and it…
Ozzy
  • 10,285
  • 26
  • 94
  • 138
1
vote
1 answer

two way streaming of video using webrtc

I want to stream video from two PCs and see both the videos on browser. With the following code I am getting both the videos on one PC but not on the other one that means one pc is streaming video to the remote one but the other one is not streaming…
Satya Narayana
  • 454
  • 6
  • 20
1
vote
4 answers

Simplify/Neatify this two-way loop?

I've got my wires crossed somewhere (or I had not enough sleep). I need a two-way loop, and my current code is just plain ugly. Problem: I am running along a linear datastructre using an index. I have an starting index, lets say 120. I want to run…
B3ret
  • 597
  • 5
  • 19
1
vote
1 answer

Two-way Binders in Rivet.js

I have created a binder in rivets.js which binds to multiple attributes of an element from the given model.As I want a single binder for a my model object in JavaScript. //Model var login = { test1 : {text:"myData1",color:"myColor1"}, …
damitj07
  • 2,689
  • 1
  • 21
  • 40
1
vote
0 answers

PERMANOVA contrasts by combination of levels

I started to create a script for a PERMANOVA contrasts by combination of levels using adonis function, but doesn't seem to be working a combination of levels matrix with adonis object created, my code…
Leprechault
  • 1,531
  • 12
  • 28
1
vote
0 answers

AngularJS: Get the names of all binding within a certain element

Is there a way to get the name of an two-way-binding?
{{abc}} {{def}}
Within the first my-directive element I…
Christian A
  • 377
  • 2
  • 11
1
vote
0 answers

tomcat 8 ssl require client authentication does not prevent access

My goal is to increase my test server security by requiring the server to demand a client certificate. Tomcat server.xml (conf/server.xml) contains:
1
vote
1 answer

How to make additional labels in barchart in Stata

I am new to Stata and I will be grateful if someone can help me figuring out how to add additional labels in my bar chart. I have frequencies for 5 categories (let's say Apple, Orange, Banana, Grape, Lemon) and would like to make a bar chart…
ashkan
  • 113
  • 2
  • 8
1
vote
3 answers

Tomcat Outgoing SSL

I have an application hosted on Tomcat that needs to reach out and make an HTTPS call to a service hosted through an IBM DataPower appliance. I am seeing the following in the logs: http-bio-8080-exec-1, READ: TLSv1 Alert, length =…
Perry Hoekstra
  • 2,687
  • 3
  • 33
  • 52
1
vote
2 answers

Can I use ANTLR for both two-way parsing/generating?

I need to both parse incoming messages and generate outgoing messages in EDIFACT format (basically a structured delimited format). I would like to have a Java model that will be generated by parsing a message. Then I would like to use the same…
Mike Q
  • 22,839
  • 20
  • 87
  • 129
1
vote
1 answer

Not valid destination EPR - WSO2 Message Processor for Two Way Guaranteed Delivery

I'm trying to implement WS load regulation (throttling) trough WSO2 Message Processor feature, the basic idea is that requests from client and reponses from backend are enqueued in two different message stores in WSO2. Two message processors take a…
1
vote
1 answer

ItemsControl with databound ItemsSource and two-way binding of elements (replacable items)

I have an ObservableCollection of objects (e.g. Persons with First/Last Name) which I would like to display in an ItemsControl. Each Item is displayed in a custom "editor" control, which allows editing of the object's properties. This part is…
user1211286
  • 681
  • 5
  • 17
1
vote
1 answer

AngularJS use two way data binding to display image in img element tag as source?

I am making a http request that returns a url to an image. I would like to display the image in my html page. Is there a way to do this? I idea of what I want to do is (this doesn't work but..) img src={{result.imageurl}}
Wes
  • 115
  • 1
  • 4
  • 8
1
vote
1 answer

How can I update the source from a custom control with dependency properties in silverlight?

I've created a custom control that extends the RichTextBox so that I can create a binding for the xaml property. It all works well as long as I just update the property from the viewmodel but when I try to edit in the richtextbox the property is not…
Jimmy.Bystrom
  • 297
  • 2
  • 4
  • 15