active questions tagged databinding - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T11:17:43Zhttp://stackoverflow.com/feeds/tag/databindinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1877050/solution-for-filtering-all-instances-of-an-object0Solution for filtering all instances of an object?Carlo2009-12-09T21:34:16Z2009-12-10T10:37:18Z
<p>Hi. I'm wondering if I can do something like this with CollectionViewSource too. I have a DataTemplate that looks like this:</p>
<pre><code><DataTemplate DataType="{x:Type local:MyObject}">
<StackPanel Orientation="Horizontal">
<Grid>
<Image Source="Images\gear16.png" />
<Image Source="Images\disk.gif" HorizontalAlignment="Right" VerticalAlignment="Bottom"
Visibility="{Binding MyProp, Converter={StaticResource BooleanToVisibilityConverter}}" />
</Grid>
<TextBlock Margin="5,0,0,0" Text="{Binding Name}" VerticalAlignment="Center" />
</StackPanel>
</DataTemplate>
</code></pre>
<p>So of course, everything bound to that type of object takes that DataTemplate, or in other words, every object of type MyObject gets that datasource. Can I do something similar for CollectionViewSource? Make every object of type MyObject go through the filtering methods? </p>
<p>The problem is that I have several instances of this collection oF MyObject, and it will be very difficult to filter one by one (I think), and still handle updates to data and everything, so I'm wondering if there is a solution like this.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1876728/asp-net-control-vs-html-control-performance0ASP.Net Control vs HTML Control PerformanceMarco2009-12-09T20:39:32Z2009-12-10T08:02:21Z
<p>Hello</p>
<p>I have heard that we should avoid Default ASP.Net Controls, because they are heavy regarding Viewstate and etc...</p>
<p>So I was thinkink in using , , HTML tags whenever I want to only show information, and use the Eval function to insert server-side code in a href or src atribute.</p>
<p>But I have also heard that the Eval function is not the best performance solution, because it uses reflection to evaluate argument passed.</p>
<p>So I was planning in using explicit cast inside simple html tags.</p>
<p>Is this the best solution regarding performance? Do you have any other sugestion/opinion?</p>
http://stackoverflow.com/questions/1877101/wpf-binding-xml-list0WPF Binding XML ListChris 2009-12-09T21:41:13Z2009-12-10T07:00:30Z
<p>Hi</p>
<p>I want to bind the following XML to a couple of controls in WPF. </p>
<p>Each category name should bind to the items source of a combo box, then when a category is selected in the combo box I want to bind the list of Products from the selected category to a listview</p>
<p>Here is the XML:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Categories>
<Category Name="Category1">
<Products>
<Product Name="Product 1"/>
<Product Name="Product 2"/>
</Products>
</Category>
<Category Name="Category2">
<Products>
<Product Name="Product 1"/>
<Product Name="Product 2"/>
<Product Name="Product 3"/>
</Products>
</Category>
</Categories>
</code></pre>
<p>and so on..</p>
http://stackoverflow.com/questions/1859317/is-it-possiable-to-use-conditional-operator-in-combo-box-dataprovider-using-flex0is it possiable to use conditional operator in combo box dataprovider using flex?R.Vijayakumar2009-12-07T11:02:52Z2009-12-10T06:28:17Z
<p>In my Combo box i have to shows team names condition based . So i will try like</p>
<p><code>dataProvider="{usersXML.users.user.(id=10).name}"</code> but shows some errors . but if i tried </p>
<p><code>dataProvider="{usersXML.users.user.name}"</code> display all name . It's working .</p>
<p>How can i condition based to display the list . In combobox . Plz refer me . is it possiable to check array of id on the dataProvider ?</p>
http://stackoverflow.com/questions/1876719/how-do-you-know-to-use-container-dataitem-when-data-binding-in-asp-net-is-there1How do you know to use Container.DataItem when data binding in ASP.NET? Is there a reference?SkippyFire2009-12-09T20:37:58Z2009-12-09T20:56:32Z
<p>Is there a reference for data binding? I've seen a bunch of different ways to data bind things, but I've never found a reference. Is there one?</p>
<p>I know there are Bind and Eval, but when does Container.DataItem come into play? Are there other "hidden" objects and methods available? Or is Container.DataItem the object that is being used here?</p>
http://stackoverflow.com/questions/1875652/get-control-from-an-instantiated-datatemplate0Get control from an instantiated DataTemplate?Shimmy2009-12-09T17:53:09Z2009-12-09T20:05:50Z
<p></p>
<pre><code><Window.Resources>
<x:Array Type="{x:Type sys:String}" x:Key="Items">
<sys:String>Item 1</sys:String>
<sys:String>Item 2</sys:String>
</x:Array>
</Window.Resources>
<TabControl ItemsSource="{StaticResource Items}"
SelectionChanged="TabControl_SelectionChanged">
<TabControl.ContentTemplate>
<DataTemplate>
<Button Name="btnItem" Content="{Binding}" />
</DataTemplate>
</TabControl.ContentTemplate>
</TabControl>
</code></pre>
<p></p>
<p><hr></p>
<p>Here is how I am trying to get the button in code, none of the following examples seems to be working.</p>
<pre><code>Private Sub TabControl_SelectionChanged _
(sender As TabControl, e As SelectionChangedEventArgs)
Dim item = _
sender.ItemContainerGenerator.ContainerFromItemsender.Items.CurrentItem)
Dim dgItems = sender.FindName("btnItem")
Dim d = sender.ContentTemplate.FindName("btnItem", sender)
Dim dddd = sender.SelectedContentTemplate.FindName("btnItem", item)
End Sub
</code></pre>
http://stackoverflow.com/questions/1874845/asp-net-mvc-two-way-data-binding-of-model-to-radio-button-list-using-typed-model2ASP.NET MVC Two Way Data Binding of Model to Radio Button List using Typed Model. Jeremy 2009-12-09T15:56:09Z2009-12-09T18:35:43Z
<p>I have a mvc view made up of a matrix of radio buttons. Each row of radio buttons is in a group and represents a typed object from the model. Using the guidance of various blogs and postings I have successfully bound the posted form results to the typed model array in the controller action, however cannot seem to successfully reverse the effect and bind an existing model to the radio buttons while preserving their selected or unselected state.</p>
<p>My model contains a property called "AnswerValue" which is between 0 and 4 and should match up with the radiobutton names. I tried changing the index value to the model value "AnswerId" but in doing so the binding that was working no longer works (I believe the index must be zero based). Here's a few resources I have used so far this <a href="http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx" rel="nofollow">Post</a> and an <a href="http://www.hanselman.com/blog/ASPNETWireFormatForModelBindingToArraysListsCollectionsDictionaries.aspx" rel="nofollow">Article by Scott Hanselman</a> to get to where I am at now. </p>
<p>If anyone has any insight on how to perform this two way binding it would be much appreciated. </p>
<p>Thanks</p>
<p>My controller:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Save([Bind(Prefix = "SurveyAnswer")] SurveyAnswer[] responses, int SurveyID)
{
</code></pre>
<p>My View: </p>
<pre><code><%
int questionIndex = 0;
foreach (SurveyAnswer q in Model)
{
%>
<%=Html.Hidden("SurveyAnswer.Index", questionIndex)%>
<%=Html.Hidden("SurveyAnswer["+questionIndex+"].AnswerId", q.AnswerId) %>
<tr>
<td style='background-color: #aaaaaa;padding-left: 10px; padding-right: 10px;border-right: solid 1px #fffff;'><%= questionIndex+1 %></td>
<td style='text-align: right;'><%= q.Question.DisplayValue %></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "0", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue"})%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "1", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue" })%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "2", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue" })%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "3", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue"})%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "4", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue" })%></td>
</tr>
<%
questionIndex++;
}
%>
</code></pre>
http://stackoverflow.com/questions/1875277/inserting-a-new-object-into-l2s-table-and-databinding-to-it-prior-to-submitchange0Inserting a new object into L2S table and databinding to it prior to SubmitChanges() in WPFKieran Benton2009-12-09T16:57:46Z2009-12-09T16:57:46Z
<p>Hi,
I'm just getting started with Linq-to-SQL and data binding in WPF, most of which works like a dream so far!</p>
<p>I've got (what I though was) a common scenario:</p>
<p>a) Query list of records from a table via datacontext and bind to the current user control </p>
<pre><code>this.DataContext = db.ClientTypes;
</code></pre>
<p>b) Have the user see a bound ListView and some bound detail controls to make changes to the existing records, with a <code>db.SubmitChanges(ConflictMode.FailOnFirstConflict);</code> to push the changes back to the DB. No problem.</p>
<p>c) User wants to add a new record, so we:</p>
<pre><code>ClientType ct = new ClientType();
ct.Description = "<new client type>";
db.ClientTypes.InsertOnSubmit(ct);
</code></pre>
<p>However at this point I dont want to call <code>db.SubmitChanges</code> as I want the user to be able to update the properties of the object (and even back out of the operation entirely), but I want them to be able to see the new record in the bound ListView control. Thinking I just needed to re-run the query:</p>
<pre><code>ClientType ct = new ClientType();
ct.Description = "<new client type>";
db.ClientTypes.InsertOnSubmit(ct);
// Rebind the WPF list?
this.DataContext = db.ClientTypes;
listView1.SelectedItem = ct;
listView1.ScrollIntoView(ct);
</code></pre>
<p>However this doesn't work, the newly created record is not part of the returned list. I'm not sure if this is because of caching within L2S or if I'm just going about this the wrong way. Is there a better way to accomplish this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1873813/how-to-format-parse-number-as-percent-in-asp-gridview0How to Format/Parse number as Percent in asp GridViewMark Good2009-12-09T13:16:53Z2009-12-09T15:06:02Z
<p>I have a grid view with:</p>
<pre><code><asp:TemplateField HeaderText="Fuel 1 %" SortExpression="Fuel1PCT">
<EditItemTemplate>
<asp:TextBox ID="txtFuel1Pct" runat="server"
Text='<%# Bind("Fuel1PCT", "{0:P1}") %>'
Width="50px" ></asp:TextBox>
</EditItemTemplate>
</asp:TemplateField>
</code></pre>
<p>It displays "0.95" perfectly as "95.0 %", but "UpdateRow" fails when it tries to parse "95.0 %" to a number.</p>
<p>In windows forms grid, there is a Parse event that allows you to remove the "%" and divide by 100, and a Format event that allows you to format that displayed value as a percentage. </p>
<p>Is there anything similar in ASP.net?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1871534/csharp-net-3-5-windows-form-databinding-combobox-to-a-list0CSharp .NET 3.5 Windows Form DataBinding ComboBox to a List<>David S2009-12-09T04:09:20Z2009-12-09T04:12:59Z
<p>Hi there,</p>
<p>Ok, firstly I have the following code working.. although my question is this; should I code the combobox databinding like the following example, or is there an easier/more efficient way?</p>
<p>Firstly, I needed to manipulate the results back from the database to show a more descriptive meaning:</p>
<p>(I am using a basic class for the key/value pair)</p>
<pre><code>class WashBayDesc
{
public string Key { get; set; }
public string Text { get; set; }
}
</code></pre>
<p>Now I retrieve the data from a datareader and do the manipulation I need which then adds the results to a list item:</p>
<pre><code> var washbaydata = new List<WashBayDesc>();
// Read through the available cashboxes and populate a list/combobox
while (rdr.Read())
{
string sWashBayDesc = null;
string sWB = rdr["washbay"].ToString();
if (sWB.StartsWith("3"))
{
sWashBayDesc = "Bay " + sWB.Substring(1);
}
else
{
sWashBayDesc = "Auto " + sWB.Substring(1);
}
washbaydata.Add(new WashBayDesc { Key = sWB, Text = sWashBayDesc });
}
// Now bind the hashtable (with our bay selectors) to the dropdown
cmbCashBoxes.DataSource = washbaydata;
cmbCashBoxes.ValueMember = "Key";
cmbCashBoxes.DisplayMember = "Text";
</code></pre>
<p>So.. the idea is I can simply bind the ComboBox datasource to the washbaydata list object.. this works fine.</p>
<p>The next part is to retrieve the selected item value (i.e. not the textual description, but the value or key itself). This is the bit I think maybe doesn't quite look right, although again it works...</p>
<pre><code> WashBayDesc myRes = new WashBayDesc();
myRes = (WashBayDesc)cmbCashBoxes.SelectedItem;
string sWashBayCashBox = myRes.Key;
</code></pre>
<p>So the result is my string sWashBayCashBox has the selected key...</p>
<p>I guess it works, and that is fine, but is there an easier/more cleaner way?</p>
http://stackoverflow.com/questions/659949/data-bound-winforms-form-how-to-format-dates1Data-bound WinForms form - how to format dates?cdonner2009-03-18T20:25:09Z2009-12-09T03:26:22Z
<p>I have a form with a date value in a TextBox control. The form uses data binding with a BindingSource against a DataSet and a SQL 2005 CE database.
Where do I control the formatting of the date? Nowhere in the properties along the way did I see a possibility to strip out the time part, for instance.</p>
<p>I could of course do it in the database and pass a string instead of a DateTime, but that's workaround and not a solution.</p>
http://stackoverflow.com/questions/1868793/observablecollection-wrapper-to-cast-to-a-base-type1ObservableCollection wrapper to cast to a base type.Eric2009-12-08T18:08:26Z2009-12-08T21:04:10Z
<p>I have a class called <code>Client</code>, which is a subclass of <code>Configurable</code>. </p>
<p>I have an <code>ObservableCollection<Client></code> which I need to view as an <code>ObservableCollection<Configurable></code>. This will allow me to databind to the list from some general layout generation code. It must also allow me to clear the list, and to add items to the list. Of course, when adding items to the list it must do a runtime type check to verify the general item (<code>Configurable</code>) being added is of the appropriate type (<code>Client</code>).</p>
<p>I am imagining a class called something like <code>ObservableSurrogateCollection<T></code>. <code>T</code> is the general class (<code>Configurable</code>). You would construct it by handing it an <code>ObservableCollection<T2></code>, where <code>T2</code> is a subclass of <code>T</code>. You can databind to it, and all collection changed events on the wrapped list are correctly routed (both directions). </p>
<p>Does this exists? Is this not something I should be doing? I think I read that .NET 4.0 will support such a feature at the language level?</p>
<p>I have looked at these options:</p>
<ul>
<li><code>ReadOnlyObservableCollection<T></code>. This is really close. However, because it is read-only I can't add or clear the items. </li>
<li>A non-generic <code>ObservableCollection</code>. I can't seem to find this, if it exists. </li>
</ul>
<p>Thanks in advance for any help!</p>
http://stackoverflow.com/questions/1604508/critique-my-jaxb-object-wrapper0Critique my JAXB object wrapper.CaptainHastings2009-10-22T01:08:59Z2009-12-08T19:25:33Z
<p>Hello Ladies and Gents,</p>
<p>I have a question on wrapping a jaxb created class and would really like to hear your inputs.</p>
<p>My xsd looks a bit like:</p>
<pre><code><ComplexService>
<ComplexObject1>
<Element1></Element1>
<Parameter></Parameter>
</ComplexObject1>
<ComplexObject2>
<Element2> </Element2>
<Parameter> </Parameter>
</ComplexObject2>
...
<ComplexObject10>
<Element10> </Element10>
<Parameter> </Parameter>
</ComplexObjec10>
</code></pre>
<p></p>
<p>The class created after running the above xsd through xjc looks a bit like :</p>
<pre><code>public class ComplexService{
ComplexObject1 object1;
ComplexObject2 object2;
...
ComplexObject10 object10;
public static class ComplexObject1{
//Accessors and mutators on ComplexObject1
}
public static class ComplexObject2{
//Accessors and mutators on ComplexObject1
}
...
public static class ComplexObject10{
//Accessors and mutators on ComplexObject1
}
}
</code></pre>
<p>Now I want to create a wrapper around these CompleObjects as well the ComplexService class.</p>
<pre><code>public class WrappedComplexObject1{
private final ComplexObject1;
public WrappedComplexObject1(){
complexObject1 = new ComplexObject1();
}
//Delegate calls to the underlying ComplexObject1
public String getServiceName(){
return complexObject1.getServiceName();
}
}
</code></pre>
<p>My questions are these:</p>
<ol>
<li><p>Would the above way be the preferred way to wrap the class? My objectives are to not mess with the underlying classes created by xjc; to provide a better named api (Class as well as method names).</p></li>
<li><p>I also want to validate the data in these objects. Therefore I am thinking of using the
decorator pattern to further wrap WrappedComplexObject1. Would this be a recommended approach?</p></li>
<li><p>Lastly, the xsd contains the element "Parameter" which is structurally the same (just contains one value field). However, when xjc created the ComplexService class, for every ComplexObject a new Parameter class was created.</p></li>
</ol>
<p>Should I worry about just having one wrapper class for "Parameter" or should I simply create one Parameter wrapper classes per ComplexObject.</p>
<p>Any suggestions, ideas, code samples would be most helpful.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1783281/databound-listview-in-updatepanel0Databound Listview in UpdatePanelserbrech2009-11-23T14:01:00Z2009-12-08T18:23:30Z
<p>Hello</p>
<p>I am using a Listview in a usercontrol that I databind to a list of object in the page load event.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
BindListViews();
}
private void BindListViews()
{
MyListView.DataSource = IncludeExpressions;
MyListView.DataBind();
}
</code></pre>
<p>I need to handle inserting new items in the list.
To do that, I added an InsertItemTemplate with a button that has "Insert" as command argument.
I dont want to persist the data to the database until the user press the save button, at the bottom of the form.
So in the ItemCommand event, Here is my code: </p>
<pre><code> protected void Expression_ItemCommand(object sender, ListViewCommandEventArgs e)
{
var listView = (sender as ListView);
var expressions = GetExpressions(listView);
var newExpression = new Expression
{
CaseSensitive = ((CheckBox)e.Item.FindControl("CaseSensitiveCheckBox")).Checked,
SearchText = ((TextBox)e.Item.FindControl("SearchTextTextBox")).Text,
Scope = (Scope)Enum.Parse(typeof(Scope), ((DropDownList)e.Item.FindControl("ScopeDropDownList")).SelectedValue, true),
Type = (Type)Enum.Parse(typeof(Type), ((DropDownList)e.Item.FindControl("TypeDropDownList")).SelectedValue, true),
};
expressions.Add(newExpression);
listView.DataSource = expressions;
listView.DataBind();
UpdatePanelInclude.Update();
}
private List<Expression> GetExpressions(ListView lv)
{
var expressions = new List<Expression>();
foreach (var row in lv.Items)
{
var searchText = ((TextBox)row.FindControl("SearchTextTextBox")).Text;
...
expressions.Add(new Expression
{
CaseSensitive = caseSensitive,
Scope = scope,
Type = type,
SearchText = searchText
});
}
return expressions;
}
</code></pre>
<p>This works perfectly fine until I add an UpdatePanel around the listview.
When I add an updatepanel, the Expression_ItemCommand handler is hit only every 2 clicks, eventhough the page is post back every click.
While debugging, I can see that I do enter the Page_Load event of the page at each click on the Insert button, but it hits the Expression_ItemCommand only every 2 clicks. and reset the content of my listview when the ItemCommand is not hit.
I smell ViewState problems here, but I can't figure out how to fix it.</p>
<p>Here is what the markup looks like :</p>
<p>
</p>
<pre><code><asp:UpdatePanel ID="UpdatePanelInclude" UpdateMode="Conditional" ChildrenAsTriggers="true" runat="server">
<asp:ListView ID="MyListView" OnItemCommand="Expression_ItemCommand" OnItemInserting="ExpressionInserting" OnDataBinding="ListViewDataBinding" InsertItemPosition="LastItem" runat="server" ItemPlaceholderID="itemPlaceHolder">
</code></pre>
<p>
...
...
</p>
<p>Any Idea how to solve this?</p>
<p>Stéphane</p>
http://stackoverflow.com/questions/669060/binding-to-visible-property-datagridcolumn-in-wpf-datagrid0Binding to Visible property DataGridCOlumn in WPF DataGridmatt_randle2009-03-21T09:57:15Z2009-12-08T13:49:05Z
<p>Hi,</p>
<p>I cannot bind the Visible property of the WPF datagridtextcolumn to a boolean value.</p>
<p>My binding expression is,</p>
<pre><code>{Binding Path=DataContext.IsThisColumnVisible, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window},Converter={StaticResource vc}}
</code></pre>
<p>I have checked that the converter works (bool to the visibility enum) and is in scope.</p>
<p>If I use the same expression for the header of the column, the header displays 'false' as expected.</p>
<p>Visible is a dependency property so should be bindable.</p>
<p>Anyone see what Im doing wrong? Or has anyone else been able to bind to the visible property.</p>
<p>Regards,</p>
<p>Matt</p>
http://stackoverflow.com/questions/310805/wpf-binding-collection-to-combobox-and-selecting-an-item1WPF Binding Collection To ComboBox and Selecting an itemdriscadam2008-11-22T03:22:31Z2009-12-08T11:15:24Z
<p>I've been knocking my head against this for some time now. I'm not really sure why it isn't working. I'm still pretty new to this whole WPF business. </p>
<p>Here's my XAML for the combobox</p>
<pre><code> <ComboBox Width="200" SelectedValuePath="Type.FullName" SelectedItem="{Binding Path=Type}" Name="cmoBox" >
</ComboBox>
</code></pre>
<p>Here's what populates the ComboBox (myAssembly is a class I created with a list of possible types)</p>
<pre><code> cmoBox.ItemsSource = myAssembly.PossibleTypes;
</code></pre>
<p>I set the DataContext in a parent element of the ComboBox in the code behind like this:</p>
<pre><code>groupBox.DataContext = listBox.SelectedItem;
</code></pre>
<p>I want the binding to select the correct "possible type" from the combo box. It doesn't select anything. I have tried SelectedValue and SelectedItem. When I changed the DisplayMemberPath of the ComboBox to a different property it changed what was displayed so I know it's not completely broken. </p>
<p>Any ideas???</p>
http://stackoverflow.com/questions/1864878/wpf-why-isnt-validationrule-a-dependencyobject0WPF - Why isn't ValidationRule a DependencyObject?Taylor L2009-12-08T05:54:28Z2009-12-08T06:04:28Z
<p>Is there a technical reason why <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.validationrule.aspx" rel="nofollow"><code>ValidationRule</code></a> is not a <a href="http://msdn.microsoft.com/en-us/library/system.windows.dependencyobject.aspx" rel="nofollow"><code>DependencyObject</code></a>?</p>
http://stackoverflow.com/questions/1864432/wpf-how-to-set-datacontext-on-virtual-branch-of-logical-tree0WPF - How to set DataContext on virtual branch of logical tree?Taylor L2009-12-08T03:45:38Z2009-12-08T05:18:30Z
<p>How do I set the DataContext of "myElement" to the same DataContext as the user control in XAML? I have been able to do it in code-behind via <code>myElement.DataContext = this.DataContext</code> in the UserControl constructor, but I'm trying to understand how to do the same thing in XAML.</p>
<p>This is related to creating virtual branches to the logical tree (see this <a href="http://www.codeproject.com/KB/WPF/AttachingVirtualBranches.aspx" rel="nofollow">article</a>).</p>
<pre><code><UserControl ... DataContext="{Binding RelativeSource={RelativeSource self}}">
...
<TextBox Name="myTextBox">
<TextBox.Text>
<Binding Path="MySource" UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<base:StringEqualsRules>
<base:StringEqualRule.BoundElement>
<base:ValidationRuleElement
x:Name="myElement"
DataContext="???"
Value="{Binding MyProperty}" />
</base:StringEqualRule.BoundElement>
</base:StringEqualsRule>
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
...
</UserControl>
</code></pre>
http://stackoverflow.com/questions/1862238/wpf-workaround-for-validationrule-not-being-a-dependencyobject0WPF - Workaround for ValidationRule not being a DependencyObjectTaylor L2009-12-07T19:17:00Z2009-12-08T03:47:42Z
<p>What is the best solution for not being able to use data binding on a ValidationRule property since ValiationRule is not a DependencyObject?</p>
<p>Below is an example of what I would <strong><em>like</em></strong> to do. I want to be able to validate the text in the TextBox against some other DependencyProperty.</p>
<pre><code><TextBox Name="myTextBox">
<TextBox.Text>
<Binding Path="MySource" UpdateSourceTrigger="PropertyChanged">
<base:EqualsRule Target="{Binding MyTarget}" />
</Binding>
</TextBox.Text>
</TextBox>
</code></pre>
http://stackoverflow.com/questions/1862953/how-is-empty-string-collection-any-different-from-other-empty-collections-which0How is empty string collection any different from other empty collections, which don’t cause an exceptioncarewithl2009-12-07T21:19:11Z2009-12-08T02:43:57Z
<p>Hi</p>
<p><br></p>
<p>If <em>ObjectDataSource.SelectMethod = A</em> and if A() returns a single object of type O, then this object is wrapped in a one element IEnumerable collection and returned by the ODS.Select method</p>
<p>Thus, assuming <em>ODS.SelectMethod</em> points to method A(), then if A() returns a null , when called by ODS, this null is ( I assume ) wrapped into one element IEnumerable collection and no exception is thrown. Similarly, if <em>ODS.SelectMethod</em> points to method B(), which returns a list of objects, and if B() returns an empty collection when called by ODS, then no exception is thrown. </p>
<p>But if a method would instead return ( when called by <em>ODS.Select</em> ) an empty string collection (<em>string[]</em>), then I’d get exception “<em>The data source for GridView did not have any properties or attributes from which to generate columns</em>”. How is empty string collection any different from other empty collections, which don’t cause an exception?</p>
<p><br></p>
<p>Thanx </p>
http://stackoverflow.com/questions/1862584/bound-gridview-problem-jquery-resolution-in-unbind1Bound gridview problem; jquery resolution in unbind?MrDean2009-12-07T20:14:37Z2009-12-08T00:39:13Z
<p>Good evening all.</p>
<p>I have a bit of a puzzler for you.</p>
<p>On my page I have a cascading ddl (ddlBuyer), a textbox search (tbxProdAC) and a radio button list (radTopx). These, once populated, and a submit button clicked, produces a gridview populated with data. What I am trying to achieve is that the user can only select either the ddl, the textbox or the radiobutton list as a method for producing the gridview data.</p>
<p>I have achieved this, ish, by writing a bit of jquery syntax that essentially 'clears' the gridview and resets the different search methods, for example.</p>
<pre><code><code>
ddlBuyer.Attributes.Add("onclick",
"$('#tbxProdAC').val('');
$('#txtbxHowMany').val('');
$('#GridView1').remove();
$('#radTopx input').attr('checked',false);
$('#radProd').attr('checked', false);");
</code>
</code></pre>
<p>However, because this is occurring client side, the server side events (i.e. ddlBuyer_SelectedIndexChanged) are still being executed and subsequently, the data is being bound when I don't really want it to. i.e. if I select the radtopx button, click the button to produce the gridview (this occurring on a postback). </p>
<p><code></p>
<p>protected void btnSubmit_Click(object sender, EventArgs e)
{</p>
<pre><code> if (radTopx.SelectedValue == "" || txtbxHowMany.Text == "")
{
MessageBox.Show("Please Ensure that BOTH 'The Number of Products' and Appropriate material Is selected Before You Attempt To Run a TOP x Report", "Top x Error!!!",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
GridView1.DataSourceID = null;
}
else
{
int max = 0;
if (int.TryParse(txtbxHowMany.Text, out max))
{
GridView1.DataSource = this.GetMaterialData(Session["MemberKey"].ToString(), radTopx.SelectedItem.Value, "Primary", max);
GridView1.DataSourceID = String.Empty;
GridView1.DataBind();
}
}
</code></pre>
<p></code></p>
<p>I then click on ddlBuyer, the radTopx information is cleared but the gridview is retained as the following is fired:</p>
<p><code></p>
<p>rotected void ddlBuyer_SelectedIndexChanged(object sender, EventArgs e)
{
ORDataClassesDataContext dbII = new ORDataClassesDataContext();
var queryII = (from r in dbII.tblOnlineReportingFINALPRODUCTs
where r.UnitUserfield1 == ddlBuyer.SelectedValue
select new { UnitUserfield2 = r.UnitUserfield2 }).Distinct().OrderBy(r => r.UnitUserfield2);</p>
<pre><code> ddlSub.DataSource = queryII;
ddlSub.DataTextField = "UnitUserfield2";
ddlSub.DataValueField = "UnitUserfield2";
ddlSub.DataBind();
ddlSub.Items.Insert(0, "--Choose Sub Category--");
GridView1.DataSourceID = null;
</code></pre>
<p></code></p>
<p>Is there a way to 'unbind' the grid view through jquery so that when ddlBuyer is clicked, the gridview has released any data it may have previously held?</p>
<p>Apologies if this doesn't make sense, it is a bit difficult to describe succinctly and accurately. </p>
http://stackoverflow.com/questions/930350/how-to-refresh-a-wpf-datagrid1How to refresh a WPF DataGrid?KovBal2009-05-30T19:01:12Z2009-12-08T00:11:39Z
<p>I have a WPF DataGrid with some data. You can add rows through a separate window. The DataContext is the same, a LINQ-to-SQL object. Binding is also the same, I bind the "ItemsSource" property to a table.</p>
<p>In the other window, when the user clicks on "Save", I create a row programatically and add it using "InsertOnSubmit". After that I use the DataContext's "SubmitChanges" method.</p>
<p>My problem is that the DataGrid isn't updated. If I restart the application I can see the new row, so it's in the database, but I couldn't find a way to refresh the DataGrid.</p>
<p>So far I've tried to use "UpdateTarget" on the BindingExpression of the DataGrid, but it didn't help. I've also tried "dataGrid.Items.Refresh()" — same result. How can I fix this?</p>
http://stackoverflow.com/questions/1850649/gridview-datasourceid-with-multiple-datasources0Gridview DataSourceID with Multiple Datasources?patrickinmpls2009-12-05T00:57:13Z2009-12-07T18:44:33Z
<p>I would like to display clickable news headlines. But I'm having trouble pulling data from two datasources for a single GridView. I'm trying to do this DataSourceID="SqlDataSource1, SqlDataSource2" but that's not working. Thanks in advance.</p>
<pre><code><asp:GridView
ID="GridView1" runat="server"
AutoGenerateColumns="False"
DataSourceID="SqlDataSource1, SqlDataSource2"
>
<Columns>
<asp:HyperLinkField
DataTextField = "NewsHeadline"
DataNavigateUrlFields="NewsURL"
/>
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="
<%$ ConnectionStrings:ConnectionString1 %>"
ProviderName="<%$ ConnectionStrings:ConnectionString1.ProviderName %>"
SelectCommand="SELECT [NewsHeadline] FROM [NewsTable]">
</asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="
<%$ ConnectionStrings:ConnectionString1 %>"
ProviderName="<%$ ConnectionStrings:ConnectionString1.ProviderName %>"
SelectCommand="SELECT [NewsURL] FROM [NewsTable]">
</asp:SqlDataSource>
</code></pre>
http://stackoverflow.com/questions/1860204/bind-a-multi-dimensional-arraylist-to-a-gridview1Bind a multi-dimensional ArrayList to a GridviewNeil2009-12-07T14:09:38Z2009-12-07T14:45:08Z
<p>I have a DataGrid of seats available, each with a checkbox to be able to reserve the seat. In the button click event, if the CheckBox is clicked, I am adding the contents of the row to an ArrayList, then adding the ArrayList to a session before redirecting to the confirmation page:</p>
<pre><code>protected void Reserve_Click(object sender, EventArgs e)
{
{
ArrayList seatingArreaList = new ArrayList();
for (int i = 0; i < GridView1.Rows.Count; i++)
{
Guid SeatId = (Guid)GridView1.DataKeys[i][0];
CheckBox cbReserve = (CheckBox)GridView1.Rows[i].FindControl("cbReserve");
Label lblSection = (Label)GridView1.Rows[i].FindControl("lblSection");
Label lblRow = (Label)GridView1.Rows[i].FindControl("lblRow");
Label lblPrice = (Label)GridView1.Rows[i].FindControl("lblPrice");
if (cbReserve.Checked)
{
string tempRowInfo = lblSection.Text + "|" + lblRow.Text + "|" + lblPrice.Text;
seatingArreaList.Add(tempRowInfo);
}
}
// Add the selected seats to a session
Session["Seating"] = seatingArreaList;
}
Response.Redirect("Confirm.aspx?concertId=" + Request.QueryString["concertId"]);
}
</code></pre>
<p>On the confirmation page, Id like to split this array up and bind it to another gridview in their individual columns.</p>
<p>On the confirmation page, a session exists that has three columns separated with a pipe, I am struggling to split this up and bind it to a confirmation grid.</p>
<p>Please help!</p>
http://stackoverflow.com/questions/1859958/how-to-make-contentcontrol-listen-to-non-routed-event-inside-its-contenttemplate0How to make ContentControl listen to non-routed event inside its ContentTemplateSimpzon2009-12-07T13:23:38Z2009-12-07T14:29:48Z
<p>I have some reusable ContentControl, which acts as a pseudo-modal popup inside another view.
It is always there and only its visibility makes it appear or disappear.
When instantiated, within the ContentControl there will be a custom ContentTemplate, bound to some ViewModel and representing the content of the "modal popup".</p>
<pre><code><Dialogs:ModalDialog DialogHost="{Binding ElementName=layoutRoot, Mode=OneTime}"
Content="{Binding ViewModel.CurrentEditItem}"
IsShown="{Binding ViewModel.IsInEdit}">
<Dialogs:ModalDialog.ContentTemplate>
<DataTemplate>
<ItemEditor:ItemEditorView />
</DataTemplate>
</Dialogs:ModalDialog.ContentTemplate>
</Dialogs:ModalDialog>
</code></pre>
<p>Now I want to reach the following: the root of the ContentTemplate (here: ItemEditorView) should implement the following interface.</p>
<pre><code>public interface ICloseMe
{
event EventHandler<EventArgs> CloseMe;
}
</code></pre>
<p>Whenever the CloseMe-Event is fired, the surrounding ModalDialog should be "closed" by setting its VisibilityProperty to Hidden.</p>
<p>The view within the popup (here ItemEditorView) should not care, whether it is shown in a ModalDialog or another context, i.e. it should not even know that such class exists. This excludes a walk through the Logical or Visual tree.
It shall only fire the CloseMe-Event, when Cancel/Save-Buttons are pressed.</p>
<p>Further, the mechanism should not be implemented/configured in the view instantiating the ModalDialog, the view should be as dumb as possible.</p>
<p>Instead, the "outer" ModalDialog should do the active part and listen to the CloseMe-event.
How can I implement this in a rather clean, MVVM-compliant way and without introducing unnecessary dependencies? Is there any event, occuring after a ContentTemplate is initialized, s.t. the ModalDialog could then evaluate, if the root of it extends ICloseMe?</p>
http://stackoverflow.com/questions/1858682/is-there-a-good-examples-and-documentation-of-jface-databinding-framework-for-ecl1Is there a good examples and documentation of jface databinding framework for Eclipse 3.4?Svilen2009-12-07T08:46:03Z2009-12-07T13:54:18Z
<p>The official site is quite scarce and most of the examples are EMF- related and for Eclipse 3.5 But what if one uses 3.4 target Eclipse platform and does not use EMF.
I am specifically interested in Tree Viewer examples, but good example and documentation is always appreciated. </p>
http://stackoverflow.com/questions/1846464/databinding-of-datagridview-and-list-with-bindingsource1DataBinding of DataGridView and List<> with BindingSourcerdoubleui2009-12-04T11:45:08Z2009-12-07T12:07:53Z
<p>Hi,</p>
<p>I'm trying to figure out how data binding with <code>BindingSource</code> is supposed to work
I want a <code>DataGridView</code> to be populated with the content of a <code>List<></code> upon update of the list. </p>
<p>I can see the <code>List</code> grow and verify it's being filled when I check the debugger. I thought the <code>BindingSource</code> would fire an event when the <code>List</code> is changed. But none of the available is fired. How do I become notified when the underlying list is changed?</p>
<p>I follow the instructions and have the following test code:</p>
<pre><code> Data d;
BindingSource bs;
public Form1()
{
InitializeComponent();
bs = new BindingSource();
d = new Data();
}
private void Form1_Load(object sender, EventArgs e)
{
bs.DataSourceChanged += new EventHandler(bs_DataSourceChanged);
bs.ListChanged += new ListChangedEventHandler(bs_ListChanged);
bs.DataMemberChanged += new EventHandler(bs_DataMemberChanged);
bs.CurrentChanged += new EventHandler(bs_CurrentChanged);
bs.CurrentItemChanged += new EventHandler(bs_CurrentItemChanged);
bs.DataSource = d.list;
dataGridView1.DataSource = bs;
}
// ... all the handling methods caught with a break point in VS.
private void button1_Click(object sender, EventArgs e)
{
d.addOneItem();
}
</code></pre>
http://stackoverflow.com/questions/1824186/treeview-to-display-database-how0Treeview to display database - how ?HelloBD2009-12-01T05:33:12Z2009-12-07T07:34:52Z
<p><strong>Work on asp.net vs 05 C#.</strong>
I read many books on use of treeviews and they all display sitemaps.</p>
<p>However I want it to display my own database for other purpose - eg supervisor-sunordinates/reports relation.</p>
<p>Suppose my database is like this</p>
<pre><code>Supervisor,Staff
===============
Peter, Mary
Peter, Tom
Winnie, Victor
etc
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK_ChildTable_ParentTable]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[ChildTable] DROP CONSTRAINT FK_ChildTable_ParentTable
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ParentTable]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ParentTable]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ChildTable]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ChildTable]
GO
CREATE TABLE [dbo].[ParentTable] (
[ParentID] [int] NOT NULL ,
[ParentName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[ChildTable] (
[ParentID] [int] NOT NULL ,
[ChildName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
</code></pre>
<p>I have more than one supervisor ,I want Supervisor to be 1st level nodes then supervisor name and staff would under respective nodes of their supervisor show .When i click a supervisor name than show that page with out postback ,want to use the ajax ,when click staff then show that page with out postback.</p>
<pre><code>Supervisor //Parent node.Click on nothing will happen
Peter //Supservisor Name.Click on show Supervisor Peter Page.
Marry //Staff Name.Click on Show staff Marry Page.
Tom
Winnie //Supervisor Name
Victor
</code></pre>
<p>What are the codes to bind Treeview to this sqldatasource ?</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1858035/binding-a-dropdownlist-in-an-editable-gridview0Binding a DropDownList in an editable GridViewLiquidPT2009-12-07T05:44:56Z2009-12-07T05:44:56Z
<p>I thought I'd save myself some time by throwing down a GridView in an admin tool I was working on. This particular page is for editing Categories that “widgets” can then be assigned to. For organizational purposes, categories can (optionally) also be grouped (assigned to a CategoryGroup). There were already existing business logic and objects, so I decided to use an ObjectDataSource (rather than the SqlDataSource that I saw in many examples). It all seemed to come together pretty well, and I even put a DropDownList in the edit template to choose the CategoryGroup. </p>
<p>The problem is that the value of the dropdown doesn’t get passed in on the update. I’m sure I’m missing the simplest thing, but I’ve double-checked everything I can think of. OK, on to the code:</p>
<p>The Gridview:</p>
<pre><code><asp:GridView ID="GridView1" runat="server" DataSourceID="CategoryDataSource" DataKeyNames="Id"
AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None">
<RowStyle BackColor="#EFF3FB" />
<Columns>
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
<asp:BoundField DataField="Id" HeaderText="CategoryId" InsertVisible="false" ReadOnly="true"
Visible="false" />
<asp:BoundField DataField="Name" HeaderText="Name" ReadOnly="true" />
<asp:BoundField DataField="DisplayName" HeaderText="DisplayName" />
<asp:BoundField DataField="SiteName" HeaderText="Site" />
<asp:TemplateField HeaderText="Category Group">
<EditItemTemplate>
<asp:DropDownList ID="CategoryGroupId" runat="server" DataSourceID="CategoryGroupDataSource" DataTextField="Name" DataValueField="Id" SelectedValue='<%# Eval("CategoryGroupId") == null ? 0 : Eval("CategoryGroupId") %>'></asp:DropDownList>
</EditItemTemplate>
<ItemTemplate>
<asp:Label runat="server" Text='<%# Bind("CategoryGroupName") %>' ID="CategoryGroupName"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#2461BF" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
</code></pre>
<p>The DataSources:</p>
<pre><code><asp:ObjectDataSource ID="CategoryDataSource" runat="server" TypeName="Microsoft.Com.Forums.Web.Admin.CategoryManager"
SelectMethod="GetCategoryList" DeleteMethod="DeleteCategory" InsertMethod="AddCategory"
UpdateMethod="EditCategory">
<DeleteParameters>
<asp:Parameter Name="Id" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="Name" Type="String" />
<asp:Parameter Name="DisplayName" Type="String" />
<asp:Parameter Name="SiteName" Type="String" />
<asp:Parameter Name="CategoryGroupId" Type="Int32" />
</InsertParameters>
<UpdateParameters>
<asp:Parameter Name="Id" />
<asp:Parameter Name="DisplayName" Type="String" />
<asp:Parameter Name="SiteName" Type="String" />
<asp:Parameter Name="CategoryGroupId" Type="Int32" />
</UpdateParameters>
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="CategoryGroupDataSource" runat="server" TypeName="Microsoft.Com.Forums.Web.Admin.CategoryManager"
SelectMethod="GetCategoryGroupList"></asp:ObjectDataSource>
</code></pre>
<p>The Objects being bound:</p>
<pre><code>public class Category
{
public Guid Id { get; set; }
public string Name { get; set; }
public string DisplayName { get; set; }
public string SiteName { get; set; }
public int? CategoryGroupId { get; set; }
public string CategoryGroupName { get; set; }
}
public class CategoryGroup
{
public int Id { get; set; }
public string Name { get; set; }
public string DisplayName { get; set; }
public string SiteName { get; set; }
}
</code></pre>
<p>The signature of the Update Method:</p>
<pre><code>public static bool EditCategory(Guid Id, string DisplayName, string SiteName, int CategoryGroupId)
</code></pre>
<p>One thing I did try was to change the Id field in the CategoryGroup to CategoryGroupId to match the field being passed in. It wasn’t a long term fix, but didn’t work anyways.</p>
<p>What am I missing here?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1830726/monitoring-a-range-of-cells-inside-of-excel-2007-with-c-vsto2monitoring a range of cells inside of excel 2007 with C#/VSTODaniel Harvey2009-12-02T04:53:18Z2009-12-07T03:14:00Z
<p>I have a row in excel I'd like to translate into an ObserveableCollection in C# for binding/event purposes, so all accessor classes know they're getting the latest data from the source excel sheet. How would this be done?</p>
<p>Clarification: I'm using an excel add-in project, not a workbook project, so am not sure whether or not XMLMappedRange Controls are an option.</p>