Tagged Questions
The databind tag has no wiki summary.
11
votes
4answers
6k views
WPF Bind to class member in code behind
Pretty simple question, but can't seem to find a complete answer on here...
I need to databind in xaml to a property of a class member in codebehind.
<Window x:Class="Main">
...
3
votes
1answer
34 views
is there a set of interfaces you can implement to avoid having a Converter in WPF binding
I have 2 classes, DateTime (the framework class) and FriendlyDateTime (somethign that implements I notify property changed.
the class
using System;
using System.Collections.Generic;
using ...
3
votes
4answers
175 views
C#.net Populate a datagrid from the result of a .bat file
I have created a .bat file that displays all the users logged in Windows Terminal Services.
I can execute the .bat file in my c# code behind and display the results in plain text in a label or text ...
3
votes
2answers
4k views
ASP.NET GridView.DataBind not refreshing the GridView
To start I am using a MultiView control to step users through searching. The first page in the MultiView is just a search box with a button to preform the search.
The second page has the GridView, ...
2
votes
4answers
79 views
how rebind a repeater (inside master page) from content page?
Is it possible to rebind a repeater (inside master page) from content page?
My pages are base on master and content pages and I have some links (anchors) for download files!
After click on those ...
2
votes
1answer
89 views
Dynamic GridView AllowPaging returns error on DataBind
I've added a GridView to a PlaceHolder on my web page, and am setting it's datasource to a linq query. The trouble is that when control runs though gv.DataBind(); it'll blast on my face returning an ...
2
votes
4answers
108 views
Using a SQL #tempdb to databind() to ListBox
I am creating a webpage in which I have a series of pairs ListBoxes. In each pair there is a source (containing many options) in which you can then select an option (or multiple) and add it to the ...
2
votes
4answers
486 views
How to read all textbox values(Map to database fileds) and store them in Database in WPF - MVVM
I am new to WPF and MVVM. After a long invention i got to know how to retrieve data from database and bind it to a itemcontrol/listview/gridview.
But my problem i am not getting how to read bunch of ...
2
votes
1answer
84 views
Silverlight databind int to lookless control not working
I am working a very simple lookless control, and I can't seem to get one of the template bindings to work. In the control I have two Dependency Properties, the one that is a string works, and the one ...
2
votes
1answer
143 views
What is alternative of ASP.NET DataBind() in WPF?
I'm ad ASP.NET developer but recently develop WPF applications too. In ASP.NET whenever I needed to refresh data in a GridView I just call DataBind(). But what is alternative of it in WPF? As a ...
2
votes
1answer
153 views
Databind to object parameter that has one or more optional parameters
I have an object, called 'PERSON'
This person object has a title, firstName & Surname property as well as many other which are at the moment irrelevant. It also has a read only property called ...
2
votes
3answers
275 views
jQuery how to Bind on a data bind?
<div id="conversations-uCount">0</div>
<script type="text/javascript">
$(document).ready(function() {
$('#conversations-uCount').data('UnreadIDs', '1');
});
</script>
How ...
2
votes
4answers
1k views
ObservableCollection tutorial?
Will anyone direct me to some simple, graphical tutorial on how to use ObservableCollection. I went through msdn but I don't seem to understand them. I can't seem to find better ones on google ...
2
votes
1answer
129 views
DataBinding to classes
Possible Duplicate:
Binding GridView to Objects
My C# app contains a Data Object like this:
public class Data
{
public class a {get;set;}
public class b {get;set;}
}
public class ...
2
votes
1answer
281 views
Can we bind dynamic data (dataset or list) to a control in WPF
I have a user control...and the base page(s) which uses this user control has a dataset which will be used by the user control.
My dataset is dynamic...means..it can have different number of columns ...
2
votes
1answer
2k views
How to use databind records in inline if statements
here is my problem:
I've got a repeater on my asp.net (VB):
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# ...
2
votes
1answer
236 views
WPF - Attach Binding Debugging when Binding is not in a string
Debugging a binding when it is like this
IsChecked="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type ListBoxItem}}, Mode=TwoWay, Path=IsSelected}"
is easy. ...
2
votes
2answers
5k views
DataBinding Eval To 2 Decimal Place Doesn't Show 0
Platform: C# ASP.NET 3.5
I have a ListView which builds a Rate field which is decimal, if I simply have <% #Eval("Rate") %> it shows 4.5000 rather than 4.5 if I use <% #Eval("Rate","{0:#.##}") ...
2
votes
3answers
2k views
Why does ObservableCollection hide INotifyPropertyChanged.PropertyChanged
I have a class that derives from ObservableCollection. I wanted to add some properties to this class (not the items in the collection) but have discovered that its implementation of PropertyChanged is ...
2
votes
2answers
12k views
Add New Row to GridView without DataBind
I have a GridView that allows editing the values in every column, in every row, all the time. The user enters in all their changes, clicks Save once and all changes are commited.
The user must also ...
1
vote
2answers
76 views
knockoutjs if binding problems
The if binding doesn't seem to be working for me. Here is my template:
<div>
<span data-bind="text: name"></span>
<div data-bind="if: false ">+<span ...
1
vote
2answers
68 views
Updating bindings on properties that are automatically calculated
I have 3 textbox's in WPF bound to three properties of my business object. The texboxes allow the user to enter three different lengths.
I then have a number of textblocks bound to other properties ...
1
vote
1answer
72 views
ListItem's value gets replaced by the text on DataBind
I'm at a bit of a loss on this one and haven't been able to find anything helpful in my searches so I'm hopeful someone can help me out here.
I've got a RadioButtonList that I'm adding a List of ...
1
vote
2answers
174 views
inline code on server control properties
I have a public POCO property (SiteDetail) on my page and I need to know what's the best approach when setting properties of server controls:
Use inline code and Page.DataBind(); on load
...
1
vote
2answers
98 views
DataBind() within Parallel.Invoke failing due to Stack Empty. Error
I am not sure why this error is happening intermittently. I have a UserControl that is being data bound in parallel. The code works 90% of the time but every so often the databind will fail and will ...
1
vote
6answers
544 views
How to set selected value to Combobox?
I use combobox in c# windows form . I bound the item list as below
var employmentStatus = new BindingList<KeyValuePair<string, string>>();
employmentStatus.Add(new ...
1
vote
2answers
351 views
WPF slow when TabControl bound to ViewModels
I have TabControl bound directly to IEnumerable<ViewModelBase> (different ViewModels), rendered using DataTemplates. BUT when switching Tabs, one can se that TabItems are completely redrawed and ...
1
vote
2answers
240 views
DataBinding - Silverlight with XAML and WCF - fundamentals
I have setup simple scenario to learn about databinding in XAML. After some thinking I concluded that's going to be essential as my project progress, so I wanted to learn some basics and understanrd ...
1
vote
0answers
128 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
1answer
221 views
How to create a list of links in c#?
I'm trying to create a simple hyperlink list with a RepeaterItem (I'm not particular to a RepeaterItem, so if there are better ways...).
I'm pretty much using the code from the MSDN documentation ...
1
vote
1answer
231 views
Page.DataBind() conflict
I have master web page and html code which publish string from the AddThis class.
MainMasterPage.master
<div class="add-this">
<%# AddThis.Publish %> ...
1
vote
2answers
443 views
How to bind to the sum of two data bound values in WPF?
I have designed an analog clock control. It uses the stroke from two ellipses to represent an outer border and an inner border to the clock face.
I have exposed properties in the UserControl that ...
1
vote
2answers
646 views
gridview rowdatabound event in winforms?
in asp.net we can handle the RowDataBound event of the GridView control. this event fires when every row is added to the gridview.
i want to be able to handle this event in the gridview in a ...
1
vote
4answers
394 views
WPF: Accessing databound data in code behind each time the binding source is updated?
Is there a way to get code behind access to databound data each time it updates? I have seen the static ValidateValueCallback delegate that can be hooked into a DependencyProperty, but that's static ...
1
vote
2answers
735 views
TextBox - binding property doesn't refresh itself
Hi
I have a textbox which Text property is bound like that
<TextBox Name="txtBox">
<TextBox.Text>
<Binding Path="Data">
</Binding>
...
1
vote
1answer
310 views
rebind my dataGridView
Hello My Project include dataGridView Control, and i change the property: gridview1.columns.DataPropertyName at run time Now, i need rebind my gridView, how i do this. in asp.net is simple ...
1
vote
1answer
246 views
Can i bind an the datasource Index in a repeater/grid
I have a repeater.. and in my repeater i have a link that fires some JS.
I would like to pass the itemIndex of the datasource in the JS.
Is there some way to do this without using OnItemBound or ...
1
vote
1answer
120 views
Presenting collection of structures of strings in grid or similar in WPF - Example? Ideas?
I have a collection of structures. The structure is just some strings.
Example
public struct ReportLine
{
public string Name;
public string Address;
public string Phone;
...// about 10 ...
1
vote
1answer
859 views
Binding a WPF ComboBox to a different ItemsSource within a ListBox DataTemplate
I have a ListBox that contains a textbox and a combobox in its datatemplate:
<ListBox Height="147" Margin="158,29,170,0" Name="PitcherListBox" VerticalAlignment="Top" ItemsSource="{Binding ...
1
vote
0answers
592 views
Databinding in inner .ascx control and FormView
I have ascx control inside FormView. What I would like is use syntax Bind inside ascx.
Here is my page:
<asp:ObjectDataSource runat="server" ID="ods" TypeName="MyDS" SelectMethod="Get" ...
1
vote
1answer
237 views
how to extend wpf combo box to bind data?
i need to bind a collection of objects to a combo box which i can use in different forms. so i want create a custom control which binds the collection to the combo box? how t do it by extending combo ...
1
vote
0answers
45 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
1answer
135 views
C# WPF Databinding to Unkown Amount of Checkboxes
In my application I generate CheckBoxes for each possible category (retrieved from a database) and the user can check any number that apply. I name the checkboxes "cbCategory[ID]" where ID is the ID ...
1
vote
2answers
2k views
Creating a DataTable object with dummy data
I am trying to databind a DataTable to an accordion and I have found that If I retrieve the DataTable from a database using a table adapter it binds to the accordion perfectly however what I want to ...
1
vote
3answers
5k views
Can I create a RDLC and databind a table at run time without creating dataset in design time?
Just wondering if it's possible to databind a RDLC's table at run time.
I've created a report, put a table control, but VS compiler says it's necessary to set a dataset.
But I wanted to load data ...
0
votes
2answers
71 views
ASP.NET Data Binding from CodeBehind
I am writing an asp.net program for creating reservations in which I have a listview control connected to an SQL database. The user enters most of the information to be sent to the database (name, ...
0
votes
1answer
16 views
Databind formatted data from gridview to new gridview
I have a datatable in Gridview1 and have formatted it by adding several new rows in the datatable, I want to push this data to another table to also include the blank rows as part of the data. How ...
0
votes
1answer
110 views
Databind Grid LINQ Asynchronous ASP.NET C#
I have a page loading a bit slow, and because of that I want to load the data in the gridview AFTER the page is done loading.
I would like to, keep using my LinqDataSource1_Selecting - since I get ...
0
votes
0answers
18 views
DataBind before Postback?
Picture this:
An UpdatePanel with three cascading dropdowns that are used to populate a GridView (which is outside the UpdatePanel and called MasterDisplay). MasterDisplay has an editable field. If ...
0
votes
2answers
77 views
How to bind an MVC3 view to a SelectList that is created from an IEnumerable<MyCustomType>
When I try to bind in an MVC 3 view (using an @Html.DropDownList helper) to a select list based on an IEnumerable< X >, where X is a custom class I created rather than a framework class, I get the ...