Top "Data-binding" questions

A general technique that binds two data/information sources together and maintains them in sync.

Binding a list in @RequestParam

I'm sending some parameters from a form in this way: myparam[0] : 'myValue1' myparam[1] : 'myValue2' myparam[2] : 'myValue3' otherParam : …

java spring data-binding collections spring-mvc
WPF: simple TextBox data binding

I have this class: public partial class Window1 : Window { public String Name2; public Window1() { InitializeComponent(); Name2 = new String('a', 5); myGrid.…

wpf data-binding textbox
WPF checkbox binding

While it is trivial to store a checkbox's checked state in a variable using the checkbox's Click event, how would …

c# wpf xaml data-binding checkbox
How to bind an enum to a combobox control in WPF?

I am trying to find a simple example where the enums are shown as is. All examples I have seen …

c# .net wpf xaml data-binding
How to format number of decimal places in wpf using style/template?

I am writing a WPF program and I am trying to figure out a way to format data in a …

wpf xaml data-binding string-formatting
How to bind multiple values to a single WPF TextBlock?

I'm currently using the TextBlock below to bind the value of a property named Name: <TextBlock Text="{Binding Name}" /&…

wpf data-binding binding textblock multibinding
How to format DateTime columns in DataGridView?

I'm using a DataGridView with object data binding to display information about logging entities in a system, retrieved via SOAP …

c# winforms data-binding datetime datagridview
AngularJS : ng-model binding not updating when changed with jQuery

This is my HTML: <input id="selectedDueDate" type="text" ng-model="selectedDate" /> When I type into the box, the …

javascript jquery angularjs data-binding angular-ngmodel
Use StringFormat to add a string to a WPF XAML binding

I have a WPF 4 application that contains a TextBlock which has a one-way binding to an integer value (in this …

c# wpf xaml data-binding string-formatting
WPF Databinding: How do I access the "parent" data context?

I have a list (see below) contained in a window. The window's DataContext has two properties, Items and AllowItemCommand. How …

wpf data-binding datacontext