active questions tagged binding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:13:14Z http://stackoverflow.com/feeds/tag/binding http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1849349/add-custom-function-to-yui-tabview 0 add custom function to YUI tabview Ben5e 2009-12-04T20:08:11Z 2009-12-07T07:49:36Z <p>I've come up with the following function to fill a need:</p> <pre><code>function getTabFromElementID(elementID){ //get all of the tabs from the tabViewObject var tabArray = this.get('tabs'); var foundTabObject = nil; tabArray.each(function(tabObject, index){ if(tabObject.get('element').id == elementID){ foundTabObject = tabObject throw $break; } }); return foundTabObject; } </code></pre> <p>I would like the ability to have this function available to any TabView objects we instantiate. I'm unsure how to do this as well as how to bind it to the TabView object. I'm thinking this is probably a pretty straight-forward and hopefully common thing to do, but I haven't yet figured out how to get it done. </p> <p>FYI - I am using YUI 2.x and not 3.x</p> http://stackoverflow.com/questions/1855513/how-to-bind-listboxitems-to-two-observablecollection 0 How To Bind ListBoxItems to two ObservableCollection Alex 2009-12-06T14:20:02Z 2009-12-06T14:20:02Z <p>Hello, everybody. My problem takes above one month of my time. Sorry for my English. I hope that i can explain the problem.</p> <p>I have a trouble while Binding ListView Control to two ObservableCollection. It's must be a simple thing, but I can't resolve it. My ListView has a Template like:</p> <pre><code>&lt;ListView Name="lstClients" DataContext="myObsCollectionClients" ItemContainerStyle="{StaticResource lstItemClientStyle}"&gt; &lt;ListView.View&gt; &lt;GridView AllowsColumnReorder="True" ColumnHeaderContainerStyle ="{StaticResource BlueBackground}" ColumnHeaderTemplate ="{StaticResource WrappedHeaderTemplate}"&gt; &lt;!-- 1 COLUMN --&gt; &lt;GridViewColumn Header="№ (ID)"&gt; &lt;GridViewColumn.CellTemplate &gt; &lt;DataTemplate&gt; &lt;Border &gt; &lt;TextBlock x:Name="tbOrderDate" Text="{Binding Path=ClientID}" /&gt; &lt;/Border&gt; &lt;/DataTemplate&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;!-- AND SO ON --&gt; </code></pre> <p>I have a two ObservableCollection objects created in code (they takes data from MySQL Database tables). Binding ListViewItems (TextBlocks) to one ObservableCollection of them is not a problem. But i want to display data from two tables in each rows . - How can I do this ? I was try to use CompositeCollection, wich packs two my ObservableCollection objects but it didn't work - i can't find good example how to using Compostecollection. I have no Data in StaticResource and MSDN example can't help me. Someone can help me? Thank for all your's suggestings!</p> http://stackoverflow.com/questions/1847187/wpf-combobox-behavior-weird 0 WPF Combobox behavior weird jerbersoft 2009-12-04T14:12:51Z 2009-12-06T04:11:44Z <p>Hi guys, I have 2 comboboxes which we will call cbo1 and cbo2. Now, there is a relationship between cbo1 and cbo2. when i select an item at cbo1, the cbo2 ItemsSource is updated (since it is bound to the SelectedItem) anyway, below is the sample XAML code for it.</p> <pre><code>&lt;ComboBox x:Name="cbo1" Grid.Row="0" Grid.Column="1" Margin="5" SelectedItem="{Binding Path=Brand}"&gt;&lt;/ComboBox&gt; &lt;ComboBox x:Name="cbo2" Grid.Row="1" Grid.Column="1" Margin="5" SelectedItem="{Binding Path=Model}" ItemsSource="{Binding ElementName=cbo1, Path=SelectedItem.Models}" DisplayMemberPath="Name"&gt;&lt;/ComboBox&gt; </code></pre> <p>the objects used are Brand and Model. Brand has a property named Models which contain a collection of Model objects ( typeof IList ). So basically, a one-many relationship between the 2 classes.</p> <p>By the way, those 2 classes are used in NHibernate. Now, when I run the app, cbo1 which contains a collection of Brand objects is loaded with the items first. When I select a Brand item, the cbo2 with the Model collection is populated. As you have noticed, both Comboboxes have SelectedItem property bound to the current object properties Brand and Model specifically. When I select a Model on the cbo2, it does not reflect to the current object's Model property. Anything i missed?</p> http://stackoverflow.com/questions/1820216/is-a-variable-binding-to-a-collection-item-possible 1 Is a variable binding to a collection item possible Jan 2009-11-30T14:42:16Z 2009-12-05T22:01:25Z <p>Hello everyone,</p> <p>I'm trying to bind to an item inside a collection but the index for that item needs to be "variable". Take the following pseudo syntax for example:</p> <pre><code>&lt;TextBlock Text="{Binding Fields[{Binding Pos}]}" /&gt; </code></pre> <p>Is something like this possible? If my property Pos is 1 it should bind to the first item out of the collection "Fields" and if my Pos is 3 it should bind to the third item in the collection. I simplified my problem to this situation...</p> <p>Is somethink like this doable and how? Thank you in advance. Jan</p> http://stackoverflow.com/questions/1175618/how-to-bind-selectionstart-property-of-text-box 2 How to bind SelectionStart Property of Text Box? Ivan 2009-07-24T03:31:41Z 2009-12-04T21:29:11Z <p>Hello. I use this:</p> <pre><code>&lt;TextBox x:Name="Test"/&gt; &lt;TextBlock Text="{Binding SelectionStart, ElementName=Test}"/&gt; </code></pre> <p>but it always shows 0.<br /> How can I treat it?<br /> Thank you.</p> http://stackoverflow.com/questions/1848320/how-to-bind-in-pdo-a-string-with 0 How to bind in PDO a string with % Itay Moav 2009-12-04T17:02:26Z 2009-12-04T17:57:22Z <p>I have the following query, (which don't work).<br> How do I bid strings inside an existing string with % (I believe the % is not the problem, but really not sure). </p> <pre><code>$sql="SELECT * FROM T WHERE f LIKE '%:bindParamString%'"; </code></pre> http://stackoverflow.com/questions/1848527/wpf-data-binding-bind-to-ui-control-from-a-template 0 WPF Data Binding - Bind to UI Control from a Template Vaccano 2009-12-04T17:40:14Z 2009-12-04T17:44:14Z <p>I have a template in my section. I want to bind the Width of one of the values in that template to the width of a control in my Main XAML section.</p> <p>Can this be done? Expression Blend only shows the Template in the Binding list.</p> <p>For example, this is what I am wanting to have work:</p> <pre><code>&lt;Windows.Resources&gt; ... My template stuff &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="20" /&gt; &lt;ColumnDefinition Width="50" /&gt; &lt;ColumnDefinition Width="{Binding ElementName=SecondColumn, Path=Width}"/&gt; &lt;ColumnDefinition Width="30" /&gt; &lt;/Grid.ColumnDefinitions&gt; ... More template stuff &lt;/Windwos.Resources&gt; &lt;Grid Name="MainGrid"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Name="FirstColumn" Width=".25*" /&gt; &lt;ColumnDefinition Name="SecondColumn" Width=".5*" /&gt; &lt;ColumnDefinition Name="ThirdColumn" Width=".25*" /&gt; &lt;/Grid.ColumnDefinitions&gt; ... Rest of my XAML </code></pre> http://stackoverflow.com/questions/1843515/dictionary-to-listview-twoway-binding-possible 2 Dictionary to ListView TwoWay binding - possible? Maciek 2009-12-03T22:39:00Z 2009-12-03T23:24:58Z <p>I'm attempting to bind a Dictionary to a ListView who's item template constist of a grid with 2 textboxes. Ideally I'd like to be able to modify both the key and the value of the KeyValuePair displayed in the ListView . Is that possible? </p> http://stackoverflow.com/questions/1838824/sqlitebindcharacter-how-to-bind-characters-in-sqlite 0 sqlite_bind_?(character) how to bind characters in sqlite? Madhup 2009-12-03T09:44:05Z 2009-12-03T09:59:26Z <p>Hi all,</p> <p>May be its a silly question but I am a bit confused in it, I want to bind a character into sqlite database (neither as varchar, nor as text but as character only)</p> <p>Hence we can not use</p> <pre><code>sqlite3_bind_text(insertStmt, 1, @"A", -1, SQLITE_TRANSIENT); </code></pre> <p>So should I use </p> <pre><code>sqlite_bind_int(insertStmt,1,65); </code></pre> <p>or there is a better way to do it?</p> http://stackoverflow.com/questions/1837296/datetime-binding-default-error-message-using-linq-to-sql 0 DateTime binding default error message using Linq to SQL Gremo 2009-12-03T02:37:37Z 2009-12-03T08:47:05Z <p>Hi, i'm using Linq to SQL for my model with a <strong>custom</strong> validation layer. I cannot find the way to edit or change the default message:</p> <blockquote> <p>The value '29/34/1980' is not valid for BirthDate.</p> </blockquote> <p>BirthDate is of course my textbox. Any ideas? Thanks</p> <p><strong>EDIT</strong>: this is the simple code i'm using:</p> <pre><code>&lt;%= Html.Label("Data di Nascita (GG/MM/AAAA)", "BirthDate")%&gt; &lt;%= Html.TextBox("BirthDate", Model.BirthDate) %&gt; &lt;%= Html.ValidationMessage("BirthDate", " *") %&gt; </code></pre> <p>and this is the validation code, that does not override the default message:</p> <pre><code>if (!(person.BirthDate &gt; DateTime.MinValue)) // Diverso dal default _validation.AddError("BirthDate", "Il campo 'Data di nascita' non è valido"); </code></pre> http://stackoverflow.com/questions/1837374/model-binding-and-display-trimmed-string-property 0 Model binding and display trimmed string property Gremo 2009-12-03T03:05:31Z 2009-12-03T06:18:24Z <p>My strongly typed View inherits from a "Person" object that is created with Linq to SQL. In my "Edit" View, i have to display of course old values:</p> <pre><code>&lt;%= Html.TextBox("FirstName") %&gt; </code></pre> <p>"FirstName" is NCHAR, so it need to be trimmed. So i ended up with:</p> <pre><code>&lt;%= Html.TextBox("FirstName", Model.FirstName.Trim()) %&gt; </code></pre> <p>and this works. But when form is submitted (after POST) and some errors occur, i need to show it again:</p> <pre><code>[AcceptVerbsAttribute(HttpVerbs.Post), Authorize(Roles = "office"), HandleError] public ActionResult Edit(Models.Person person) { if (!(_personService.ValidatePerson(person))) // Persona non valida { return View(person); } } </code></pre> <p>If for some reason the user left the textbox "FirstName" <strong>blank</strong>, the resulting property Person.FirstName become <strong>null</strong> and Model.FirstName.Trim() throws an Exception (Object reference not set to an instance of an object).</p> <p><em>Any way to modify the bind and have all string trimmed by default? Or any ideas to how fix this</em>?</p> <p><strong>Update:</strong> seems confirmed to be a MVC 2 behaviour.. still looking for a good way to handle this. Actually using an extension method:</p> <pre><code>public static string TrimOrDefault(this string value) { return value != null ? value.Trim() : string.Empty; } </code></pre> http://stackoverflow.com/questions/1828829/how-to-choose-a-wcf-binding 0 How to choose a WCF binding? Jader Dias 2009-12-01T20:51:45Z 2009-12-03T00:01:26Z <p>WCF binding chooser algorithm</p> <p>I have watched a speak at a TechEd conference that showed a simple algorithm for choosing a WCF binding. I can't find this algorithm but I remember some of the main ideas:</p> <ol> <li>If your WCF service will have non-.NET clients choose Http Soap</li> <li>If your WCF will have .NET clients in other machines choose Net Tcp</li> <li>If your WCF will have .NET clients in the same machine choose Message Queue</li> </ol> <p>Can anyone provide a link to the full version of this algorithm?</p> http://stackoverflow.com/questions/1835686/wpf-data-binding-data-template-is-not-getting-values 0 WPF Data Binding - Data Template is not Getting Values Vaccano 2009-12-02T20:45:40Z 2009-12-02T20:49:14Z <p>I have the following DataTemplate:</p> <pre><code>&lt;DataTemplate DataType="{x:Type Client:WorkItem}"&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition Width="200" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Label Name="lblIDText" Margin="2"&gt;WI ID:&lt;/Label&gt; &lt;Label Name="lblID" Margin="2" Grid.Column="1" Target="{Binding Id}"&gt;&lt;/Label&gt; &lt;Label Name="lblTitleText" Grid.Row="1" Margin="2"&gt;WI Title:&lt;/Label&gt; &lt;Label Name="lblTitle" Margin="2" Grid.Row="2" Grid.ColumnSpan="2" Target="{Binding Title}"&gt;&lt;/Label&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; </code></pre> <p>in my <code>&lt;Window.Resources&gt;</code> section. It is meant to show the Id and Title of a WorkItem object (from namespace <code>Microsoft.TeamFoundation.WorkItemTracking.Client</code>.)</p> <p>I try to put this in a <code>TabItem</code> in a <code>TabControl</code> and it only shows the static text. (The WorkItem ID and title do not show, but the static text in my template does.)</p> <p>Clearly the template is being fired, but the binding is not working and I can't seem to see why.</p> <p>Here is my C# that calls it:</p> <pre><code> private void PickWorkItem_Click(object sender, RoutedEventArgs e) { int Id = int.Parse(((Button) e.OriginalSource).Tag.ToString()); _mediator.PickedWorkItem = GetWorkItemInQueryResultListByID(Id); tabAddLinks.DataContext = _mediator.PickedWorkItem; tabAddLinks.Content = _mediator.PickedWorkItem; } </code></pre> <p>I tried it with DataContext in and out and it works the same. When I debug, the value for _mediator.PickedWorkItem is set correctly (Id and Title are both fine).</p> <p>Any ideas on how to fix this would be appreciated.</p> http://stackoverflow.com/questions/1828281/wpf-combobox-dropdown-using-placementtarget 0 WPF ComboBox DropDown using PlacementTarget Brad 2009-12-01T19:22:50Z 2009-12-02T18:38:35Z <p>I have a ContentControl comprised from left to right of a Button, partition and a ComboBox. I want the ComboBox dropdown to line up with the left side of the control as opposed to the left side of the combobox. I received a method in code but I was wondering whether if it could be accomplished in xaml.</p> <p>This gives me the name of the control:</p> <pre><code>ToolTip="{Binding Path=Name, RelativeSource={RelativeSource FindAncestor, AncestorLevel=2, AncestorType={x:Type Control}}}" </code></pre> <p>But I would like a reference to the control:</p> <pre><code>Placement="Bottom" PlacementTarget="{Binding ElementName=[Fancy-Smancy xaml goes here!]}" </code></pre> <p>Any thoughts?</p> <p>TIA</p> http://stackoverflow.com/questions/1833633/monotouch-objective-c-binding -2 monoTouch: objective-c binding monot 2009-12-02T15:29:23Z 2009-12-02T15:29:23Z <p>i´m trying to call methods written in objective-c from c# (using monodevelop)</p> <p>on monotouch.com under documentation -> "binding objective-c" is written how to make it, but i have no success.. :-(</p> <p>my question is: how can i call a method from a ".m"-file via c#</p> <p>do anyone have an idea? perhaps you can tell it step by step</p> <p>thank you in advance!! </p> http://stackoverflow.com/questions/1821528/setting-silverlight-datagrid-to-just-throw-an-exception-when-binding-field-does-n 0 Setting Silverlight DataGrid to just throw an exception when binding field does not exist David 2009-11-30T18:29:58Z 2009-12-02T12:47:34Z <p>I just <s>wasted</s> invested a good chunk of time trying to determine why a specific datagrid among many was showing shrunken rows with no text. After many trial and errors attempts to figure out what made this grid special, I finally found that the class used for the row items was marked private. </p> <p>That is a perfectly good reason, but I would have prefered to have been able to narrow it down to a binding issue (and if possible a "field is not accessable due to protection level" type message) much sooner then it took to sysmatically disassemble the entire convoluted process it took to get data into and configure that grid. Ideally I shouldn't have had to see the wrong behavoir in the first place, an error should have occured immediately when a column attempted to read from a field that it could not.</p> <p>All my datagrids inherit from a custom base class in order for some global standards to be applied - if there anything I can do in my CustomDataGrid class to cause an exception to be thrown whenever a columns binding expression fails, such as if the class/property is private or the property name has been mispelled in the binding expression? (This is different from binding validation).</p> http://stackoverflow.com/questions/1829758/wpf-binding-in-xaml-to-an-object-created-in-the-code-behind 1 WPF - Binding in XAML to an object created in the code behind Vaccano 2009-12-01T23:45:16Z 2009-12-02T09:09:59Z <p>Can an object created in the code (ie C#) be used for binding in the XAML?</p> <p>For example:</p> <pre><code>public class MyForm { private MyComplexObject complexObject; public MyForm() { InitializeComponent(); } public OnButtonClick(object sender, RoutedEventArgs e) { complexObject = new MyComplexObject(); } } </code></pre> <p><code>complexObject</code> is not created till a button is clicked. But once that button is clicked I would like to have a text box that is bound to <code>complexObject.ID</code> start showing the Id.</p> <p>I would like to do that in the XAML if that is possible.</p> <p>Can this be done? If so, how?</p> http://stackoverflow.com/questions/1830761/binding-a-datagridview-to-multiple-tables-in-dataviewmanager-or-dataset 0 Binding a DataGridView to multiple Tables in DataViewManager or DataSet Lijo 2009-12-02T05:03:39Z 2009-12-02T05:08:57Z <p>I have created three data tables by pulling data from an sql database. DT1, DT2, DT3. I have added these three tables to a data set, myDS. I have added relations between these three tables. I then dragged a DataGridView onto my form and I want to bind the three tables to the DataGridview. So I added my dataset DS to a dataview manager, myDVM. I bound myDVM to a bindingsource, bindingSource1, and made it the data source for the DataGridView. I am not sure how to bind the tables I want from myDVM / bindingSource1, to appear in the DataGridView.<br> i want to display the child tables related to the parent table using primary key in the same datagridview!!</p> <p>thanks in advance!!!</p> <p>help me plz!!!</p> http://stackoverflow.com/questions/1050737/wpf-change-a-buttons-content-in-a-style 1 WPF - Change a button's content in a style? Thrash505 2009-06-26T19:12:03Z 2009-12-01T22:09:44Z <p>I'm trying to do something similar to this:</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid&gt; &lt;Button&gt; &lt;Button.Style&gt; &lt;Style TargetType="{x:Type Button}"&gt; &lt;Setter Property="Content" Value="No mouse over" /&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="IsMouseOver" Value="True"&gt; &lt;Setter Property="Content"&gt; &lt;Setter.Value&gt; &lt;CheckBox Content="Mouse is over" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/Button.Style&gt; &lt;/Button&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>However, I get a run-time XamlParseException with a message of: </p> <blockquote> <p>Cannot add content of type 'System.Windows.Controls.CheckBox' to an object of type 'System.Object'. Error at object 'System.Windows.Controls.CheckBox</p> </blockquote> <p>I'm actually trying to draw different icons for the button's content depending on external conditions. So I'm actually trying to use a DataTrigger, but the example above simplifies the problem. Any ideas?</p> http://stackoverflow.com/questions/1820812/asp-net-mvc-binding-to-multiple-models 0 ASP.NET MVC: Binding to multiple models Frinavale 2009-11-30T16:22:33Z 2009-12-01T18:21:18Z <p>I'm playing with an ASP.NET MVC application and I've run into a bit of a problem. I am pretty new to ASP.NET MVC and just barely understand the basics to get things to work at this point.</p> <p>I have a PersonModel, a PersonController, and a bunch of views that let a user add a new person, edit a person and search for people.</p> <p>I am not using a DataBase in the back end. Everything I'm doing depends on an external DLL that returns "person" structures (that I turn into PersonModels).</p> <p>In order to search for people, I have to provide a person-structure that acts as search criteria to a method in the external DLL. The method returns a collection of person-structures that match the search criteria. If I want to retrieve all of the people in the system I supply an empty person-structure to the method.</p> <p>So, I have the "retrieve all people" function working.....but I'd like to provide an advanced search.</p> <p>My Search View is bound to a class that contains 2 properties:</p> <pre><code>Public Class PersonSearchModel Private _searchCriteria As PersonModel Private _searchResults As List(Of PersonModel) Public Property SearchCriteria As PersonModel Get return _searchCriteria End Get Set(ByVal value As PersonModel) _searchCriteria = value End Set End Property Public Property SearchResults As List(Of PersonModel) Get return _searchResults End Get Set(ByVal value As List(Of PersonModel)) _searchResults = value End Set End Property End Class </code></pre> <p>Now the Search View binds to this PersonSearchModel and I have 2 sections...a section where the user can provide search criteria and a section that displays the search results.</p> <p>I am having a problem binding the PersonSearchModel.SearchCriteria to the controls used to display/gather the Person search criteria.</p> <p>I cannot retrieve the search criteria.</p> <p>This what I have in my view for the search criteria:</p> <pre><code> &lt;fieldset&gt; &lt;legend&gt;Search Criteria&lt;/legend&gt; &lt;% With Model.SearchCriteria %&gt; &lt;div style="float:left"&gt; &lt;p&gt; &lt;label for="FirstName"&gt; FirstName:&lt;/label&gt; &lt;%=Html.TextBox("FirstName", Html.Encode(.FirstName))%&gt; &lt;%= Html.ValidationMessage("FirstName", "*") %&gt; &lt;/p&gt; &lt;p&gt; &lt;label for="LastName"&gt; LastName:&lt;/label&gt; &lt;%=Html.TextBox("LastName", Html.Encode(.LastName))%&gt; &lt;%= Html.ValidationMessage("LastName", "*") %&gt; &lt;/p&gt; &lt;!-- More controls --&gt; &lt;/div&gt; &lt;% End With%&gt; &lt;/fieldset&gt; &lt;%=Html.ActionLink("Search", "Search",Model.SearchCriteria)%&gt; &lt;!-- The Search Results Section--&gt; </code></pre> <p>The PersonModel passed into the Search method is a new/empty PersonModel Object. It does not contain the data that the user entered.</p> <p>What am I doing wrong here?</p> <p>-Frinny</p> http://stackoverflow.com/questions/1827404/declaring-list-and-binding-property-values-via-xaml-for-a-custom-silverlight-cont 1 Declaring list and binding property values via XAML for a custom silverlight control David 2009-12-01T16:41:14Z 2009-12-01T17:21:27Z <p>I feel like I've missed something obvious, but when creating a custom control in Silverlight I can declare properties as public and they will be exposed when making XAML declarations, so I can easily do something like this:</p> <pre><code>public class MyControl : UserControl { public string Title {get; set;} } </code></pre> <p>And this:</p> <pre><code>&lt;local:MyControl Title="Hello World" /&gt; </code></pre> <p>However properties are not always simple types, I may have a complex property, like a list that defines 1 or more columns and identifies a field to be bound to it. With existing controls the syntax for defining these values in XAML is straight forward:</p> <pre><code>&lt;local:MyControl Title="People List"&gt; &lt;local:MyControl.Columns&gt; &lt;local:MyControlColumn Heading="Column 1" Binding="{Binding Name}" /&gt; &lt;local:MyControlColumn Heading="Column 2" Binding="{Binding Age}" /&gt; &lt;/local:MyControl.Columns&gt; &lt;/local:MyControl&gt; </code></pre> <p>However I'm at a loss of how to make this work in the class definition:</p> <pre><code>public class MyControl : UserControl { public string Title {get; set;} public IEnumerable ItemSource {get; set;} public ObservableCollection&lt;MyControlColumn&gt; Columns {get; set;} // ? } public class MyControlColumn { public string Heading {get; set;} public ??? Binding {get; set;} // ? } </code></pre> <p>Can anyone point me in the right direction for making exposed list and binding properties?</p> http://stackoverflow.com/questions/1429802/wpf-mixing-bound-and-fixed-text-in-a-textbox 1 WPF Mixing Bound and Fixed text in a TextBox Mitch 2009-09-15T21:46:44Z 2009-12-01T14:34:10Z <p>I have the following code to display a clients age.</p> <pre><code>&lt;TextBox x:Name="txtClientAge" Text="{Binding Path=ClientAge}" /&gt; </code></pre> <p>However, instead of just displaying just the number, I want to prefix it with the text "Age " and suffix it with the text " yrs" so it is effectively becomes "Age 36 yrs"</p> <p>I can achieve this with a horizontal StackPanel and 3 Textboxes, but is there a much simpler method that I'm missing?</p> http://stackoverflow.com/questions/1824904/jquery-add-more-to-a-click-function 0 jquery add more to a click function kris 2009-12-01T09:03:58Z 2009-12-01T09:13:36Z <p>I have a function that is bound for a page object in some Javascript files that are loaded on each page.</p> <p>I need to add some more functionality to that already defined event handler. Here is an example of what i mean.</p> <p>The object with the currently defined click event closes a pop-up div that appears on the screen. When this is clicked (only on this certain page), i need it to reset some elements on the page.</p> <p>So, i can easily enough unbind the click event, and rebind a custom one, but it would be copying a lot of code from the original close event. </p> <p>If worse comes to worse, i can just do that, but i would like to avoid copying that code for this special case.</p> <p>Is there a way to, sort of, append more code on to a currently created event?</p> <p>thanks for any insight!</p> http://stackoverflow.com/questions/1751775/binding-redirect-problem-in-net 0 Binding redirect problem in .net Suresh 2009-11-17T21:05:47Z 2009-12-01T08:30:10Z <p>I have a class library called "MyAssembly" that is internally referencing a.dll, b.dll of version 3.1.1.0; I have build the project which outputed MyAssembly.dll. On a different system (box) I have created a web application project and referenced the MyAssembly.dll. the new system has new versions of a.dll and b.dll 4.0.0; I used binding redirect in web.config like below. But still unable to compile the web application. it says missing assembly reference a.dll, version 3.1.1.0.</p> <p>Could any body help in solving this issue?</p> <p>Thanks, Suresh</p> <p> </p> http://stackoverflow.com/questions/1497113/c-wpf-binding-combobox-itemsource-in-datagrid-to-element-outside-of-the-datacon 1 C#/WPF: Binding Combobox ItemSource in Datagrid to element outside of the DataContext Joseph Melettukunnel 2009-09-30T09:49:23Z 2009-11-30T21:44:15Z <p>Hello,</p> <p>I'd like to do following:</p> <pre><code>public List&lt;Users&gt; PreLoadedUserList { get; set; } public List&lt;RowEntries&gt; SomeDataRowList { get; set; } public class Users { public int Age { get; set; } public string Name { get; set; } } public class SomeDataRowList { public int UserAge { get; set; } </code></pre> <p>Now my (WPF Toolkit) DataGrid looks like this:</p> <pre><code>&lt;my:DataGrid AutoGenerateColumns="False" MinHeight="200" ItemsSource="{Binding Path=SomeDataRowList}"&gt; &lt;my:DataGridComboBoxColumn Header="Age" ItemsSource="{Binding Path=PreLoadedUserList}" DisplayMemberPath="Name" SelectedValueBinding="{Binding Path=UserAge}"/&gt; &lt;/my:DataGrid&gt; </code></pre> <p>Now my problem is, that PreLoadedUserList is outside of the ItemSource (SomeDataRowList) and I don't know how to bind to something outside of it. What I actually want it: - Display in the ComboBox PreLoadedUserList - Set the Value of (RowEntries) SelectedItem.UserAge to the Value of the selected ComboboxItem.Age</p> <p>Let me know if my explanation is too weird :-)</p> <p>Thank you, Cheers</p> http://stackoverflow.com/questions/1821165/asp-net-mvc-and-linq-to-entities-how-to-test-model-custom-binding 1 asp.net mvc and linq to entities: how to test model custom binding? chris 2009-11-30T17:25:09Z 2009-11-30T18:39:18Z <p>I'm trying to build a test for my custom model binder, but not having any success. The call to base.BindModel always returns a null. Is there a way to test custom binding when using LINQ to Entities? foo in this case is a table in the db with two fields - a numeric and a text value.</p> <p>fooBinder.cs:</p> <pre><code>public override Object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { var obj = (foo)base.BindModel(controllerContext, bindingContext); return obj; } </code></pre> <p>I'm trying to do a simple test (there's some extra debris in here, I've tried a number of different approaches):</p> <p>fooBinderTest.cs:</p> <pre><code>fooBinder binder; ControllerContext controllerContext; ModelBindingContext bindingContext; [TestInitialize] public void Initialize() { controllerContext = MockControllerContext().Object; FormCollection form = new FormCollection { {"foo_A","2" }, {"foo_B", "FooB" } }; var valueProvider = form.ToValueProvider(); bindingContext = new ModelBindingContext() { ModelState = new ModelStateDictionary(), ModelType = typeof(foo), ModelName = "foo", ValueProvider = valueProvider }; binder = new fooBinder(); } public static Mock&lt;ControllerContext&gt; MockControllerContext() { var context = new Mock&lt;ControllerContext&gt;(); var sessionState = new Mock&lt;HttpSessionStateBase&gt;(); var response = new Mock&lt;HttpResponseBase&gt;(); var request = new Mock&lt;HttpRequestBase&gt;(); var serverUtility = new Mock&lt;HttpServerUtilityBase&gt;(); var form = new FormCollection { {"foo_A","2" }, {"foo_B", "FooB" } }; context.Setup(c =&gt; c.HttpContext.Session).Returns(sessionState.Object); context.Setup(c =&gt; c.HttpContext.Response).Returns(response.Object); context.Setup(c =&gt; c.HttpContext.Request).Returns(request.Object); context.Setup(c =&gt; c.HttpContext.Server).Returns(serverUtility.Object); context.Setup(c =&gt; c.HttpContext.User.Identity.Name).Returns("Test"); context.Setup(c =&gt; c.HttpContext.Request.Form).Returns(form); return context; } [TestMethod] public void TestDefault() { foo myFoo = (foo)binder.BindModel(controllerContext, bindingContext); Assert.IsNotNull(myFoo); } </code></pre> http://stackoverflow.com/questions/1820169/launch-my-app-using-email-attachement 0 Launch my app using email attachement Big Papoo 2009-11-30T14:34:36Z 2009-11-30T18:14:28Z <p>Hi,</p> <p>I want to bind my app to some file extension so when I receive an email with an attached file with the correct extension, clicking on it will launch my app and pass it the attached file. Is it possible ? How ? Thx</p> <p>--G.</p> http://stackoverflow.com/questions/1818033/depedencyproperty-within-a-markupextension 0 DepedencyProperty within a MarkupExtension Andrew Keith 2009-11-30T05:50:50Z 2009-11-30T08:16:50Z <p>Is it possible to have a DependencyProperty within a MarkupExtension derived class ?</p> <pre><code>public class GeometryQueryExtension : MarkupExtension { public XmlDataProvider Source { get; set; } public string XPath { get; set; } public static readonly DependencyProperty ArgumentProperty = DependencyProperty.RegisterAttached( "Argument", typeof(string), typeof(GeometryQueryExtension)); // this wont work because GeometryQueryExtension is not a DependencyProperty public string Argument { get { return (string)GetValue(ArgumentProperty); // this wont even compile because GeometryQueryExtension doesnt derive from a class which has GetValue } set { SetValue(ArgumentProperty,value);// this wont even compile because GeometryQueryExtension doesnt derive from a class which has SetValue } } } </code></pre> <p>The extension is used in the following snippet.</p> <pre><code> &lt;Label.Content&gt; &lt;local:GeometryQueryExtension Source="{StaticResource shapesDS}"&gt; &lt;local:GeometryQueryExtension.XPath&gt;/Shapes/Geometry/{0}&lt;/local:GeometryQueryExtension.XPath&gt; &lt;local:GeometryQueryExtension.Argument&gt; &lt;Binding XPath="Geometry"/&gt; &lt;!-- will throw exception when processing this bind --&gt; &lt;/local:GeometryQueryExtension.Argument&gt; &lt;/local:GeometryQueryExtension&gt; &lt;/Label.Content&gt; </code></pre> <p>Is it even possible to build such an extension or am i just barking up the wrong tree ? (the code above wont compile and run, but i posted it here to best illustrate the problem).</p> http://stackoverflow.com/questions/1817238/restful-wcf-webhttpbinding-in-iis-breaks-after-adding-https-binding 1 Restful WCF (webhttpbinding) in IIS breaks after adding https binding Simon Fox 2009-11-30T00:07:48Z 2009-11-30T00:38:35Z <p>I have a WCF service hosted in IIS (7.0) which implements multiple service contracts and therefore defines multiple endpoints (one for each contract). It has been working fine but I have just added an https binding to the IIS web application and I am now getting an activation exception specifying that the service implements multiple contracts but no endpoints are defined in configuration when they actually are. I found <a href="http://www.keithelder.net/blog/archive/2008/04/28/Configuring-WCF-and-IIS-7-With-HTTP-Bindings-and-Multiple.aspx" rel="nofollow">this</a> article which solves a similar problem caused by adding host names to IIS, but it doesn't seem to help my situation.</p> <p>Here is a snippet of my configuration which is relevant:</p> <pre><code>&lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true"&gt; &lt;baseAddressPrefixFilters&gt; &lt;add prefix="http://localhost/CDC.WebPortal.MidTierAccessService/"/&gt; &lt;/baseAddressPrefixFilters&gt; &lt;/serviceHostingEnvironment&gt; &lt;services&gt; &lt;service name="CDC.WebPortal.MidTier.MidTierAccessService" behaviorConfiguration="MidTierServiceBehaviour" &gt; &lt;endpoint address="http://localhost/CDC.WebPortal.MidTierAccessService/MidTierAccessService.svc" binding="webHttpBinding" bindingName="RestBindingConfiguration" contract="CDC.WebPortal.ServiceContract.IProductService"/&gt; &lt;endpoint address="http://localhost/CDC.WebPortal.MidTierAccessService/MidTierAccessService.svc/Category" binding="webHttpBinding" bindingName="RestBindingConfiguration" contract="CDC.WebPortal.ServiceContract.ICategoryService"/&gt; &lt;endpoint address="http://localhost/CDC.WebPortal.MidTierAccessService/MidTierAccessService.svc/Account" binding="webHttpBinding" bindingName="RestBindingConfiguration" contract="CDC.WebPortal.ServiceContract.IAccountService"/&gt; &lt;endpoint address="http://localhost/CDC.WebPortal.MidTierAccessService/MidTierAccessService.svc/Order" binding="webHttpBinding" bindingName="RestBindingConfiguration" contract="CDC.WebPortal.ServiceContract.IOrderService"/&gt; &lt;endpoint address="http://localhost/CDC.WebPortal.MidTierAccessService/MidTierAccessService.svc/mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;/service&gt; &lt;/services&gt; </code></pre> <p>Any suggestions are appreciated.</p> http://stackoverflow.com/questions/1816975/can-you-load-a-new-page-into-a-jquery-ui-dialog-with-asp-net-mvc 0 can you load a new page into a jquery ui dialog with asp.net mvc oo 2009-11-29T22:19:10Z 2009-11-29T23:31:29Z <p>i have a regular html Grid and i am binding my asp.net mvc view to a strongly typed array called <strong>MyObject[]</strong>. MyObject has 40 properties but i only populate 10 of them because that is what is shown on the main grid. this is in the index view.</p> <p>i want to add a column to my grid to have a link that says <strong>"Edit Details"</strong>. this would bring up jquery ui dialog with a form to fill out and allow the user to edit the details. i basically want to show my whole edit view inside the jquery ui dialog on top of the index page.</p> <p>the one issue that i have is there is a lot more data in the details screen than i have brought down from the server. This was fine when Edit was a seperate page because i went back to the server and populated all the detail data and then did the binding the the edit page but i obviously can't do that now. </p> <p>So, is there anyway to rebind to a particular <strong>MyObject</strong> that I repopulate from the server or do i have to bring everything down at first and use jquery to populate these fields when i click on the row. </p>