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

learn more… | top users | synonyms (2)

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
vote
0answers
47 views

how to show items in a flowlayout manner in datalist/repeater

I have a list of suppose 10 videos whose thumbnail i want to show in a data control Like this: Vid1 Vid2 Vid3 Vid4 Vid5 Vid6 Vid7 Vid8 Vid9 Vid10 and so on and also which ...
1
vote
0answers
86 views

angular : ng-bind from view to position outside view

if this is solvable with $rootScope, how can i achieve this? my code is below, inside the view it works fine, as soon as i place the element outside of the view it breaks. controller ...
1
vote
0answers
93 views

How to implement a conditional validation rule in wpf/XAML

I was hoping to find a way to use a custom ValidationRule in XAML data binding, but to use it conditionally, such that the rules used are selected dynamically. For my particular problem, I want to ...
1
vote
0answers
106 views

C# Bing maps update location inside datatemplate

I'm working on a windows store app (c# and xaml) which contains an ItemDetail page. Here, I would like to include a Bing map which shows the location of the currently selected item, meaning the ...
1
vote
0answers
45 views

Why is a ArgumentOutOfRangeException being thrown when datatemplate is not the current one being used

I am using a data template selector, as shown below: - public class ExampleTemplateSelector : DataTemplateSelector { public DataTemplate Foo { get; set; } public DataTemplate Bar { get; set; ...
1
vote
0answers
39 views

ValidatesOnExceptions is not working in Silverlight VS2010

I'm using VS2010 and Silverlight 5. I have a sinple Silverlight project that declares a class (Student) and a view with textboxes bound to the Student properties. The Student class throws an ...
1
vote
0answers
855 views

How to bind dropdownlist to a grid view in asp.net??? Here dropdownlist is not inside gridview

I am trying to bind gridview to a dropdownlist meaning when i change my dropdownlist value data must be accordingly displayed in asp.net.But whenever i build the application following errror occurs: ...
1
vote
0answers
95 views

Updating data binding source of a content control in a ResourceDictionary

I want to create a view that has a set of tabs (each, basically a ContentControl) that each have various settings. I then want to have a button that will update all of the data binding rather than ...
1
vote
0answers
167 views

Preserve disabled inputs in meteor

I am currently designing an user-interface in meteor with several text inputs whose contents are saved to session variables upon change (keyup event). Due to the preserve-inputs package, those input ...
1
vote
0answers
146 views

Two way binding for a control in a radgrid editform that conditionally binds if the dataitem is of derived type

I am running into the classic can't use Bind in C# problem below. I can't use eval because I need 2-way binding. This textbox is sitting inside a rad grid edit form. ...
1
vote
0answers
114 views

WPF nullreference exception thrown on Button when value converter in prior Label is in place

TLDR: A Nullreference exception is thrown when XAML parsing any button element when another unrelated element has databinding and value converter. When the buttons are commented out, or the ...
1
vote
0answers
39 views

Do I need to trigger an event for the bind with Combox works properly?

I have an issue with a ComboBox private void Form_AddGoal_Load(object sender, EventArgs e) { LoadGoal(); IList<Perspective> perspectives = PerspectiveRepository.All(); ...
1
vote
0answers
70 views

INotifyCollectionChanged insufficient for databound control to update?

I'm trying to implement a bindable collection - a specialized stack - which needs to be displayed on one page of my Windows 8 app along with any updates made to it as they happen. For this, I've ...
1
vote
0answers
52 views

How to WriteValue for all bindings

I am planning to use .NET data binding for a small project, which is mostly a configuration editor. So a collection of settings is bound to a form, loaded from app.config at the start, and saved back ...
1
vote
0answers
90 views

Binding a Decimal to NumericUpDown with Minimum other than 0

I'm binding a decimal (from an NHibernate entity) to a NumericUpDown. _numUpDown.DataBindings.Add(New Binding("Value", _BindingSource, "TheDecimal", False, DataSourceUpdateMode.OnPropertyChanged)) ...
1
vote
0answers
113 views

configure entitydatasource with entity set that includes multiple tables

I have an entity data model with two entities. One entity called Posts contains blog posts and another entity called Comment contains comments. I set up the association as a one to many relationship ...
1
vote
0answers
67 views

Binding Row to Validation Rule WPF

I want to bind TextBox's Tag (which is inside a DataGrid), to validation rule's CurrentLegStrategy property (which is a DependencyProperty). Although I've done something similar with Deal dependency ...
1
vote
0answers
74 views

Changing source collection of ObservableCollection property

One of my library classes exposes a property that looks somewhat like this: Private _myCollection As New ObservableCollection(Of String) Public ReadOnly Property MyCollection As ...
1
vote
0answers
203 views

Search between two dates w/ datarows in vb 2010

I am trying to search between two dates in a bound source (SQL table) in VB 2010, using data rows. Since 'between' in unsupported with the data rows function, I used < and >. So I run this code ...
1
vote
0answers
111 views

dynamically bind pushpins to the map based on lacation in wp7

<DataTemplate x:Key="pushpinSelector"> <my:Pushpin Location="{Binding Location}" CacheMode="BitmapCache"> <my:Pushpin.Template> ...
1
vote
0answers
29 views

Why is my readonly Databinding 'breaking' when I update some fields?

I have implemneted a basic DTO, which implements INotifyPropertyChanged, and created a form which binds to properties on this DTO. The form has 2 text boxes on it, bound to read/write properties. It ...
1
vote
0answers
207 views

Why is my DataGridComboBoxColumn clearing its value when I navigate away from it?

I have a DataGrid with two columns: 1) a DataGridComboBoxColumn and 2) a DataGridTextColumn. I have set up data validation so that if one has a value, the other will be in error until it also has a ...
1
vote
0answers
498 views

Name Does Not Exist in Namespace

I am trying to bind an Observable Collection to a XAML Interface. While everything builds and runs as expected, the following code breaks the Designer with the error that the name ... does not exist ...
1
vote
0answers
168 views

Binding UserControl Depency Properties to Runtime DataSet

I'm quite new to xaml. I have looked around quite a bit and I'm finding posts that come close to what I'm trying to do, but I haven't been able to find exactly what I'm looking for. I have an ...
1
vote
0answers
48 views

Load child DataTable based on parent

Here is something that is probably right in front of my face, but I am missing it. I have a table structure with Parts, Parts_Customers, Customers. I have generated three TableAdapters for those three ...
1
vote
0answers
89 views

Set dynamically checkbox's id property at .aspx page

I want to set checkbox's id attribute dynamically as you see below. There will be another controls that put that checkbox' right side, also via data binding. Can i do that way? Or can you any ...
1
vote
0answers
218 views

Update database with value from datetimepicker

Using Visual Studio 2010 and c#, I created a windows form and dragged text fields from the data sources tree to the form. The fields display fine and when I change the text in one of them and press ...
1
vote
0answers
150 views

How do I serialize the object I am passing as a parameter from page to page in a Windows Store App

I am working on a Windows Store app and I am having an issue serializing my DTO classes back to the xml file that I was able to deserialize. After data-binding and changing some data I can't figure ...
1
vote
0answers
112 views

nested repeater each with sqldatasource

<asp:HiddenField ID="hfOrderState" Value="1" runat="server" /> <asp:SqlDataSource ID="ReadyOrders" runat="server" EnableCaching="true" DataSourceMode="DataSet" ...
1
vote
0answers
111 views

Accessing MVVM Light FrameworkElement in the ViewModel

I'm new to the MVVM model and am having a little trouble using a library the was made to be used in the codebehind. I need to pass a FrameworkElement to the constructor. In the past, the codebehind ...
1
vote
0answers
424 views

Custom XamGrid Columns Databinding Images/Buttons/Tooltips

HI I am trying to utilize Infragistics controls in my app, particularly XamGrid. I select a bunch of parameters the the grid brings back the results. I use to have this fully functional in the ...
1
vote
0answers
71 views

How do I hide a cell in a RadGridView depending on the current object's bool property?

I currently have a list of objects in which my RadGridView's ItemsSource is set to. When the property "DoNotContact" of the object in the list has been set to True, I want to hide the information in ...
1
vote
0answers
150 views

ListView item doesn't fit width in binding WinRT

I'm designing a listview in blend and I would like the item completely fill up the width of the list. This happens if I use the ListViewItem control, but if I use the data binding the item is tight. ...
1
vote
0answers
114 views

Creating a chart w/ variable date range-where data comes from access and min and max date are selected from drop downs from dame data source

I'm seeming to have run into an issue in creating s stock chart. I have a simple data set in Access of 1 stock, with price data (double) and a each day listed as date/time. So when I load the data ...
1
vote
0answers
105 views

Resetting PageIndex when refreshing data source

I am trying to implement paging when reading from a huge database. When user moves to a page outside a window, i fetch the next set of records and populate the table for 9-10 pages. Problem is, after ...
1
vote
0answers
54 views

UpdateValueStrategy and custom conversion multiple GUI elements to one property

I'm using the eclipse databinding with beans and an SWT java application. I successfully binded several textfields and checkboxes with my model. Now I have three radio buttons: GUI: ... Model model ...
1
vote
0answers
142 views

System.Windows.Data Error: 1 System.Windows.Data Error: 5

All, I have a WPF app that has a DataGrid control bound to ItemsSource=MyContext.Entity1.Local (which is an ObservableCollection). Inside of this app is a DataGridComboBoxColumn as follows: ...
1
vote
0answers
127 views

Bind Individual DataGrid Cells to Individual Array Elements

As it says in the title, I am trying to bind individual column cells to individual elements in my load array, but I'm not sure how to perform the binding. VM implements INotifyCollectionChanged. ...
1
vote
0answers
230 views

Bind ListBox in DataTemplate to parent control DataMemberBinding - Silverlight XAML

Just wondering if it's possible to bind the listbox in the XAML below to the GridViewDataColumn in a relative manner - I can do it explicitly but I want to add the Columns dynamically and would like ...
1
vote
0answers
302 views

MahApps.Metro TabControl Laggy with filled GridView

I have a TabControl with 4 TabItems. Inside each TabItem I have a GridView and a Toolbar. I use MahApps.Metro (for Window and TabControl) and telerik RadControls (for GridView and Toolbar). I use ...
1
vote
0answers
381 views

RadTreeView cannot refresh to show changes in hierarchical data source

I have a rather serious problem trying to get a Telerik radTreeView to show changes in the underlying database and therefore datasource. My scenario is as follows. In the Load event hander, the ...
1
vote
0answers
76 views

Binding ContentTemplateSelector to different Object then Content (ContentPresenter)

Looking at my code I realized that many of my DataTemplateSelector based classes do pretty much the same thing, e.g. check a bool property of the bound object. I don't really want to have a bunch of ...
1
vote
0answers
142 views

How can I stop a ListBox's ItemsSource from being cleared when its binding source becomes null?

Background: Consider this XAML snippet: <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="100"/> ...
1
vote
0answers
947 views

Validation Summary in WPF using IDataErrorInfo and Validation.Errors

I have a ViewModel with an ObservableCollection of objects that implement IDataErrorInfo: public class ActivityCodesEditorViewModel : BaseViewModel { public ...
1
vote
0answers
624 views

Multiplicity constraint violated. The role '' of the relationship '' has multiplicity 1 or 0..1

I have a Tab object. This Tab object has many Questions. Here are my classes: public abstract class Tab { /// <summary> init default values </summary> public Tab() { ...
1
vote
0answers
268 views

DataBinding a DateTimePicker raises “DataBinding cannot find a row in the list that is suitable for all bindings.”

I have a simple test application which reproduces an error I encountered recently. Basically I have a simple WinForm with databound TextBox and DateTimePicker controls, and a button. When I execute ...
1
vote
0answers
97 views

Combox's Textbox accepts value of selectedValuepath after tab or leaving comboBox it diplay seletedValue in combox's textBox

I want in application that my combobox accepts selectedvaluepath property's value and after tabbing or leaving from combobox it displays selectedValue in combobox's textbox. And also it accepts ...
1
vote
0answers
170 views

Fallback value for DynamicResource

My application loads all strings from resource dictionaries defined in separate XAML files. It is possible that the DynamicResource key will not exist during run-time. <CheckBox ...
1
vote
0answers
137 views

Data Binding in a WPF User Control

A seemingly simple problem that has me gridlocked. I have a usercontrol that contains a TextBlock. I wish to bind several properties of the TextBlock (Text, FontSize, Foreground, Background, Margin). ...

1 2 3 4 5 39