• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

propertyChangeListener question

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have child dialog for choosing dates which is called from parent UI:
This dialog implements PropertyChangeListener and there is a corresponding propertyChange method which sets new values for the dates.

Here is the code I have in parent UI to call this dialog:
Date startDate;
Date endDate;
ChooseDatesDialog datesChoice = new ChooseDatesDialog();
ClientUtils.centerWindowOnTheScreen(datesChoice,220,160);
datesChoice.setTitle("Choosing dates");
datesChoice.setVisible(true);
How do I capture the event when date values are set within child dialog in this parent UI?
Thanks,
Sabina
 
Ranch Hand
Posts: 192
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
use

Thank you
Garandi
 
Sabina Norderhaug
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Garandi Garandi:
use


My parent UI extends JPanel. I cannot apply addPropertyChangeListener(this); to it.
I can probably set parent UI to implement PropertyChangeListener and add propertyChange method to it.
Then again I already have PropertyChangeListener added to Date buttons within my child dialog.
Looks like I need to change the whole design
 
I didn't like the taste of tongue and it didn't like the taste of me. I will now try this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic