0
votes
2answers
25 views
Simplify AS3 binding/event-dispatching code
There are 3 properties (example 1):
[Bindable] public var name:String;
[Bindable] public var email:Number;
[Bindable] public var address:Boolean;
I needed to have 3 helper methods that will be …
0
votes
0answers
8 views
How to bind XmlDataProvider.Source to MVVM property
I've got a treeview bound to an XmlDataProvider following this example. The app I am working on is following the MVVM pattern and the Xml is from a file that the user will open.
When I try to bind …
0
votes
3answers
43 views
Specifying and displaying columns of a DataGrid in WPF declaratively using a binding?
Is there a way to specify DataGrid columns declaratively using a binding? (And to set the columns' properties using this binding?)
Idealy, I would have a list of objects (e.g. rows) databound to the …
0
votes
2answers
18 views
Unbind gridview in jquery
Is it possible to do the above? i.e. I have a gridview that binds to a data set. Currently I have a ddl that when a client clicks on it, the gridview 'disappears'.
(i.e. $('#GridView1').remove();)
…
0
votes
0answers
3 views
Behaviour for binding - help needed
I have a requirement to create a behavior in blend 3.0 for binding.
Following are the use cases
User will drag and drop the binding behavior to any control.
He will select the properties and data …
0
votes
1answer
23 views
Using ItemsControl on a multi-leveled TreeView
My co-worker threatened to put me on TheDailyWTF today because of my property I wrote to be used to build a 3-tiered treeview with ItemsControl.
I bear you the footprint:
…
0
votes
4answers
98 views
ASP.NET MVC: Binding to multiple models
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.
I have a …
0
votes
4answers
46 views
How to bind SQL variables in Php?
How to bind SQL variables in Php?
I want to bind variables instead of just building SQL strings.
Anyway to do this in Php?
either MySQL or PostgreSQL answers would help.
Thanks
0
votes
0answers
8 views
add custom function to YUI tabview
I've come up with the following function to fill a need:
function getTabFromElementID(elementID){
//get all of the tabs from the tabViewObject
var tabArray = this.get('tabs');
var …
0
votes
0answers
7 views
How To Bind ListBoxItems to two ObservableCollection
Hello, everybody. My problem takes above one month of my time. Sorry for my English. I hope that i can explain the problem.
I have a trouble while Binding ListView Control to two …
0
votes
1answer
30 views
WPF Combobox behavior weird
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 …
1
vote
3answers
50 views
Is a variable binding to a collection item possible
Hello everyone,
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:
<TextBlock Text="{Binding …
2
votes
3answers
120 views
How to bind SelectionStart Property of Text Box?
Hello.
I use this:
<TextBox x:Name="Test"/>
<TextBlock Text="{Binding SelectionStart, ElementName=Test}"/>
but it always shows 0.
How can I treat it?
Thank you.
0
votes
2answers
36 views
How to bind in PDO a string with %
I have the following query, (which don't work).
How do I bid strings inside an existing string with % (I believe the % is not the problem, but really not sure).
$sql="SELECT * FROM T WHERE f LIKE …
0
votes
1answer
15 views
WPF Data Binding - Bind to UI Control from a Template
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.
Can this be done? Expression Blend only shows the …
