0
votes
3answers
66 views
Python: Binding method
In following example I am trying to bind a method object via types.MethodType(...). It does not seem to work. Any suggestions? Thanks in advance.
import types
class Base:
def …
0
votes
5answers
47 views
XML binding solution in .NET
Hi,
Are there any proper xml binding(mapping) solutions (OXM) in .net? What I need is to generate model classes from arbitrary xml. As for now I can't find anything like JaXB 1/2, …
1
vote
2answers
22 views
asp.net mvc: how to create custom binding for models when using LINQ to Entities
I've got a number of tables in my db that share common cols: modified by, modified date, etc. Not every table has these cols. We're using LINQ to Enties to generate the
I'd lik …
0
votes
1answer
39 views
WPF ReadOnly Dependency Properties using MVVM
Hi,
I've recently overridden the DevXpress WPF grid to give myself a SelectedObject property that I can access from my loosely bound ViewModel.
I've made a SelectedObject depende …
1
vote
1answer
76 views
Using asp.net mvc model binders generically
I have a hierarchy of classes that all derive from a base type and the base type also implements an interface. What I'm wanting to do is have one controller to handle the managemen …
0
votes
1answer
21 views
Binding redirect problem in .net
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 sy …
1
vote
2answers
118 views
WPF MVVM User Control binding issues
I have an application that uses MVVM. I have several items on the main window that bind to the ViewModel for that window. When I run it everything works. However, when I add a user …
0
votes
1answer
32 views
How to bind a Control.Property to a property in the code-behind?
Hello.
I have a TextBox in my WPF window.
I have a property in the code behind called Text as well.
I want the text property to be bound to the Text property (i.e. when the valu …
0
votes
1answer
18 views
Binding window title to child property
I've got a window with my custom textbox-like control on it
<Window.Title>
<Binding ElementName="codeBox" Path="Filename" UpdateSourceTrigger="PropertyChanged" />
…
1
vote
1answer
53 views
Problem binding DataGridComboBoxColumn.ItemsSource
Hello!
I have 3 tables:
Item - which is the DataContext - it has a navigation column Group
Group - has a navigation column Category.
I want to have in the DataGrid both (Category …
0
votes
2answers
22 views
jQuery :How to Update function associted to a div object
in jquery , how can i remove a function which is already binded to a div object (named divItem1) and bind a new function with new parameters
0
votes
2answers
27 views
Is it possible to obtain a list of events bound to an element in jQuery?
As the question said, i need the list of events bound to a specific element.
I mean events like click, mouseover etc bound to that element at the loading of the dom.
(Stupid) exa …
0
votes
5answers
129 views
WPF Binding objects defined in codebehind
I have some object that is instantiated in code behind, for instance, the XAML is called window.xaml and within the window.xaml.cs
protected Dictionary<string, myClass> myDi …
1
vote
1answer
66 views
How can i pass a form field as a action parameter by using Seam framework ?
Hi,
I do not know whether it is possible but i want something like
<f:view>
<h:form>
<div>
<label for="accountId">Type your account id&l …
2
votes
3answers
51 views
How can I get a reference to a method that contains the arguments used for invocations, in Ruby?
Given this code:
a = {1=>2}
m = a.method(:[])
I know that I can now use :
value = m.call(1)
and it will return 2. The thing is, what do I need to change so that I can call …
