0
votes
1answer
18 views
Grails bind request parameters to enum
Hi,
My Grails application has a large number of enums that look like this:
public enum Rating {
BEST("be"), GOOD("go"), AVERAGE("av"), BAD("ba"), WORST("wo")
final String …
0
votes
1answer
34 views
Get databinding object in control
Hello,
I want to create an enumcombobox where the popup will show the enumvalues of the controls' binding object. Somehow I cannot get the binding object property at runtime. Data …
0
votes
2answers
24 views
C#: data binding a single, custom class to form controls (checkbox?)
I'm writing a desktop application in Visual Studio 2008 / C#
I finished (mostly) writing an engine which generates a working schedule for the week for a small company; a form of a …
1
vote
1answer
8 views
Binding ListBox to List in Silverilght not working
All,
I have what i think is the simplest example possible of data binding in silverlight... but clearly even that is too complicated for me :)
The XAML:
<UserControl x:Class= …
0
votes
2answers
9 views
PageindexChanging TargetInvocationExeption
Hello all.
I'm having a little bit of trouble sorting out the paging scenario with a gridview i.e. I can't get the bloody thing to show page, 2, 3, 4, etc.
I have the following G …
3
votes
7answers
3k views
WPF CommandParameter is NULL first time CanExecute is called
I have run into an issue with WPF and Commands that are bound to a Button inside the DataTemplate of an ItemsControl. The scenario is quite straight forward. The ItemsControl is bo …
0
votes
3answers
47 views
TwoWay MultiBinding with read-only properties
How to skip updating some of the sub-bindings of a MultiBinding? I have defined in code-behind (I had some troubles making it in XAML and I don't think it matters - after all code- …
1
vote
2answers
22 views
Using DataAnnotations for validation in MVVM
Hi,
I've discovered the new data annotation features of SL3 and I'm using them for user input validation.
I've got inputs like these:
<dataInput:Label Target="{B …
0
votes
1answer
27 views
WPF CheckBox not getting checked at initiation (data binding)
Hello,
I've just come across this problem with my checkbox data binding. The scenario is:
When I initialize the user interface (start the application), the checkboxes are uncheck …
0
votes
1answer
71 views
How to make an existing object a data source in Microsoft Expression Bend 3?
This example is just for learning ...
I have started a project in Visual Studio C#. It is very simple, there is a Phone class which is instantiated in the code behind. I would lik …
4
votes
3answers
4k views
How can I set the text of a WPF Hyperlink via data binding?
In WPF, I want to create a hyperlink that navigates to the details of an object, and I want the text of the hyperlink to be the name of the object. Right now, I have this:
<Tex …
0
votes
4answers
50 views
How do I bind the Overlay Tool for new Ajax elements in Jquery?
Hi,
I'm using:
echo $javascript->link('tools.overlay-1.0.4', false);
which is initialized with:
$(".overlay_popup").overlay({
expose: '#000000',
close: '.close_over …
0
votes
1answer
23 views
GridView.EditIndex property
hi
1) If we first set DropDownList.SelectedIndex to some value and then rebind control to data source, it’s SelectedIndex property will be reset to default. So why doesn’t somethi …
0
votes
2answers
16 views
WPF binding to another property’s binding in a style
I'm not sure the best way to ask this question (sorry for the ambiguous question title), but essentially I'd like to set the MaxLength property on a TextBox using a value converter …
1
vote
2answers
16 views
Silverlight data binding from VM issue
I have a SL 3.0 page with a lot of textblock controls laid out. Each textblock is bound to a property of the Account class. The XAML page codebehind (mypage.xaml.cs) has a OnNaviga …
