A general technique that binds two data/information sources together and maintains them in sync.
1
vote
0answers
58 views
.NET Parameter vs DbParameter classes
Does anyone have a clear explanation for how these two classes are related and what their differences are? I know that Parameter is used for data-source web controls, whereas DbParameter (or rather, ...
1
vote
0answers
94 views
DefaultView.Sort is resetting
I need help with this code:
DataAdapter1.Fill(DataSet1);
DataSet1.Tables[0].DefaultView.Sort = "sortcolumn";
BindingSource1.DataSource = DataSet1.Tables[0].DefaultView;
After execution, the ...
1
vote
0answers
55 views
How to put a breakpoint on an ASP.net databinding expression?
i have a line of code that is throwing a Specified cast is not valid exception:
<%# DecimalToStringUsingUserLocale( (Decimal)Eval("HoursBooked") ) %>
i want to have a breakpoint on this line, ...
1
vote
0answers
224 views
Nesting repeaters from a MySQL database using OdbcDataReader in ASP.NET 2.0
I asked this question a while ago, but had no response, since then I've been busy with other things, but came back to it today and still can't crack it.
My original question: Using a One to Many ...
1
vote
0answers
143 views
WinForms Object Databinding Performance Issue
I have created a simple VB .NET Application. 1 Form with 2 TextBoxes bounded to a class with 2 properties, Property1 and Property2. If I input text in TextBox1, binding process causes reading of ...
1
vote
0answers
139 views
Data Binding Converter “does not implement interface member”
I am having problems using a binding converter written in code-behind, with the corresponding markup. It keeps giving me the same error:
does not implement interface member ...
1
vote
0answers
225 views
Force validation rules for controls bound on unselected tabItems in WPF
In my canonical example, I have two tabs the first with a button and the second with a text box that is bound to a validation rule. When the button is clicked an action occurs that should cause the ...
1
vote
0answers
388 views
Binding DataGridComboBox Column to a List of Values
I am binding a DataGrid to a DataTable:
DataGrid has 4 columns:
1. CheckBox (no issues)
2. Text Box 1 (no issues)
3. Text Box 2 (no issues)
4. Combobox (Here is where I am facing the problem)
...
1
vote
0answers
37 views
change object field with upating bounded text field
How can I solve this problem:
private void SetupBindings()
{
MyObj = new MyObjClass();
MyObjSource.DataSource = typeof(MyObjClass);
MyObjSource.Clear();
...
1
vote
0answers
171 views
Caliburn Micro - UI not updated second time
I am working on a WPF project that is using Caliburn Micro. I am running into a problem where the controls in the View are not getting updated the second time the View is opened. The first time the ...
1
vote
0answers
98 views
Twoway binding crashes when I change datacontext
I am using twoway binding to dynamically change the color of one of my user controls and to set the initial selected color. It's structured as the following (way simplified):
<RadGridView ...
1
vote
0answers
123 views
Databounded DataGridView with Custom TextAndImage Column Render Issue
I have a DataGridView that I databind to a class to display it's properties. The problem I run into is the first column of the datagridview that happens to be a custom type that has both an image and ...
1
vote
0answers
144 views
DataTable TwoWay binding with DataGrid.
I've got DataGrid:
<DataGrid Name="dataGrid" Grid.Row="3" ItemsSource="{Binding ResultSet, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" CanUserAddRows="False" AutoGenerateColumns="True" ...
1
vote
0answers
122 views
Why isn't my List inside an object contained within another list getting back to the Controller?
I'm sure that this has been answered at some point somewhere on SO, but I haven't been able to find it after over an hour of looking.
I'm using C#, MVC3, and AJAX/jQuery.
I have a custom object ...
1
vote
0answers
74 views
“Sys is undefined” error in databinded page
I have a page with a formview that is generating the "Sys is undefined" error.
This is the only page that have this problem, so it is not an web.config error or IIS configuration error.
The page ...
1
vote
0answers
124 views
Need help understanding what happens when we create a new BindingContext for data bound fields
BACKGROUND: You have a form with two text boxes. Each text box is bound to the same field in a typed dataset.
Using the visuals studio designer you bind each textboxes Text property. This is what ...
1
vote
0answers
102 views
How can I bind the transforms of Viewport2DVisual3D controls in code-behind?
I'm tasked with creating something of a 3D interface for an application. After looking through my options I decided Viewport2DVisual3D was the easiest to understand and use with my game design ...
1
vote
0answers
221 views
Setting a databound TextBox control's BorderStyle overrides the new Text value
I've found and was able to reproduce a peculiar behaviour in Windows Forms, in that updating the text in a databound textbox and then changing the borderstyle will override the new text value.
To ...
1
vote
0answers
348 views
VB.NET BindingSource in Module not Updating
I have a module in my project that I'm using as a sort of print Queue. I have an error list in it. I want the error list to be bindable so that when you open up the error console, new errors will flow ...
1
vote
0answers
65 views
Wpf Databinding MenuItem with XPath
My application uses a Menu with some MenuItems. Because of localization I would like to bind the Header property of the MenuItem to a node value in a xml file.
Here are the relevant parts of my ...
1
vote
0answers
138 views
Best way to display realtime queue data from database in grid
I have a client-server VB.NET/SQL2008 application which, among other things, keeps track of people who are waiting in a queue. The records for the queue are all updated via the application but they ...
1
vote
0answers
245 views
ObjectDataSource which returns a DataSet with two or more tables
I am writing my own ObjectDataSource SelectMethod as follows:
public class SomeDataprovider
{
[DataObjectMethod(DataObjectMethodType.Select)]
public DataSet GetData()
{
...
1
vote
0answers
125 views
Determining when all bindings for a BindingSource are complete
I am working with a Windows Forms application. I have a number of things that I need to do in the UI when the user navigates from one row to the next in a form. I would like to do these things once ...
1
vote
0answers
165 views
Custom UserControl binding in a Silverlight DataGrid template
I've been struggling with a solution to a problem.
I wanted to have the ability to enter a date AND a time and bind them to a single DateTime object in my ViewModel. I managed to create a custom ...
1
vote
0answers
57 views
Issue with databinding when the browser's window is minimized
Hi I have a problem with a data binded property.
I have a button with the enabled attribute binded to a boolean variable
<mx:Button id="btnSave" width="98" label="Sauvegarder" ...
1
vote
0answers
156 views
BindingSource And Composite Properties
I have a method that I call in a form that returns a List and then I throw that into a BindingSource and throw the BindingSource into a DataGridView. The Order class has a property called Items that ...
1
vote
0answers
59 views
Lightweight approach to Materialize Statically Typed Objects
I inherited an ASP.NET application with an SQL Server backend that initially passed DataSets around a lot. I've been refactoring the code for quite awhile so it's now mostly passing around statically ...
1
vote
0answers
68 views
ASP.NET feature similar to WPF/XAML ValueConverter?
I have a DataList that is bound against some very lightweight objects.
I'm writing the ItemTemplate for my objects and the first entry is simple enough:
<h2>'<%# Eval("Name") ...
1
vote
0answers
114 views
How to use querystring parameters in the databind section of ASP textbox in SPD 2007?
I'm currently trying to find a way to dynamically set a field in a "New Item" DataFormWebPart SPD 2007 ASPX page which writes to an XML file, via a querystring passed to the page.
Ideally, it would ...
1
vote
0answers
265 views
Grails data binding with command object
Could anyone explain to me how and which particular classes in grails does the data binding with command objects?
I am seeing some weird behavior in case of JSON post requests. For example, I have ...
1
vote
0answers
450 views
How to put GridView into edit mode while nested in two Repeaters?
I have a Gridview inside a Repeater inside another Repeater. The declarative code looks like this:
<asp:Repeater id="parentRepeater" runat="server">
<itemtemplate>
...
1
vote
0answers
289 views
How to edit a DataSet in a new Form?
I'm a beginner in .NET and C#, so I'm stuck with a problem that might be pretty simple to solve(?).
I'm having a Xml-File as DataSource. I managed to display that data in a DataGridView. On double ...
1
vote
0answers
377 views
Binding DataGrid column headers in Silverlight
I've seen quite a few unanswered posts on this topic, yet I'm still inclined to believe someone on here as figured this out and is holding out on the rest of us.
I have a DataGrid that contains a mix ...
1
vote
0answers
171 views
Ajax bound select (combo box) error (or list is empty depending on browser)
I took over a project (ASP.Net AJAX, JSON) where I have a page that loads a large select (combo box) list of 1,430 entries and loads without issue on our main (landing) search page.
Issue:
I get ...
1
vote
0answers
152 views
Binding to a Dictionary with an ObjectDataSource
Is it possible to perform a 2 way databinding using an ObjectDataSource that returns a Dictionary as it's Data Object?
It works on the read side with the following syntax for the binding
<%# ...
1
vote
0answers
1k views
Filter data with group by ; DataTable.select / Datatable row filter ;
I am reading data from multiples server in separate datasets and then merging it in a single dataset.
here is sample structure
server agent_code callsuccess calls failed
1 1 5 ...
1
vote
0answers
213 views
WPF DataGrid Operations
I'm currently working on a WPF project under VS2010 where I need to make some CRUD operations directly using a datagird, so I've found it easier to work on Binding WPF Controls to an Entity Data Model ...
1
vote
0answers
295 views
Binding to a Runtime Defined User Control's Dependency Property
I have noticed there are a lot of dependency property questions. I am hoping this is different enough that it's worth asking. I'm also willing to admit I may just be taking the wrong approach.
I am ...
1
vote
0answers
254 views
Binding to current datacontext with default values
iv'e got an image nested inside a button
<ListBox>
<ListBox.ItemsSource>
<Binding Path="Peers"></Binding>
...
1
vote
0answers
155 views
Adobe Livecycle — Is there a way to use the same binding more than once?
Version: 8.2.1.5161.566259
It seems that attempting to bind the same item from my Data View to more than one field...
For example, I have a collection of objects named "Customers". I have one part ...
1
vote
0answers
330 views
Why isn't my DataGridViewComboBoxColumn data-bound when I add it to the DataGridView?
I'm trying to add a bound DataGridViewComboBoxColumn to a bound DataGridView. My combobox column works in that the dropdown is filled out. However, changing the selected value doesn't update my ...
1
vote
0answers
115 views
Binding a Table to a Sub Property
There are a couple of answers out there for this already, but I have not been able to find anything conclusive. This is the jist of what I am trying to do:
EquityInstrument
public class ...
1
vote
0answers
361 views
php oci_bind_by_name float to numeric
I need to bind floating point number to OCI statement.
What I'm doing:
$price = 0.1
oci_bind_by_name($resource, 'price', $price);
In my Oracle DB 'price' is an argument of the stored procedure and ...
1
vote
0answers
259 views
Binding multiple progress bars
Referring to screenshot below, I have the following view and viewmodel setup to represent progress bar download. When I add more than 1 downloads to this collection of downloads, it seems that ...
1
vote
0answers
526 views
Custom Datagrid column header
I'm Trying to create a datagrid with custom column headers with images.
The problem is that the binding is not working properly.
<Window.Resources>
<DataTemplate x:Key="header">
...
1
vote
0answers
128 views
How to hyperlink to a bound CollectionViewSource SQL table columns where the selected row items contain local files
I am trying to hyperlink to a bound DataGridColumn called "DwgPDF" containing the locations of each respective row selection's local PDF file location, which I have placed in the project directory ...
1
vote
0answers
391 views
How do I Two-way Databind Textbox in Formview from Codebehind
How can I take this:
<asp:TextBox ID="Test" runat="server" Text='<%# Bind("Test") %>'>
And replicate the two-way binding behavior of the formview in the codebehind?
1
vote
0answers
226 views
Silverlight TargetNullValue binding for Brush dependency property
I have a reusable user control with a dependency property which sets the color of a rectangle. The property uses Brush as type.
The data binding works fine, however I would like to add a fallback and ...
1
vote
0answers
145 views
EF4.1 Combobox is databound to navigation properties of an entity, how to save the entity new navigation
Ok, I have a couple of DataBindingSources pointing to context.[DbSet name].Local.ToBindingList()
there's a datagridview bound to such bindingsource, I have 2 columns set to 2 more databindingsources, ...
1
vote
0answers
390 views
Using BindingGroups for Displaying Validation Errors
I have the following WPF user interface: A listview that is bound to a collection. There is a datatemplate that shows the particular data for each item in that collection. The data template uses a ...