Tagged Questions
The propertyeditor tag has no wiki summary.
6
votes
4answers
5k views
Spring MVC : Binding 3 dropdowns to a date property in SimpleFormController
How should I configure the class to bind three dropdowns (date, month, year) to a single Date property so that it works the way it works for 'single request parameter per property' scenario ?
I guess ...
4
votes
1answer
431 views
How do I make the Object Inspector show more TColor property values?
The IDE Object Inspector shows TColor properties with a drop-down ColorBox, and the color can be selected by name - clBlack etc, as defined in the Graphics unit. The problem is that the clWeb colors ...
3
votes
1answer
303 views
Spring 3 Custom Editor field replacement
Having my ValueObject
UserVO {
long id;
String username;
}
I created custom editor for parsing this object from string id#username
public class UserVOEditor extends PropertyEditorSupport {
...
2
votes
3answers
586 views
Spring CustomNumberEditor parses numbers that are not numbers
I'm using Spring CustomNumberEditor editor to bind my float values and I've experimented that if in the value is not a number sometimes it can parse the value and no error is returned.
number=10 ...
2
votes
1answer
258 views
How to create a Folder (Directory) property editor for my component?
Delphi 2010
How to create a Folder (Directory) property editor for my component?
I was able to easily create one for a FileName property using:
TFileProperty = class(TStringProperty)
public ...
2
votes
3answers
603 views
Delphi: How do i know what my property editor is editing?
i have a property editor (descendant of TPropertyEditor) that is used to edit a property.
When it comes time to edit my property, how do i know what property of what object i'm editing? If i'm going ...
1
vote
2answers
264 views
Converting Delphi 7 property editor to Delphi XE2
First of all, I have never written a property editor from scratch, but had some help with one in another question. Refer to the accepted answer there. This was in Delphi 7, and now I have started ...
1
vote
1answer
95 views
Registering custom property editors in spring
This is regarding Spring property editors.
I have a Interface A that is being implemented to Class B and C.
I have a command class Doc in which in which i have a list of A
class Doc{
List<A> ...
1
vote
1answer
173 views
SpringMVC request parameter conversion
I can use property editors in SpringMVC to do custom conversion of a request parameter. For example to convert a request parameter to an instance of Foo below
public class Foo {
private val;
...
1
vote
1answer
76 views
Data Binding Many-ended Associations
Assume I want to databind HTTP parameters to an instance of
class Continent {
Integer id
String name
Country country
}
where the Country class looks something like:
class Country {
Integer ...
1
vote
0answers
366 views
How can I set a custom PropertyEditorSupport.setAsText(String) for spring's form select list?
I have a spring form. The form contains a select list that is bound to an enum type. I have also added a "choose" option to the select list that isn't represented in the enum.
I have seen some ...
1
vote
0answers
142 views
Is there an annotation-based way to register PropertyEditors globally in Spring MVC 3.0?
I was wondering if there was a way of registering a PropertyEditor globally within Spring MVC 3.0 onwards. In the documentation their documentation they show how to use annotations to customise bean ...
1
vote
2answers
245 views
Why are certain control properties shown in the Visual Studio designer, and others not?
Take my navigationItem usercontrol:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using ...
1
vote
1answer
634 views
how to convert uri string to complex object type in spring
i just wonder, can i convert uri string to another object type ?
@RequestMapping(value="/key/{keyDomain}", method=RequestMethod.GET)
public String ...
1
vote
1answer
390 views
TCollection PropertyEditor with editable Columns
for my own TCollection descendant I want to extend the collection property editor. I want to see more columns for other properties of my TCollectionItem. And I am a lucky because it is pretty easy. ...
1
vote
1answer
824 views
Runtime-dynamic properties in QPropertyEditor
I am using the QPropertyEditor from Qt-Apps.org.
is it possible to create a class with exposed Properties where the amount of properties is runtime-dynamic? So for example you have a class which ...
0
votes
1answer
50 views
String to Enum Binding inside JSP works on Jetty but not on Tomcat
I'm struggling with a strange behavior between Tomcat and Jetty.
Inside a tag-file I refer to another tag (based on SimpleTag) which has two attributes. One is a Enum (PictureScale) with several ...
0
votes
0answers
49 views
How can I unit test a Grails controller when using a custom property editor?
I'd like to use the technique described here: Grails bind request parameters to enum
to automatically bind the String representation of an enum to a domain instance.
The technique works fine, but my ...
0
votes
1answer
40 views
Data binding with property editors when application context loads up
I understand the principle of data binding of properties onto target with custom or default PropertyEditor. You specify a target bean and then bind properties onto it.
What I can't find out is how ...
0
votes
1answer
86 views
Property editor with categories
I'm writing an app in Java and swing using Netbeans, and I need property editor (like this). How I can add it to my application?
0
votes
2answers
57 views
Where I did wrong? Why PropertEditorSupport is not working for me?
Why I am getting action in PropertyEditorSupport? Could anyone please help me here because i am new in Spring. Below is the error report
Exception in thread "main" ...
0
votes
1answer
51 views
With regard to an IDE, what is a property editor?
Just a quick question: When talking in terms of an IDE, what is a property editor?
0
votes
1answer
150 views
associate the PropertyEditor to a specific Controller
Is there a way to associate the PropertyEditor to a specific Controller.
I might want to have two PropertyEditor's for DateTime class, and want to associate them to different controllers.
or a ...
0
votes
3answers
3k views
Spring @InitBinder not invoked when showing form => CustomEditors not defined
I have following (simplified to the bone) Controller:
@Controller
public class TestController {
@RequestMapping(value = "/test.htm", method = RequestMethod.GET)
public String showForm(final ...
0
votes
1answer
133 views
Localization issues PropertyEditor
I am using PropertyEditor in .NET 3.5 application to allow users edit settings contained in some serialized class. This application requires localization to support multiple languages.
Localized ...
0
votes
1answer
3k views
Property Editor not registered with the PropertyEditorManager error on Custom Validation Tag (java)
I am using TomCat 5.5 with MyFaces 1.1 and am trying to implement a custom regex validation tag.
My RegExValidator class looks like this:
public class RegExValidator implements Validator, ...