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

learn more… | top users | synonyms (2)

39
votes
0answers
564 views

Live Binding with Automatic updates in XE3 (no need to call Notify() as in XE2)

I am currently using Delphi XE2, and heard about their new Live Binding with Automatic updates in XE3 (no need to call Notify() as in XE2). in C# or in Delphi XE2 we have to implement ...
5
votes
0answers
396 views

Why ASP.NET MVC default Model Binder is slow? It's taking a long time to do its work

In a current project the client asked for the possibility of answering a questionnaire in two ways: using a Wizard (one question at a time) and Listing (all questions at once) in a single form. Both ...
4
votes
0answers
120 views

List<T> versus pivoting in the database for databinding to grid

Introduction and tl;dr In my example i have teachers, students and courses. I would like to have an overview which course is teached by whom in which rooms and all the students in this course. You ...
4
votes
0answers
659 views

Does databinding to dynamics and ExpandoObjects work in .NET

For the life of me I I don't seem to be able to get Databinding to Dynamics or ExpandoObjects working. I have tried this in WinForms and in WebForms and get different results in each: In ASP.NET: ...
3
votes
0answers
29 views

PHP - db2_bind_param Describe Param Failed

The Code $options = array('autocommit' => DB2_AUTOCOMMIT_OFF); $stmt = db2_prepare($connection, "CALL LABLIB2.AR0011CL('?','?','?')"); $connection = db2_connect ( AS400_DATABASE, IS_USER_NAME, ...
3
votes
0answers
258 views

WPF 'Binding Builder' not interrogating nested ICustomTypeDescriptor (path empty)?

I'm experimenting with the ICustomTypeDescriptor interface and the PropertyDescriptor class in-order to create dynamic properties on objects. I am having a lot of success with simple objects, but I ...
3
votes
0answers
159 views

Binding instances being re-used in DataTemplate's when ValidationRule's can't be shared

I'm looking for a solution and/or the rationality behind why a Binding instance is shared within a DataTemplate. This ultimately comes down to the fact that within a DataTemplate, there's seemingly ...
3
votes
0answers
799 views

two-way data binding within a FormView doesn't work when runat=server is used for the table row

I have an ObjectDataSource set up as follows: <asp:ObjectDataSource ID="AccountDataSource" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetAccountByAccountID" ...
2
votes
0answers
31 views

Hide entity in bindingSource

I have a bingingSource and datagridview, the associated with this bindingSource. bs.DataSource = from asd in DBContext.SomeEntity where asd.SomeProperty == true select asd ; How can I hide a row in ...
2
votes
0answers
111 views

Index 1 is either negative or above rows count

DataView dv = ds.Tables["Unit"].DefaultView; dv.RowFilter = SqlWhere; dv.Sort = SortList.SelectedValue.ToString(); PagedDataSource page = new PagedDataSource(); page.DataSource = dv; page.AllowPaging ...
2
votes
0answers
80 views

Change in behavior in BindingSource between .Net Framework 3.5 and 4.0

We are upgrading our application from .Net Framework 3.5 to 4.0 and we have come across a change in behavior with BindingSource. The code: bindingSource.DataSource = new Dictionary<int, int>( ...
2
votes
0answers
85 views

ComboBoxItem continues to throw binding error despite style

Good day, I have a combobox that I am populating via a CollectionViewSource. The items are build though a datatemplate for the incoming item type (in this case a ProjectViewModel). This is in WPF ...
2
votes
0answers
72 views

Binding in windows/wpf and asp.net model

Binding data to DataBound controls in winforms and wpf vs Asp.Net has a slight difference WPF/Winforms dataBoundControl.DataSource = someDataSource; Asp.Net dataBoundControl.DataSource = ...
2
votes
0answers
115 views

Python library for data conversion

I'm writing a RESTful service using Pyramid. My data is stored as SQLAlchemy models. I need to convert it to elementary data structures (such as dicts, lists, ints, etc.) so that I can further render ...
2
votes
0answers
119 views

exception when assigning currentcell datagridview

I have a very strange exception. I have a datagridview bind to some data. And when the datasource is empty I add some data to it, update the datagridview and try to set the row I added to editmode. ...
2
votes
0answers
141 views

Retrieve a table value from a JList

(NetBeans 7.2.1 ) I have created a JList Employees_List and binded it as below: Bind elements: Binding source = tblEmployeesList Binding Expression = null Display Expression = ...
2
votes
0answers
75 views

Custom equality comparer for WPF ComboBox

When we bind the combobox's SelectedItem to a property, normally it will use the Equals method of the object type to determine the selected item that should be displayed in the ComboBox view. (see ...
2
votes
0answers
73 views

Silverlight Navigation Property not Binding in XAML

I am facing a peculiar problem. I have an edmx file loaded with some entities. Some of them has navigation properties. I am using a Domain service class to fetch the data. The linq query is as ...
2
votes
0answers
146 views

Rails: Not ember, not JS responses, but something in-between

I am developing a standard rails application, and so far I haven't used any AJAX, just good ol' HTML. My plan is to iteratively add "remote" links and all that kind of stuff and support for JS ...
2
votes
0answers
139 views

Image object rendering is extremly slow in WPF DataTemplate

I'm creating a simple file browser with thumbnails. I'm using a ListBox with a custom DataTemplate to display objects in an ObservableCollection. <DataTemplate> <StackPanel Margin="5"> ...
2
votes
0answers
115 views

Validating controls bound to different properties of the same object resets objectvalues

I have a form on which all textboxes are bound to different properties of the same dataobject that implements INotifyPropertyChanged. The Forms Autovalidate is set to 'Disable' as I want to trigger ...
2
votes
0answers
51 views

Get property by PropertyPath

This forum entry (http://stackoverflow.com/questions/2767557/wpf-get-property-that-a-control-is-bound-to-in-code-behind) gives the following statements to get "bound to" PropertyPath from "bound from" ...
2
votes
0answers
705 views

Binding SelectedItem in a HierarchicalDataTemplate-applied WPF TreeView

I have a data-bound TreeView and I want to bind SelectedItem. This attached behavior works perfectly without HierarchicalDataTemplate but with it the attached behavior only works one way (UI to data) ...
2
votes
0answers
439 views

TwoWay Data Binding Combobox with BindingNavigator

OK, so here's my dilema. I have a windows form which will be used to maintain an SQL Table. The SQL Table has foreign keys pointing to Code Tables. I'm using a BindingNavigator and a BindingSource to ...
2
votes
0answers
567 views

How to force gSOAP to generate vector of objects (not pointers!) for any XSD style?

I've been playing with gSOAP XML Data Binding and noticed that class generation varies depending on the XML schema style. Let me show you an example: library.xml: <?xml version="1.0" ...
2
votes
0answers
636 views

C# 4.0 Dynamic Object with ASP.NET DataBinding

I am trying to display in an ASP.NET GridView a property of a bound object that has been dynamically created using a dynamic object. In my example, DynamicProperties.FullName is dynamic. My client ...
2
votes
0answers
275 views

DataGrid Binding error for object already removed when BindingExpression uses array Index

I am trying to create a DataGrid which is populated by setting the ItemsSource property to an ObservableCollection of PropertyGroup objects where each PropertyGroup object contains an ...
2
votes
0answers
287 views

Howto Test Databinding with Rhino Mocks and NUnit

I try to test my SW-Project VS2008, .NET 3.5 with "Rhino Mocks" and "NUnit". It uses the MVP Pattern and Databinding, so nothing unusual. But I get a problem (System.ArgumentException) when I try to ...
2
votes
0answers
124 views

Silverlight 4 Binding and SilverlightBindingWrapper

I have a class that represents a container and a class that represents things that can go in that container, as well as a user control that displays that container and a user control that displays ...
2
votes
0answers
344 views

WP7 Binding Pivot to Collection of Objects with Collection property

I'm building on the basic Pivot example provider by Microsoft which has two defined pages, and a collection displayed on each page. I want to extend this to have a collection of pages, with ...
2
votes
0answers
372 views

WinForms DataGridView - databind object with List property (variable number of columns) AND that List property has List property too

My question starts with Marc Gravels's answer regarding WinForms DataGridView - databind object with List property (variable number of columns). First, my structures are as such: public class ...
2
votes
0answers
336 views

Databound control won't lose focus

I am building a form in which every control databinds to a property of a different class and I have found that there are some controls that simply will not lose focus when I try to leave the control. ...
2
votes
0answers
391 views

Data binding sometimes works for a FlowDocument sometimes doesn't

I've slightly modified the example from: http://www.bradcurtis.com/2010/02/06/document-and-report-generation-using-xaml-wpf-databinding-and-xps/ and used FlowDocument instead of FixedDocument. I ...
2
votes
0answers
294 views

Best Method for AS3 Data Services Update after Underlying Database Schema Changed?

I am using Flash Builder 4 to write Flex app. I originally used its php data service wizard to create the php class and related valueObject that interface with my database. Now when I change my ...
2
votes
0answers
717 views

Creating ObservableCollection from Inheriting DataSet for WPF Binding

Need: Need to bind data to WPF controls for a user to update a database. Approach: I am trying to implement a solution similar to this but am having an issue because I will be using a DataSet and not ...
2
votes
0answers
2k views

Why doesn't BindingList(Of T) have AddRange Member?

I think the title pretty much captures my question, but a little bit of background follows: When a form I have loads it adds a couple of thousand (30k odd) objects to a binding list. When my ...
2
votes
0answers
362 views

Returning a DBNull for a bound MaskedTextBox whenever type validation fails?

I have a MaskedTextBox control with the mask "00/00/0000", the PromptChar "_" and the ValidatingType of DateTime, bound to a DateTime column in a database that can also accept null values. I'd like ...
2
votes
0answers
936 views

WPF ContextMenu with bound items: Items.Count == 0 in ContextMenuOpening event

I have a ContextMenu with the ItemsSource bound to the selected item of a list view, like this: <ContextMenu ItemsSource="{Binding Path=PlacementTarget.SelectedItem, ...
2
votes
0answers
248 views

.Net Declarative databinding in nTier

I have an existing .Net single tier web app that is built using declarative data binding in the markup using EntityDatasource objects. I am in the process of extracting out the layers (Business ...
2
votes
0answers
184 views

JibX: how to output the fields from a particular class into different parts of the XML

I've managed to get what I want when mapping with inheritance like this: ThisClassShouldntExist freeFlowMsg errorMsg BaseForm extends ThisClassShouldntExist function subFunction SpecificForm ...
1
vote
0answers
33 views

TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table?

TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table? I have a datagrid which is twoway bind to table Accounts. Whenever the update button is clicked, I'll ...
1
vote
0answers
38 views

Getting the SelectedIndex of a LongListSelector Item

I have a WP8 DataBound app with an ItemViewModel bound to a LongListSelector. Quite simply, when the user taps on an item in the list, I need to retrieve the index number of the item selected for ...
1
vote
0answers
70 views

Coldfusion AJAX checkboxes - post form data via jQuery or cfajaxproxy?

OK, CF/AJAX newbie here. What I"m building out is a basic database-driven inventory checklist that, for each item, displays: category stock number (ID) item name picture of the item color a ...
1
vote
0answers
89 views

In VB.Net 2008, bound Combo Box doesn't update on move to specific record

I could use some direction as I'm totally stumped on this... In VB.Net 2008, I have a form with a data binding source called TblComplaintBindingSource. While it had more fields, the two I'm concerned ...
1
vote
0answers
64 views

selectedvalue which is invalid because it does not exist in the list of items dropdownlist

I binded a dropdown list, here is my code: (DataLayer) string countrySQL = "SELECT * From Country"; string[] param = { }; object[] paramVal = { }; return ...
1
vote
0answers
114 views

How to bind AngularJS Calendar to a REST resource using MVP

I’m failing to implement the binding between my REST resource and the AngluarJS calendar control. It seems that I’m missing something or just don’t get it logically since all components are working as ...
1
vote
0answers
14 views

Get attributes from 2 tables into 1 data source

I need to get 2 data into 1 data source from 2 tables Score user_id tribe_id score_mark Tribe tribe_id tribe_name I need score_mark and tribe_name, however, so far I only able to get score_mark ...
1
vote
0answers
55 views

How to bind two datatable with relation

I have two datatable in dataset and releation DataSet newDataset = new DataSet("dsShop"); DataTable customers = new DataTable("customers"); DataTable orders = new DataTable("orders"); ...
1
vote
0answers
33 views

WinJS.Binding multiple sources

I'm new to data binding, but it looked like an easy way to achieve what I need to do. My problem (as you can see) is that I have two (or more) of these boxes with different data on each page. The ...
1
vote
0answers
19 views

WPF: xmldataprovider access database

Is it possible to bind my access database in here? <XmlDataProvider x:Key="DeviceListData" XPath="Root"> <x:XData> <Root xmlns=""> <Entry ...

1 2 3 4 5 39