Search:

Type: Posts; User: lstreepy; Keyword(s):

Page 1 of 18 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    6
    Views
    1,391

    Apologies for my non-involvement lately

    To everyone in the Spring Rich community:

    I want to apologize for my lack of participation lately. On top of moving from New York to Austin, and taking a new job, the universe decided that I...
  2. Replies
    10
    Views
    1,995

    The issue is not as simple as making the AWA...

    The issue is not as simple as making the AWA interface work in the entire context. The reason is that command instances are unique to a window (and thus can have a specific application window...
  3. Replies
    4
    Views
    1,567

    Here's an example that makes a field read-only: ...

    Here's an example that makes a field read-only:


    FieldMetadata md = getFormModel().getFieldMetadata( "propertyName" );
    md.setReadOnly( true );

    Now, the binding will properly set the UI...
  4. Replies
    4
    Views
    1,567

    Instead of directly manipulating the created...

    Instead of directly manipulating the created component, you should look at setting the field metadata to mark the field as read-only. When that is done, any bound control will disallow editing.
    ...
  5. Replies
    9
    Views
    2,040

    This is an important topic. I ran into some...

    This is an important topic. I ran into some serious limitations with the current event dispatch mechanism when working with non-singleton components defined in the application context.

    I would...
  6. Replies
    3
    Views
    977

    The main reasons stem from the number of objects...

    The main reasons stem from the number of objects that would need to have services injected into them. In a complex UI, it could literally be hundreds of objects - it's not reasonable to require DI...
  7. Thread: Runtime size.

    by lstreepy
    Replies
    2
    Views
    1,157

    There's no way to determine runtime size from the...

    There's no way to determine runtime size from the size of the jar files. Depending on the features you use, your runtime size will vary a great deal.

    I haven't taken a look, but you could...
  8. Replies
    5
    Views
    1,441

    Sorry, look at...

    Sorry, look at org.springframework.richclient.image.Handler

    Larry.
  9. Replies
    3
    Views
    1,034

    Maybe I'm missing something in your question, but...

    Maybe I'm missing something in your question, but since this is a rich client you hold objects by just referencing them. The whole session model of a servlet is to allow it to support multiple client...
  10. Replies
    5
    Views
    1,209

    Agreed, the JLabel solution isn't terrific, but...

    Agreed, the JLabel solution isn't terrific, but works well for simple derived values.

    Larry.
  11. Replies
    5
    Views
    1,209

    Currently, there is no builtin support for...

    Currently, there is no builtin support for "synthized" fields. It's something that I've been wanting to add to Spring Rich for some time, but it has never made it to the top of my list.

    The...
  12. Replies
    5
    Views
    1,441

    It's in ImageHandler Larry.

    It's in ImageHandler

    Larry.
  13. Replies
    5
    Views
    1,763

    Although it's not already done, you should be...

    Although it's not already done, you should be able to roll your own by implementing a specific PropertyAccessStrategy and having the form models use it instead of the default...
  14. Replies
    4
    Views
    1,222

    Ok, so after you do a "mvn install" take a look...

    Ok, so after you do a "mvn install" take a look in your local repository. Do you see this directory:

    org/springframework/richclient/spring-richclient-archetype/0.2.0-SNAPSHOT

    If not, then...
  15. I don't know why you are messing around with...

    I don't know why you are messing around with setReadOnly on the property metadata, but that seems odd.

    It does look like you are committing the form model in the search action handler, which...
  16. Replies
    1
    Views
    793

    Most of this work is basic swing. In your...

    Most of this work is basic swing. In your command executor you'll need to get the form control and then place it somewhere in the layout of your view. Look at the getControl method on the form...
  17. Replies
    1
    Views
    919

    Unfortunately, the major components are not...

    Unfortunately, the major components are not independent of each other. We have a goal of making them as independent as possible over time, but as of right now, there is no easy way to do this.
    ...
  18. Replies
    1
    Views
    842

    Yuor best approach is to study the two sample...

    Yuor best approach is to study the two sample applications. They provide good examples of how to perform almost all basic operations in Spring Rich.

    Larry.
  19. Replies
    2
    Views
    1,365

    The Wizard interface defines the method...

    The Wizard interface defines the method canFinish(). The WizardDialog tests this method to enable/disable the finish button.

    Take a look at WizardDialog.updateButtons for the details.

    Larry.
  20. Replies
    4
    Views
    1,222

    Have you done a "mvn install" in the top level...

    Have you done a "mvn install" in the top level project? This is required to build the archetype and install it for use.

    Larry.
  21. Replies
    3
    Views
    1,179

    It's the incantation needed to get the...

    It's the incantation needed to get the application context reference from within the lifecycle listener.

    Larry.
  22. Replies
    3
    Views
    1,138

    Sorry, but there are no released samples that...

    Sorry, but there are no released samples that include the master/detail forms since they are not in the core yet. I have not had the time to generate the unit tests required before I can promote...
  23. Replies
    5
    Views
    1,198

    The archetype is synched with the latest...

    The archetype is synched with the latest development code. The application services definition generated should look like this:


    <bean id="applicationServices"...
  24. Thread: Button Label

    by lstreepy
    Replies
    4
    Views
    1,132

    Hi Alex, You forgot to include the platform...

    Hi Alex,

    You forgot to include the platform messages.properties file. Here's the messageSource configuration from the simple sample:


    <bean id="messageSource"...
  25. Thread: Button Label

    by lstreepy
    Replies
    4
    Views
    1,132

    Unless you've done something odd, those messages...

    Unless you've done something odd, those messages should come from the messages.properties file that is part of the Spring Rich distribution.

    How did you configure your message source in the...
Results 1 to 25 of 426
Page 1 of 18 1 2 3 4