[Logo] Enterprise Client Community
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Messages posted by: fhuellmantel  XML
Profile for fhuellmantel -> Messages posted by fhuellmantel [7]
Author Message
Hello together,

we recently migrated an old CC-Swing application into our RISC-based portal.
The users are missing the old color picker, the new RISC is missing many features and colors:



Would it be possible to extend the color picker to be more like a JColorChooser-Dialog?

Thanks in advance!

Best Regards
Fabian
Hi there,

it's hardcoded and you can change it by patching the bytecode only.

Best Regards,
Fabian
Try this:

Code:
 YESNOPopup.createInstance("Headline", "Content", new IYesNoListener() {
 	
 	@Override
 	public void reactOnYes() {
 		//Yes
 	}
 	
 	@Override
 	public void reactOnNo() {
 		//No
 	}
 		
 }).getModalPopup().setLeftTopReferenceCentered(); //centered
 


or for OKPopups:

Code:
 OKPopup.createInstance("Headline", "OK?", () -> System.out.println("OK")).getModalPopup().setLeftTopReferenceCentered(); //centered
 
Hi,

t:rowstatusbar is a usual component, so you can set the attribute rendered to false:
http://www.captaincasa.com/ccref/rowstatusbar.html


Regards,
Fabian
Hello,

check http://www.captaincasa.com/pdf/eclnt_DevelopersGuide.pdf page 27:

The Dispatcher class that is referenced also was added to your project when creating the
project. Of course you can update the faces-config.xml to your needs, e.g. by moving the
Dispatcher-class into a different package then the one proposed! 


So check YourProject\webcontent\WEB-INF\faces-config.xml and chance it:

Code:
<managed-bean>
      <managed-bean-name>d</managed-bean-name>
      <managed-bean-class>managedbeans.Dispatcher</managed-bean-class>
      <managed-bean-scope>session</managed-bean-scope>
 </managed-bean>


BR
Simply set the attribute "requestfocus" to "creation"

edit: Ups nice timing
It seems like you missed to update the public changelog and download link ;)

But you can download it via: http://www.captaincasa.com/download/setup_5_0_20160307.exe
 
Profile for fhuellmantel -> Messages posted by fhuellmantel [7]
Go to:   
Powered by JForum 2.1.6 © JForum Team