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

learn more… | top users | synonyms (2)

0
votes
2answers
28 views

How to preprocess/convert data of a databinding?

I am creating a DataGrid that is going to define (through user-input) the X and Y values of a curve which will be presented on the same window. The curve is going to be defined by a Path containing a ...
0
votes
1answer
20 views

Knockout change the click event

I'm trying to find a way to change the click event on all my elements. I want to do something like this but I think how KO binds the click event its actually attached to the element and so changing ...
0
votes
1answer
39 views

Databinding in RowDetailsTemplate doesn't work

I have simple Datagrid with binding and this one works correctly and inside RowDetailsRemplate another Datagrid but in that case binding does not work. Can you give me a hand with sorting this out? ...
1
vote
1answer
15 views

WPF DataGrid - how to suspend UI updates from databind and do a bulk update later

Having to do a lot of cell-by-cell changes in code on my source DataTable, I need a way to temporarily halt it sending data-binding updates to its bound DataGrid: I have a DataGrid bound to a ...
3
votes
0answers
20 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, ...
0
votes
2answers
21 views

Binding in DataTemplate/ItemTemplate

I have a ComboBox whose ItemSource is a ListCollectionView of MyClass. The ComboBox uses the following ItemTemplate: <Style x:Key="StyleComboBoxGroups" BasedOn="{StaticResource BaseComboBox}" ...
0
votes
2answers
21 views

WPF How to make DataGrid blank out certain columns based on a value in one of bound columns

I have a DataGrid that should display values from a datatable object. I need it to display one row for each in the datatable, but if column ShowRow in the DataTable is set to False, I need all but ...
0
votes
2answers
11 views

Does a Sql Datasource run a select query on load if no contol binds is bound to it?

I have a quick question, I have a gridview and a datasource on a page however because the datasource will return over 1 million records and the page will be accessed by a lot of people at the same ...
-1
votes
0answers
16 views

Windows forms application consuming mySQL data served using rest services from php [closed]

I want to build a windows forms application that would interact through rest services, served from php, with a MySQL database. The client application should perform CRUD operations, through ...
0
votes
2answers
38 views

Loading ObservableCollection with datetime values from an array

I have a ListView in a Class called HistoryStatistics and its template looks like this. Every item will have a button and two textblocks. <ListView x:Name="HistoryLV" Grid.Row="1" ...
3
votes
0answers
66 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 ...
0
votes
0answers
41 views

Using C# WPF I am trying to populate textbox's with a data bound combobox

I have some code but the textboxes populate after another selection is made. If I were to select John, his information would not fill in until after another selection is made after John. I am trying ...
0
votes
1answer
29 views

Adding rows to a Gridview that is bound to a SqlDataSource

I am trying to add a row to a gridview dynamically, while the gridview has a SqlDataSource bound to it. Is it possible to add a custom row while the data is still binding? I am coding in vb.
0
votes
0answers
25 views

Can we bind a GridView using Javascript only?

I am stuck with an issue and its troubling me a lot. I have a gridview and i am loading replacing the cell data of gridview using javascript, the issue i am facing here is i am just replacing the ...
2
votes
1answer
20 views

wpf default comboBox item when data-binding

I was following the tutorial Binding a comboBox to an Enum and came out with this XML code: <ComboBox DisplayMemberPath="Key" SelectedValuePath="Value" ...
-1
votes
2answers
65 views

wpf populate list with combobox [closed]

I've been chasing SO for bits of information but not as a complete solution for my problem I'm looking for a way to use a comboBox as a selector/filter for items that would be display in a listView, ...
0
votes
1answer
31 views

Binding CheckBoxList to a Generic List

