The converters tag has no wiki summary.
2
votes
2answers
35 views
How to bind to a StaticResource with a Converter?
I want to use a Converter to change the value of a StaticResource before assigning it to a property. Is there a way to simulate a Binding that will just set the value of the StaticResource after ...
1
vote
1answer
47 views
Do you have to use a converter when using Multibinding in WPF?
I would like to know if there are scenarios where you can use a Multibinding without a converter - and the limitations which force us to use a converter.
In particular I am trying to bind a string ...
0
votes
1answer
40 views
manual Spring-data-rest Converters
Could you recomendme a tutorial about converters of spring-data-rest? I've stuck one week in this issue and I read a lot of post and little manuals about it but I still don't knowing how it works or ...
0
votes
1answer
77 views
WPF: Base class for converters “catches” Convert method
I guess my question topic is a bit confusing. In short, what I want:
I have a lots of Converters in my application. Many of them do not implement the ConvertBack method. So I would like to have a ...
0
votes
3answers
338 views
Decimal Converter in Silverlight is not working on Lost Focus properly
I m using the binding in Silverlight. I have binded the TextBox with Decimal entity.
Below is the Code snipts of bindings.
<TextBox x:Name="AmountBox" Text="{Binding ...
1
vote
1answer
112 views
ajax converters and IE7
Using a unparseable cruft on my ajax responses.
Works great, except IE7 which throws a failure. Any thoughts on why the failure?
ajax call:
$.ajax({
type: "POST",
url: ...
0
votes
2answers
459 views
jQuery AJAX converters jsonp
I am trying to intercept an ajax jsonp response to do some response filtering.
My guess was, I could do this with custom converters. But the converter function is never run.
What am I missing?
var ...
0
votes
1answer
284 views
JSON converter in Grails
Consider a simple class as :-
class Person{
String name
String email
int age
String mobileNum
}
I want to selectively send 'id' & 'email' attributes as JSON response.
When ...
1
vote
1answer
415 views
Cannot find converter resource
I have a WPF Solution with 2 projects, the first one (ResourcesLibrary) contains common styles and common resources. The other is the WPF application.
I created a style for DataGridRows in the ...
1
vote
3answers
257 views
When do default converters kick in?
With the following code, although Text property is bound to a DateTime source property, I noticed WPF seems to automatically convert the text to a DateTime, without me needing to write a ...
1
vote
1answer
146 views
Can I use subobjects of a StaticResource?
Feeling a bit bored of cut and pasting converters between projects at the moment.
Is there any way I can use a single Converters object which has converters as fields/properties?
e.g. something ...
1
vote
2answers
580 views
Validating a nullable int using a IValueConverter
I'm trying to perform a validation property. We have a nullable property called:
public int? Number
{
get { return _number; }
set
{
if (_number != value)
{
...
1
vote
1answer
924 views
Custom string formatting in Grails JSON marshaller
I am looking for a way to do some string formatting through Grails JSON conversion, similar to custom formatting dates, which I found in this post.
Something like this:
import ...
1
vote
1answer
266 views
Using c++ classes in blackberry or convert cpp files to java
I am having C++ files and library which I have used in Android using ndk and jni.It works fine in Android. But now I want to use the same files and library for Blackberry Development. I am trying to ...
0
votes
1answer
319 views
Bind an image source to URI with Error Image if download fails
I am working on binding a URI to an image and I have binding working just fine. The problem is that the images are generated on the fly and the generation could throw an exception. I'm using a ...
0
votes
2answers
162 views
JSF Not Using Converter
I have a selectManyCheckbox that has a converter declared in it. The problem is that the converter is called but that value from the converter is not being used instead the toString method is of the ...
0
votes
1answer
584 views
How to allow decimal values in Telerik Silverlight GridViewDataColumn filter dialog?
I've got a data column defined within a RadGridView that uses a currency value. Here's the definition:
<telerik:GridViewDataColumn UniqueName="WSA" Header="WSA" DataMemberBinding="{Binding ...
2
votes
2answers
359 views
C# - Passing View to the converter as parameter
I have a view with couple of data templates in the resources of that view. (I don't want to put it somewhere global since its only needed by this particular view)
Based on value I get in converter I ...
1
vote
1answer
1k views
managed bean EJB injection
i'm having many managed beans and was wondering if i could create a UtilClass where i
put my services calls (@EJB). I've already tried it but i'm having a NullPointerException.
this is how my ...
0
votes
1answer
40 views
OpacityConverter hack
How do I implement an OpacityConverter that accepts values beyond 100% ? Like 120% or 150%.
Thanks.
1
vote
3answers
423 views
Datagrid binding to collection, problem with one column converting
i have one problem with binding one column of my datagrid in custom way.
So, i have this code in view:
<DataGridTemplateColumn Header="State">
<DataGridTemplateColumn.CellTemplate>
...
0
votes
2answers
330 views
Newb to groovyConsole and struggling with importing Grails converters
I'll still just a pup when it comes to using Groovy's and Grails' tools. I want to use groovyConsole to test some ideas. The code I want to try involves using Grails converters, json to be exact. I ...
5
votes
7answers
294 views
Experiences with “language converters”?
I have read a few articles mentioning converters from one language to another.
I'm a bit more than skeptical about the use of such kind of tools. Does anyone know or have experiences let's say about ...
0
votes
3answers
2k views
When will the ValueConverter's Convert method be called in wpf
I have an ObservableCollection bound to a list box and a boolean property bound to a button. I then defined two converters, one that operates on the collection and the other operates on the boolean ...
3
votes
1answer
533 views
is it a bad idea to have static wpf value converters?
Instead of declaring the converter in the Resources, i can do something like
IsEnabled={Binding Path=SomeProp, Converter={x:Static namespace:Converter.Instance}}"
where Instance is instantiated ...
0
votes
1answer
985 views
WPF Binding & Converters
I've been recently playing with WPF and I've come across a number of problems that I can't solve. I have the following code in my generic.xaml:
<Style TargetType="{x:Type local:ClearButton}"> ...
4
votes
2answers
2k views
Bind Image.Source according to Boolean without a converter?
I want to have an image bound to a boolean and have the source of the image to depend on the boolean value
i.e. true source="image1" false source="image2"
I was wondering if there is a way to do it ...
0
votes
1answer
518 views
How can I easily add a WPF Converter item template to Visual Studio?
I find myself creating Converters often and would like to be able to:
right-click on my Converters folder
Add New Item...
choose Converter Item Template
I found these instructions but I can ...
5
votes
4answers
2k views
Why does my converter giving an invalid cast error?
I created a Converter to convert from double to integer.
But the line "return (int)value;" always gets a "specified cast is not valid."
What do I have to do so that my Converter successfully ...
10
votes
2answers
8k views
How to return specific date format as JSON in Grails?
In Grails, you can use the JSON converters to do this in the controller:
render Book.list() as JSON
The render result is
[
{"id":1,
"class":"Book",
"author":"Stephen King",
...
2
votes
3answers
3k views
Currency formatting on ComboBox items
I have a ComboBox bound to an ObservableCollection of decimals. What is the correct way to apply our currency converter to the items?
Edit:
a) I have an existing currency converter that I must use
...

