[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: dstrigel  XML
Profile for dstrigel -> Messages posted by dstrigel [69] Go to Page: Previous  1, 2, 3, 4, 5
Author Message
Hi!

Just a idea:
It could be a good thing for CaptainCasa to make it available via a maven repository.
I would expect the following benefits:
- Lower entry barrier to put CC into the own (maven) project
- Easy version updates
- Elimination of duplicated jar files
- ...?

Questions:
- Does it work with the Enterprise Client?
- Does the CC software architecture fits into the needs for maven...
- How much work it is to maintain a maven repository...

But it could be worth to think about? What do you think?

Kind regards,
Daniel
Hi!

is there a way to define a explicit height for a tile in a Tiledarea?
If we put in a tile a PageBean wich has as content a Pane with a explicit height the tile does not changes its size...

Kind regards,
Daniel
in our case the dispatcherinfo.xml was not moved to /target/classes/

Our solution is to define the Dispatcher.java/dispatcherinfo.xml directory as a resource directory ...
Code:
             <resource>
                 <targetPath>classes/path/to/dispatcherinfo_xml</targetPath>
                 <directory>${basedir}/src/main/path/to/dispatcherinfo_xml</directory>
                 <includes>
                     <include>**.xml</include>
                 </includes>
                 <filtering>false</filtering>
             </resource>
 


Kind, regards,
Daniel
Hi Markus,

I haven't checked your logfiles it's just a hint how we have overcome a similar issue.

We could solve it by implementing IPropertyTypeResolver.
Code:
 public class ComponentWrapper extends HashMap<String, Object> implements IPropertyTypeResolver
 
   @Override
         public Class resolveType( String key )
         { 
           //return Class for value with this key
          }
 

I think, if you have a reference to a null value the Class is by default String.class

maybe it helps, kind regards,
Daniel
Hello!

We plan to implement in the workplace some globel settings like switching the language.
If we change the language we want that all the GUI lables of the pages (also the workpages) will be reloaded with the new GUI language.
Is there a explicit way to implement this?

Kind Regards, Daniel
perfect, thanks!
Daniel
Hi,

We are using FIXGRIDListBinding and the amazing popup dialogue onEditColumnDetails

We create the list and set setColumnsequence with dynamic values
list.setColumnsequence( "some value from DB");

Now if you press in the popup the "Back to default!" button the preselected colums are gone...

public void onBackToDefault(ActionEvent event)
{
m_grid.setColumnsequence(null);
m_grid.setModcolumnwidths(null);
if(m_listener != null)
m_listener.reactOnClose();
}

Default for setColumnsequence should not be "null" but should be the original value.
Is there a way to switch back to the previous value?

Regards, Daniel
Hello!

It is planned (in the near future) to support JSF 2.0 EL with parameters?
As it is described here: http://hazems.blogetery.com/2010/04/10/invoking-methods-with-parameters-in-jsf-2-0-el/
Would often make it easier ...

Daniel
Hi!

Is there a standard search function for plain texts (no grids)?
Marking all strings with the matching search pattern. Like usinge Firefox... (Strg + F)

Daniel
 
Profile for dstrigel -> Messages posted by dstrigel [69] Go to Page: Previous  1, 2, 3, 4, 5
Go to:   
Powered by JForum 2.1.6 © JForum Team