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
2
votes
2 answers

Android two-way databinding for methods with parameters

Setter and getter methods of the model have one parameter, like this: public int getPrice(Object key) { } public void setPrice(Object key, int price) { } XML looks like…
2
votes
1 answer

How do I in ionic 2 pass data from a modal with a form on, to the home page?

Hi there can anyone help out. I am new to Ionic and Angular. I am trying to create a weather app in Ionic 2. I have created a Home page with a Click event calling an AddWeather() function. The function opens up a modal with a form attached. I am…
Tian Reagon
  • 118
  • 2
  • 11
2
votes
2 answers

How do I configure WebServiceTemplate to send soap request to Server under HTTPS?

I have configured keystore and trustore for the application .I have tried to consume web Service using WebService template over HTTPS here is my configuration public GetCountryResponse find() throws MalformedURLException, GeneralSecurityException,…
briantaurostack7
  • 1,193
  • 2
  • 14
  • 36
2
votes
2 answers

How to bind variables of two classes in C#?

I have two similar classes in C# public class Property { public string version; public string CCodeName { get; set; } public string CDoc { get; set; } public string ShortName { get; set; } } public class…
Rama
  • 1,019
  • 1
  • 15
  • 34
2
votes
1 answer

No resource type specified (at 'text' with value '@={bindingVariable.propertyName}')

I have get a strange error while using the data binding API: No resource type specified (at 'text' with value '@={bindingVariable.propertyName}'). Here is my xml:
rekire
  • 47,260
  • 30
  • 167
  • 264
2
votes
1 answer

Angular ngModelOptions - bind value to model only when button is clicked

I have an input field that is bound to a model object, which I don't want to bind until the user clicks a button. I went through ng-model-option and updateOn, but seems they trigger only on out of the box JS events like blur and focus.
nikjohn
  • 20,026
  • 14
  • 50
  • 86
2
votes
0 answers

Two-way binding doesn't work inside Ractive.components

I want to divide layout for some components and i used Ractive.components for it. All data are correct in component and used in it (like id and color). But variable for two-way binding don't used correct. I have one javascript behavior and three…
2
votes
2 answers

What exactly is Two-way databinding in WPF?

I'm learning WPF with MVVM and for a starter, I viewed Jason Dolinger's video on MVVM . In that he mentioned, that one of the advantage of using MVVM with WPF is two-way data binding. My question is what does he mean by two-way data binding? Is that…
lakshminb7
  • 1,602
  • 3
  • 25
  • 31
2
votes
1 answer

Is there a 2-way proportion comparison in R with usage like prop.test?

I am hoping to compare proportions from an experiment with a two-by-two factorial design. I use R for my stats. I know how to compare two proportions, or do an ANOVA-like test on many proportions, by using prop.test. For example, num_positive =…
jeremymchacon
  • 53
  • 1
  • 7
2
votes
1 answer

Two-way binding to static property in static class

Is that seriously NOT possible? I have solutions to bind one-way to properties in static classes and certainly i have solutions to bind two-way to static properties in non-static classes... but... I mean, the workaround is easy, i can just make my…
Martin Booka Weser
  • 3,192
  • 5
  • 28
  • 41
1
vote
1 answer

Can not figure out Two-factor anova without replication in R

I tried using manova() and can not seem to get the correct programming in. I tried it this way (in a different post): manova in R error message: length of 'dimnames' [1] not equal to array extent the text question has to do with pedal rotation and…
tora0515
  • 2,479
  • 12
  • 33
  • 40
1
vote
1 answer

manova in R error message: length of 'dimnames' [1] not equal to array extent

Trying to run manova on this data: Create a data.frame: acc <- data.frame(Degrees = c("5","8","10"), MPH10=c(0.35, 0.37, 0.32), MPH25=c(0.19, 0.28, 0.30), MPH40=c(0.14, 0.19, 0.29), MPH55=c(0.10, 0.19, 0.23)) check the data.frame: acc Degrees…
tora0515
  • 2,479
  • 12
  • 33
  • 40
1
vote
1 answer

R: Two-Way Repeated-Meausre ANOVA with counterbalanced data set from within-subject design

R: Two-Way Repeated-Measure Robust ANOVA| Different Conditions Dear community, I have a data frame, that looks something like this: participant_nr condition side value_1 value_2 01 B left 13 77 01 C left 20 93 01 A left 9 60 01 C right 23 100 01 A…
John
  • 19
  • 4
1
vote
1 answer

Two way databinding for combobox's selectedItem is not working via @ symbol in Adobe Flex 4

I need to enable two way data binding in combobox’s selectedItem and a valueobject’s one of the field. I am using @{variable name} construct. It works one way - when valueobject’s field is changed, combobox’s selectedItem is getting updated. But…
Bruso
  • 803
  • 3
  • 12
  • 25
1
vote
2 answers

One-Way ANOVA data from Two-Way ANOVA in R

I ran a two-way ANOVA analysis and if I'm not mistaken, the return also gives you p values for a one way analysis for each separate parameter in addition to the interaction. Why is it that when I do a separate one-way analysis on that same…
John
  • 11
  • 1
1 2
3
10 11