Binding is the process that establishes a connection between the application UI and business logic. Elements can be bound to data from a variety of data sources in the form of common language runtime (CLR) objects and XML. If the binding has the correct settings and the data provides the proper ...
0
votes
0answers
8 views
Adding/delegating/binding a change event to Chosen plugin?
I am using a plugin for my selectors. It is called Chosen. I am trying to add a listener to any of the following but I feel that the plugin is preventing anything from happening. Ideally I wanted to ...
0
votes
4answers
32 views
jQuery binding : function runs before the event
I am trying to understand event binding in jQuery. I have written a simple code as follows:
<html>
<script language="javascript" src="jquery.js"></script>
<body>
...
1
vote
0answers
10 views
Changes to Pushpin.Location Inside ObservableCollection Don't Affect The Pushpin Until Map Is Redrawn
First question here, so far I've received great help just reading the answers. This is something I couldn't find any answers on though. So here comes...
We have a Bing Maps map whose MapItemsControl ...
0
votes
0answers
5 views
Binding DataGrid View in ASP.NET and C# using Entity Framework
I want to bind grid view control in ASP.Net using C# with Entity Framework and LINQ, it works fine but my requirements are that i want to format retrieved data and then to show it in Grid View, any ...
0
votes
0answers
20 views
Binding an ItemsControl to a derived type with XAML
Is it possible to bind an ItemsControl to a derived type (from an abstract base) using XAML only?
I have a Class called "RouteStop". Within "RouteStop", there is a collection of a class "Payment".
...
0
votes
1answer
47 views
WPF Binding and historical values
I'm currently writing a WPF progress bar that includes a rate (see Windows 8 - Fancy Progress Bars via C#?).
The screenshot below shows what I've got so far (left) and a badly done all in code as ...
0
votes
2answers
31 views
Why these bindings are not working as expected?
I have the following sample which mimics an application with a menu and a status bar button doing the same thing.
If I only execute the command from the menu the toolbar button gets updated fine but ...
0
votes
0answers
23 views
Windows forms strongly-typed control binding
Good day! I have been successfully using a strong-typed binding approach taken from this SO post. I would like to ask 2 related questions here if possible...
The BindEnabled<T> method from the ...
0
votes
1answer
20 views
Need help in binding dynamic JSON to Highcharts
I have the JSON data received from the server as:
[{"Text":"TRUCKLOAD","Spend":32323348.4},
{"Text":"NON-SYNDICATED:QUALITATIVE & QUANTITATIVE","Spend":23270306.54},
{"Text":"SAMPLING & ...
2
votes
1answer
34 views
Integrate a python scripting console for a C++ library
I have a library with classes and public methods written in C++.
I would like, from inside an interactive program written in C++ and Qt, to send commands to a parser in Python language which in turn ...
0
votes
0answers
14 views
JRuby JSR223 Interface ignores binidngs
It seems that the JSR 223 javax.script interface of the JRuby (1.6.7.2) framework ignores bound Java values in the Bindings of a ScriptContext.
Do I make a mistake?
Here is a simple example that ...
0
votes
0answers
16 views
Bind gridview using Jquery
I'm using two gridviews. The first one displays student name and id. Once the user clicks on the student id, a pop up appears which has the Student_details grid that contains all the details of that ...
1
vote
3answers
21 views
Can a View have two View Models as its Data Context?
I have two datagrids in a single view but the collections which are ItemsSource of these datagrids are in different View Models. So is it possible to bind these two datagrids with the collections in ...
0
votes
2answers
38 views
WPF Button Grid
I want to make a Button Tablet, which consists of 1 .. 10 Buttons.
Now I have a grid, which has rows and colums, lets say 2 columns, 5 rows,
but this is not very dymamical.
I have some xml-source ...
0
votes
1answer
16 views
Incorrect combobox binding with Knockout framework
Helo everyone
I've create simple page with table and would like populate it with data using knockout framework.
The table contain three columns that display data from underlying viewModel.
Generally ...
1
vote
1answer
31 views
backbone.js - unbinding and swapping views
I'm going through the process of learning Backbone.js and I've come across a few things that look like they work... but behind the scenes, they might be causing some problems. One such issue is design ...
0
votes
0answers
9 views
How to populate NSPopupButton from CoreData in View Based NSTableView
I am using view based NSTableViews that is populated using bindings and array controllers with core data. Everything works great--cells with text and buttons and cells with image and text--I can edit ...
0
votes
1answer
106 views
JQuery datepicker odd behaviour in MVC3
I couldn't find a complete solution for using JQuery date picker in MVC3 and from what I found on different pages I came up with my solution which still does not work as I want it to.
I have the ...
2
votes
1answer
15 views
WCF CustomBinding - Cannot obtain Metadata with custom authorization policy
After solving my previous problem, I wanted to convert the netTcpBinding to a customBinding, which I managed succesfully. However, WcfTestClient (and normal client) give an error while trying to ...
0
votes
0answers
17 views
How to bind “IsGroupBy” property of TemplateColumn in xamgrid to a separate boolean property?
I have a XamGrid which is bound to a collection. The XamGrid has a TemplateColumn which is bound to "ItemType" which can have one or more data values among A/B/C. what I want is - if this column has ...
0
votes
0answers
3 views
Spring webflow 2 binding: nested object do not follow flow rule
I have an object that has a nested one that is binded in the same view:
class MyForm{
private String var1;
private String var2;
private MyNestedForm nested;
}
class MyNestedForm{
private ...
0
votes
0answers
19 views
ComboBox Silverlight 5 auto search not working when using the TwoWay “Binding”
The combobox seems to face a problem when the data binding happen. The auto text search is not working. Need help here do not know what is the actual problem or i missed out something.
0
votes
2answers
32 views
Binding to viewmodel's property from a template
I made a view for my GameViewModel
I have some xaml like that
<UserControl.Resources>
<DataTemplate DataType="{x:Type ViewModels:PlayerViewModel}">
<StackPanel>
...
3
votes
2answers
30 views
passing this to methods in jQuery when using prototyping of methods
I'm using a code like the following
function Basket () {
this.items = new Array();
}
Basket.prototype.addItem = function(item) {
this.items.push(item);
setTimeout(this.showItems, 1000);
};
...
0
votes
0answers
22 views
Interface Builder 3: search for bindings
I want to replace IB bindings with bindings in code. Is there a way to search for those objects interested by a certain binding? I mean: is there a way to type the name of a property and get a list ...
0
votes
0answers
6 views
spring webflow 2 binding: how to populate <select> with enum values
I'm working with spring webflow 2 and I'm facing the issue of presenting a form for user registration. The user has to insert name, surname... and his/her nationality. This is the model class:
...
0
votes
1answer
32 views
How to bind on UI Element?
I have the same porblem every time. I want to create a custom control with "UIElement" DependencyProperty. So, on which element in XAML I could create binding to this DependencyProperty?
Canvas's ...
0
votes
1answer
59 views
WPF Linq Binding join-qry to DataGrid
I have the following query:
var qry = from itemA in db.TableA
join itemB in db.TableB on itemA.ID equals itemB.ID
join itemC in db.ItemC on itemA.ID equals itemC.ID
...
1
vote
1answer
52 views
Why set function on property does not update when storyboard animates
I have the property:
double _X;
public double X
{
get {
this.Title = _X.ToString();
return _X;
}
set {
_X = value;
...
0
votes
0answers
8 views
Getting Started in Java Beans
I'm looking to get started in the Java Beans Binding library. I've looked everywhere for a quick guide or the API, but I haven't been able to find something with substantial information. Does anyone ...
1
vote
2answers
28 views
Binding to property in code behind through window name
I would like to bind a textbox to a property of the window that is defined in the code behind file.
The binding succeeds when referencing the window when setting a RelativeSource using "FindAncestor" ...
0
votes
1answer
20 views
CommandProperty to button column added dynamically in DataGrid doesn't work
I have a DataGrid bound to an ObservableCollection. I add cols dynamically. Cols struc is 1st col is TextBlock rest all are Buttons. I have certain issues with the buttons :
I want to set Command for ...
0
votes
0answers
12 views
Binding BoundingRectangle to custom control dependency property
In our project we have created a custom control with some dependency properties. On the xaml page where we are using this control we are binding the BoundingRectangle property of the Map control to ...
1
vote
3answers
38 views
can I reset an unbinded function with setTimeout?
Gosh, I'm on here a lot... Anyways, it's in the question. I have an unbinded function, and I need it to come back after a certain amount of time (preferably when a video has stopped playing, but now ...
0
votes
2answers
33 views
how to unbind click while a video is playing
I have a set of buttons in an array, and I want it so that when you click one, and a video that it's linked to starts to play, it unbinds the click to the buttons (ideally for the one you just clicked ...
0
votes
1answer
13 views
Apache Web Server Socket Binding
I just started to read some binding documentation for Apache HTTP Server. And the very first line "By default, it listens to all addresses on the machine.", I found this statement very confusing. What ...
0
votes
1answer
26 views
Asp.Net ListView LinqDataSource Declaratively Bind Child Objects
I have a ListView with a LinqDataSource. In the Edit Template we need to edit both the primary object and a related (1 to 1) child object.
In the past I have used code for all of this and manually ...
2
votes
1answer
22 views
Get Sending Control's Name property to be used in opacity change
Ok I'll try explain as best as possible.
I have a method, "HandleGraphic". This method will be..Handling the opacity of a given control via a Logarithmic function.
The method parameters are: ...
0
votes
2answers
75 views
WCF Transport Windows Authentication with NET.TCP only works locally
I have a WCF service running locally, and a client running remotely. I have matched bindings on both sides to:
<binding name="TcpBindingConfiguration_2">
<reliableSession ...
2
votes
0answers
31 views
How to do custom Binding on JAVA (Netbeans IDE)
I want to find out how to do custom binding on java, I've searching on google but not found any.
It's simple problem,
I have two jSpinner, jSpin1 and jSpin2.
jSpin2 value is half from jSpin1.
when I ...
0
votes
0answers
18 views
Best way to bind multiple DomainDataSources to a RadGridView selection change
I have a master grid, used for finding items, then a set of 3 grids below it to shown parallel sets of related details for the selected row using simple Name Value pairs.
It looks like this:
When ...
1
vote
1answer
46 views
Wrong Suggestion from ReSharper for Binding Path in XAML
I get a misleading suggestion from ReSharper (6.1) to replace the property name 'Content' inside my binding path with a type from System.Windows.Interop. As my SO reputation is too low I can't show a ...
0
votes
1answer
25 views
Binding StringFormat giving incorrect result
For some reason using Content="{Binding Time, StringFormat=t} is still giving me a long date. The backing field is a DateTime property initialised with DateTime.Now but no matter what string format I ...
0
votes
0answers
42 views
How to bind multiple panels to HtmlPanel components in JSF page?
This seemed rather simple, but proved otherwise. I'm using JSF and RichFaces, and in my JSF page I have <t:dataTable>, which includes <rich:editor> and <rich:panel> components for ...
0
votes
1answer
22 views
nothing happens on button click for video if it's playing
How could I make it so that if I have a button separate from the video, and you click it, it polays as normal if the video is not playing, but if it is, then nothing happens with it? I'm guessing it ...
0
votes
1answer
23 views
Can I do piece-wise configuration of scoping for my objects in Ninject?
We have several cases where we are providing services in code libraries where we know scoping and lifetime rules for the service providers in the code library. We would like to configure that ...
0
votes
1answer
18 views
Cannot find sourcefor binding with reference 'ElementName=Field'
I have a context menu on a textbox that I'm trying to bind the isChecked property to one of the properties in that textbox's datacontext with a value converter.
The problem I'm having is very ...
0
votes
0answers
12 views
How can i generate flattened binding.xml file using jibx from xsd file?
I want to generate flattened binding file using jibx so that i can get simple data model classes with no structure.
0
votes
0answers
29 views
How to have a two-way binding with an ObservableCollection of EF objects
I made a datagrid that has for source a ObservableCollection of Entity framework objects. The Datagrid fills well. When I edit a row I don't see the model change with the debugger or in the database ...
0
votes
1answer
39 views
Bind DatePicker to List of Dates
Probably irrelevant, but I have an Infragistics XamDataChart that has a CategoryXAxis of Dates. I have managed to bind a date picker to the range of dates available in the chart, but I really need to ...