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

learn more… | top users | synonyms (2)

1
vote
0answers
140 views

How to bind multi selection indices of an SWT list?

I want to bind the current multiselection indices of a SWT list to my model. Ideally I would bind an int[] that represents the selected indices as returned by list.getSelectionIndices(). Is this ...
1
vote
0answers
358 views

How to bind to resource from codebehind without using DataContext

I have a datagrid with messages, which has declared itemsource in codebehind. TO every row I need to add contextmenu from which user can select user to whom he wants forward a message. <!-- ...
1
vote
0answers
382 views

Spring JS Ajax call - enum data binding failing to convert but strings working

I'm using Spring with dijit components to render an option list from an enum in my model: <form:select path="selection"> <form:option value="" label="Please ...
1
vote
0answers
876 views

Set Manual Proxy in wcf basicHttpBinding

Below is my code for setting user specified proxy address. private Binding GetBinding() { BasicHttpBinding basicHttpBinding = new BasicHttpBinding(BINDING_CONFIG_NAME); ...
1
vote
0answers
193 views

Bindings don't show up on my bound control

I have a derived class (i hope i have created correctly) <ToggleButton x:Class="Project.QuestionControls.spriteToggleButton" ...
1
vote
0answers
97 views

System.MethodAccessException Only on winhost server. Works on development

Attempt by method 'Microsoft.VisualBasic.CompilerServices.Symbols+Container.InvokeMethod(Method, System.Object[], Boolean[], System.Reflection.BindingFlags)' to access method ...
1
vote
0answers
517 views

Select Row for Binding Source

I want to bind a datagridview to a binding source and I was wondering how to record the selected value to the binding source. From what I know so far, there are functions for the binding source to ...
1
vote
0answers
101 views

Unable to call update method on a datasource

I have a simple SQLDatasource that I have created in asp.net. the datasorce is calling stored procedures for both insert and select. the bound data controls are in a formview but the data source is ...
1
vote
0answers
165 views

Weird data binding behavior in ASP.NET MVC3?

I have the following domain objects: public class Foo { public Id {get; set;} **public BarId {get; set;}** public virtual Bar {get; set;} public string Name {get; set;} ...
1
vote
0answers
3k views

Infragistics WebHierarchicalDataGrid - Custom style on child bans when Databind to IList?

I'm trying to setup some custom styles and TemplateDataFields on the child band level of the Infragistics Hierarchical DataGrid. I'm binding the control to an IList which has sub lists. The control ...
1
vote
0answers
297 views

checkbox TwoWay binding

i have a listbox binded to a list. the list contains checkboxes binded to a field/member of the list. what i want to achieve is that i want to delete the data from list when it's corresponding ...
1
vote
0answers
314 views

Binding graph to DataGrid in WPF

I have displayed a DataGrid in my WPF project window, I also want a graph below it which takes the values from rows and columns and plots it. I have been trying to do alot of things like binding ...
1
vote
0answers
160 views

Is it a good practice to override DataBind() method on a a user control?

Is it a good practice to ovverride DataBind() method of the user controls? Or to have a separate method (like ReBind() ) is better way?
1
vote
0answers
279 views

Conflicting Gridview DataBinds for two different tasks

I have had an Export to Excel functionality built into one page. Thanks to help from here, I just added in functionality to conditionally format a certain cell (which is included in the Export to ...
1
vote
0answers
560 views

Problem of dynamic binding data with ExpandableListView on Android

First thing, is this the correct way to get the current item view of an expandablelistview? long packedPosition = ExpandableListView.getPackedPositionForChild(groupPosition, childPosition); ...
1
vote
0answers
572 views

Detect entity framework datacontext changes for save/cancel enabled

I'd like to detect if my entity framework datacontext has changed (has changes to apply with SaveChanges()) so I can bind it to my Save button IsEnabled. I know there is also CanExecute for my ...
1
vote
0answers
297 views

Has anyone got a solution/workaround for CollectionContainer not being Freezable?

I'm trying to bind the Source of a CollectionContainer (or CollectionViewSource for that matter) to a RelativeSource Binding - I always get the following error System.Windows.Data Error: 2 : Cannot ...
1
vote
0answers
357 views

Binding to Grid.columndefinition with MVVM

I would like to define the number of column of my silverlight 3 Grid with DataBinding. How can I do this ? With code behind, I would have done something similar to that : foreach (MyObject o in ...
1
vote
0answers
160 views

C# Bind ADODB.Recordest to TextBox

I have an application that was migrated from a legacy app, and for now we want to keep it using the COM ADODB classes (using Interop). In the original app we had a TextBox control bound to one of the ...
1
vote
0answers
291 views

MvvM with custom View-Elements. Data Binding problems

As a newbie in Data-Binding, I don't know what I am doing wrong. I have some GUI elements defined in XAML, and I have data-binded them with appropriate ViewModels. So far so good. I also have some ...
1
vote
0answers
207 views

How to get virtual Item of databound ListBox?

If I have a list of Cars bound to a ListBox. I now want to implement that the first item is initially focused, additionally I want to implement a full keyboard navigation between the displayed ...
1
vote
0answers
587 views

What is recommended pattern to bind a WPF control to a LINQ to Entity query?

At the MSDN you can read the following: We recommend that you not bind controls directly to an ObjectQuery. Instead, bind controls to the result of the Execute method. Binding in this ...
1
vote
0answers
451 views

DataGrid's Row Becomes Read-Only After Write

I have an issue with a DataGrid bound to an ObservableCollection where if i explicitly set a value on to the OC skipping the DataGrid [I have an auto-complete textbox so when the user clicks the ...
1
vote
0answers
347 views

Mixing dynamic and fixed items in Silverlight TreeView

I'm attempting to create a TreeView in Silverlight that contains both fixed elements and databound ones. I am able to produce one that creates the desired effect, but it's not perfect - it highlights ...
1
vote
0answers
1k views

Problem with binding Telerik's RADTreeView Control

I have followed this simple example and implemented similarly:- http://www.telerik.com/help/aspnet-ajax/tree_databindinghierarchical.html The problem:- GetDataSet() method returns a DataSet with the ...
1
vote
0answers
2k views

How to bind user defined data type object to DetailsView?

Hi I am having a class which contains user defined data type property. I have created an instance of that class. When I bind that object of that class to DetailsView it is showing all properties ...
1
vote
0answers
154 views

SL4 data binding syntax issue (debugging declarative databinding)

I'm using the DevExpress GridControl with a context menu. Their context menu implementation uses their bars control which creates a lose reference from a row in the grid to a group of reusable bars. ...
1
vote
0answers
301 views

Data binding order in ASP.NET

suppose following code: <asp:FormView runat="server" ID="frmMain" DataSourceID="odsMain"> <ItemTemplate> <asp:ObjectDataSource runat="server" ID="odsInner" /> ...
1
vote
0answers
226 views

WPF Data binding to project settings

In my app, I data bind two text boxes to project settings. <Page.Resources><p:Settings x:Key="Settings" /><Page.Resources/> <TextBox Grid.Row="3" Name="textBox1" Text ...
1
vote
0answers
177 views

graphical gui editor which incorporate database tables with python

(from your own experience) Is there a graphical UI editor / designer tool, commercial or free, which is able do design forms, and supports database-bound tables, before writing any line of code? ...
1
vote
0answers
1k views

Silverlight, Databinding a DateTimePickerControl

Today i tried joining a date and time picker controls in a new DateTimePicker control. It works fine from the codebehind but our project is following the MVVM model so i need to bind this control with ...
1
vote
0answers
483 views

Entity Framework Foreign Key Table isn't saving changes made to its BindingSource

I have two tables: CREATE TABLE `Vehicles` ( `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, ... Other columns PRIMARY KEY (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT ...
1
vote
0answers
132 views

Databinding in Blend

I have found an excellent video about how to bind controls to an XML dataset completly in Blend without a single line of code. I am trying to do the same - bind a textbox to a value of Dataset --> ...
1
vote
0answers
542 views

Programmatically Set Asp Menu to Selected

I dynamically populate my Asp.Net Menu based on my Database: public class BasicHyperLink { public string Title { get; set; } public string Url { get; set; } } // For example, for the first ...
1
vote
0answers
93 views

How does ASP.Net ensure the correct binding order of internally-bound controls?

If I have something like this: <asp:Repeater DataSource='<%# new List<string>() { 'Tom', 'Dick', 'Harry' } %>' Visible='<%# DataTime.Now.Days == 1 %>' runat="server"> How ...
1
vote
0answers
269 views

Databinding composite control's properties inside a repeater

I have a composite control inside a repeater and I am trying to databind its properties like so (simplified example) : <uc1:Control ID="id" runat="server" Value='<%# Eval("value") %> This ...
1
vote
0answers
579 views

Creating DataAdapters for Entity Framework

This relates to the reporting suite we are using, but I believe the pattern is the same for WinForms and other .NET technologies. The reporting suite we are using (XtraReports 10) supports design ...
1
vote
0answers
106 views

Binding different real time updated ObservableCollection to same userControl template

I have a UserControl with template property on, and a listView where i want to bind my collections. I use them for a multiple window interface. How can i bind on several different windows (child ...
1
vote
0answers
206 views

How to synchronize data between model and view (2 ways) in javascript?

I try to use jQuery plugins like chain.js or DataBind, but it is not quite what I need... Chain.js can't store changed data to the model (as I know). DataBind have method unbinddata(), that store ...
1
vote
0answers
71 views

How do I find the associated the field and table bound to a control in C#?

I'm generating some code from a form object using reflection. I want to iterate through all the controls on the form and output the field and table that each control is bound to. Right now, I am ...
1
vote
0answers
2k views

How to bind datagridview, combobox and bindingnavigator?

I have a small/big problem... I'm tring to bind some comboboxes, datagridview and bindingnavigator. My situation: I load all table and data from different tables into ONE DataSet! Let's say there ...
1
vote
0answers
512 views

Custom RichTextBox and Text Property Binding

I have created a custom RichTextBox control and exposed a Text property. The Text property is defined as follows: public string Text { get { return new ...
1
vote
0answers
134 views

Cast Bindingsoure.Current to POCO

I have a sqldatareader that gets assigned to a bindingsource and a datagridview datasource to that. When I look at the type of Bindingsoure.Current its a DataRecordInternal. How can I cast that to ...
1
vote
0answers
465 views

Silverlight - Displaying Hierarchy of tabular data

I have some data that I am displaying in a DataGrid. This data has multiple properties, which represent the columns of the DataGrid. One of these properties is a collection of another type of entity. ...
1
vote
0answers
115 views

Databinding collection of collections

I looked for on the web during a long time and I can't find my answer. I have two classes: 1) Customer: Customercollection which inherits from ObservableCollection. It contains dependency ...
1
vote
0answers
179 views

Best way to implement SQLite data storage in AIR

What would be the best way to commit data to an SQLite database in AIR? I currently have an NamesCollection class which extends ArrayCollection. The addItem method takes the name as a parameter and ...
1
vote
0answers
622 views

WPF: Issue with OverFlow Panel on Toolbar control

I'm having an issue working with the Toolbar control for WPF in Blend 3: I have a Toolbar control that is binded to a collection so that it displays both icons and labels for each one of the actions ...
1
vote
0answers
1k views

DataBinding the AJAX Control Toolkit's Rating Control

I'm attempting to use the AJAX Control Toolkit's Rating control in a DataBinding scenario. I have a ReuseRating column in my database that is a tinyint. It can hold values 1 through 5. Every record ...
0
votes
0answers
16 views

WPF Listview: Force validation when adding or removing data bound collection

I'm trying to build a validation rule for a ListView which should be valid only when there is at least one item on its data bound collection. I've ended up creating a new ValidationRule derived class ...
0
votes
0answers
7 views

pass more than one parameters to webapi ,contains an array

public HttpResponseMessage PostEmployeeHours(EmployeeHours[] models,int year,int month) post data is: [0].Name ="Army" [0].ID = 12 [0].Hours = 12 year = 2013 month = 3 This method cann't receive ...

1 2 3 4 5 39