How to bind a CheckBoxList to a generic list object. This sample code should work for the purpose: protected void Page_Load(object sender, EventArgs e) { // Works well with the datatable as a ...
1
vote
1answer
27 views

How to Stop the binding when the controls are initializing in the DOM

I'm having a question about knockout binding to a select list. the problem is if we attached a click binding to a control, the event will be executed whenever the control is clicked. but why this ...
1
vote
2answers
28 views

DevExpress Grid view Query - DataSource property set to DataTable but showing incorrect number of Columns

I have a DataTable which I use to bind to the my DevExpress GridView . My DataTable is dynamic ie - sometimes it can bring 4 columns sometimes even 20. The problem is that when i first time set my ...
2
votes
2answers
43 views

Revert an invalid value in knockout without subscriptions firing

Is it possible to revert a value change to a view model with something other than a custom binding handler (maybe an extender) without the subscriptions firing? For example, say you have a numeric ...
1
vote
3answers
42 views

Setting Binding.Path throws exception on some machines

Consider following example public class Test { private static string _property = "Success"; public static string Property { get { return _property; } set { _property = ...
0
votes
1answer
12 views

Need help making my DataGridView sortable

I have a DataGridView that I populate with data that I get from a web service. AdminTool.adminWS.templateListDTO[] templateList = null; AdminTool.adminWS.OwordBeanService owClient = new ...
0
votes
1answer
11 views

the content property does not change with this data trigger

I have a button and I would like to change the text of the button (content property) according to a value of other control. I am using this code in the axml: <Button Height="23" ...
0
votes
1answer
28 views

How to refresh the data without reloading the page using data-bind

I am using knockout.js in my django project and having problem in post method in javascript. I tried to rebind or re-initialized the list but it didn't work. Eg: I am showing table data with 10 ...
0
votes
1answer
26 views

How to bind value from Viewmodel to usercontrol in view

I have a window, that contains a usercontrol. The usercontrol have a dependency value, which I need to bind to a value on the windows viewmodel. But, no matter what I try, I end up with null. So, ...
0
votes
1answer
24 views

WPF TreeView data binding

I am very new to WPF, although I have already heard some concepts of it, like Model-View-ViewModel. I want to start learning WPF by doing a small program. In the program I have a TreeView to display ...
1
vote
1answer
48 views

Select row in HTML table to update chart selection?

How do I setup an HTML+JS table with data associated to a chart (Flotr or D3); where I can multiselect rows and that will update what is shown in the chart? - I'll likely be using AngularJS, so their ...
1
vote
0answers
29 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 ...
0
votes
1answer
10 views

KnockOut binding breaks after moving DOM element

I have a web app built on KO and for the most part it has been a god-sent. However, I have one very frustrating problem. When I move an element with jQuery from one spot in the DOM to another, the ...
-1
votes
1answer
70 views

Binding a progress bar to Loading property

I have a ProgressBar in my view which I am trying to bind to a loading property in my data model. I get an error when the property changes because it's a boolean and it's expecting an ...
0
votes
0answers
10 views

index -1 does not have value {IndexOutOfRangeException}

I am managing bindingsource to display data in datagridview, datacontext is in bindinglist everything is working fine, sometimes randomly got Index -1 does not have value, I doesn;t have null list, ...
0
votes
0answers
25 views

d3 transitions using two datasets

I'm a D3 noob trying to figure out transitions and wanting to work with multiple datasets. I've looked thru the other questions, and not found an answer to use of two datasets. This jsfiddle shows ...
0
votes
1answer
23 views

How can I bind dynamic xml file to asp tree view?

I am trying to bind information from a web service to a tree view in my asp.net website. Using a drop down list, I choose a stock symbol that retrieves that company's information from the web service. ...
0
votes
0answers
9 views

How to implement a textfield bound to another object with autocomplete?

I'm trying to port a small application (as a learning exercise) from Symfony2 to EmberJS consuming a REST api from Symfony2 using Ember-data. So, my problem: Let's say I'm creating a very basic ...
0
votes
1answer
43 views

how to dynamically bind a directive in angularjs?

I have a directive which needs to display data from an object in a controller. The piece of data that must be displayed is determined by an attribute of the directive and some other calculations based ...
0
votes
1answer
19 views

Databinding XmlDocument

I have a UserControl where I want to bind textboxes to an XmlDocument. The important parts of the xaml-code looks like: ... <UserControl.DataContext> <XmlDataProvider x:Name="Data" ...
0
votes
1answer
53 views

Is there a best way to manually disable and re-enable a binded button?

In my ViewModel I have the following method: public async Task<Boolean> DoSomething(Button sender) { Binding binding = sender.GetBindingExpression(Button.IsEnabledProperty).ParentBinding; ...
0
votes
1answer
16 views

Silverlight 3 Binding with a little change

Let's say I have class with Name property. I'd like to bind collection of objects of this class to Silverlight 3 ListBox. But I want to show items like that: "Some dynamic str " + Name (object ...
0
votes
2answers
36 views

Binding an object to a datagrid column

I have an employee class which contains an instance of a person class: List<Employee> emp = (AdventureWorks.Employees.Select(n => n)).ToList(); showgrid.ItemsSource = emp; ...
0
votes
0answers
17 views

ValueConverter based on Pivot SelectedIndex

I'd like to know how I can change a IValueConverter based on the Pivot SelectedIndex. I'd like to set different units for both my PivotItems. I'm using a ItemTemplate because the layout is the same. ...
0
votes
1answer
25 views

Must have non-null value for 'Setter.Property'

I am reading this article on MSDN site, in order to understand DataTrigger. I have created a DefaultViewModel class which looks like this. namespace ControlTemplateDemo { public class ...
1
vote
0answers
32 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
1answer
42 views

Databinding menu items fails at run-time

I have a MenuItem where the ItemsSource property is databound to an ObservableCollection like so: <MenuItem x:Name="RecentItems" Header="Recent" ItemsSource="{Binding Path=RecentItems}" ...
0
votes
3answers
40 views

Binding image from control page to main page WP7/8

I want bind image from control page to main page but I cannot get it to work. I try this: XAML: <Image Source="{Binding myImage}" Height="150" Name="photoPreview"... binding: public Image ...
0
votes
1answer
43 views

The name does not exist in the current context c#

I'm trying to bind data with a chart to display it. However when I'm trying to link one of the columns with one of the axis of the chart it comes up with "The name Column1 does not exist in the ...
0
votes
0answers
26 views

Binding Request Params to Command Object Properties with Different Names in Grails

I have a g:form in my GSP with field names like "email-address", "passwd", and "passwd-confirm". I also have a Command object with properties like "email", "password", and "passwordConfirm". In my ...
0
votes
1answer
30 views

Issue with Windows Store app CommandParameter; doesn't bind to UIElements or their properties?

The past couple of hours I've been trying to pass a GridView's SelectedItem to a CommandParameter with all sort of crazy ways from different binding styles to crazy-hacky converters. Each time the ...
0
votes
0answers
58 views

ASP.NET VB Binding issues with gridview after deleting and then inserting new data

I have a very confusing problem with a gridview. Basically I can insert rows without any problem but when it comes to deleting and then inserting new rows into the gridview, the gridview always shows ...
1
vote
2answers
24 views

Adding an Item to the top of a LongListSelector

I have a Windows Phone app that follows the Databound App template. It's basically a LongListSelector control manipulated by an ObservableCollection() thing. Adding things is easy: I just do this: ...
0
votes
0answers
14 views

Two-way binding and XmlDataProvider in WPF

I am having problems figuring out how to bind my xmldataprovider to my listbox and the textboxes. I want to be able to select a company name in the list box and then have the company's name, contact ...

1 2 3 4 5 195