Fixed editor width for zk6.
This commit is contained in:
parent
6da3e8a2b8
commit
c82793df29
|
@ -43,6 +43,7 @@ import org.zkoss.zk.ui.event.EventListener;
|
|||
import org.zkoss.zk.ui.event.Events;
|
||||
import org.zkoss.zul.Image;
|
||||
import org.zkoss.zul.Menuitem;
|
||||
import org.zkoss.zul.impl.InputElement;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -50,7 +51,7 @@ import org.zkoss.zul.Menuitem;
|
|||
* @date Mar 11, 2007
|
||||
* @version $Revision: 0.10 $
|
||||
*/
|
||||
public abstract class WEditor implements EventListener, PropertyChangeListener
|
||||
public abstract class WEditor implements EventListener<Event>, PropertyChangeListener
|
||||
{
|
||||
private static final String[] lISTENER_EVENTS = {};
|
||||
|
||||
|
@ -82,6 +83,8 @@ public abstract class WEditor implements EventListener, PropertyChangeListener
|
|||
|
||||
protected WEditorPopupMenu popupMenu;
|
||||
|
||||
private boolean tableEditor;
|
||||
|
||||
public WEditor(Component comp, GridField gridField) {
|
||||
this(comp, gridField, -1);
|
||||
}
|
||||
|
@ -219,13 +222,13 @@ public abstract class WEditor implements EventListener, PropertyChangeListener
|
|||
{
|
||||
component.addEventListener(event, this);
|
||||
}
|
||||
component.addEventListener(Events.ON_FOCUS, new EventListener() {
|
||||
component.addEventListener(Events.ON_FOCUS, new EventListener<Event>() {
|
||||
public void onEvent(Event event) throws Exception {
|
||||
hasFocus = true;
|
||||
}
|
||||
|
||||
});
|
||||
component.addEventListener(Events.ON_BLUR, new EventListener() {
|
||||
component.addEventListener(Events.ON_BLUR, new EventListener<Event>() {
|
||||
public void onEvent(Event event) throws Exception {
|
||||
hasFocus = false;
|
||||
}
|
||||
|
@ -472,7 +475,7 @@ public abstract class WEditor implements EventListener, PropertyChangeListener
|
|||
//can't stretch bandbox & datebox
|
||||
if (!(getComponent() instanceof Bandbox) &&
|
||||
!(getComponent() instanceof Datebox)) {
|
||||
String width = "100%";
|
||||
String width = tableEditor ? "98%" : "100%";
|
||||
if (getComponent() instanceof Button) {
|
||||
Button btn = (Button) getComponent();
|
||||
String zclass = btn.getZclass();
|
||||
|
@ -485,10 +488,14 @@ public abstract class WEditor implements EventListener, PropertyChangeListener
|
|||
}
|
||||
} else if (getComponent() instanceof Image) {
|
||||
Image image = (Image) getComponent();
|
||||
image.setWidth("48px");
|
||||
image.setHeight("48px");
|
||||
image.setWidth("24px");
|
||||
image.setHeight("24px");
|
||||
} else {
|
||||
((HtmlBasedComponent)getComponent()).setWidth(width);
|
||||
if (getComponent() instanceof InputElement && !tableEditor) {
|
||||
((InputElement)getComponent()).setHflex("1");
|
||||
} else {
|
||||
((HtmlBasedComponent)getComponent()).setWidth(width);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -523,6 +530,10 @@ public abstract class WEditor implements EventListener, PropertyChangeListener
|
|||
}
|
||||
}
|
||||
|
||||
public void setTableEditor(boolean b) {
|
||||
tableEditor = b;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return boolean
|
||||
*/
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.zkoss.zk.ui.event.Events;
|
|||
*
|
||||
* This class is based on VLocation written by Jorg Janke
|
||||
**/
|
||||
public class WLocationEditor extends WEditor implements EventListener, PropertyChangeListener, ContextMenuListener
|
||||
public class WLocationEditor extends WEditor implements EventListener<Event>, PropertyChangeListener, ContextMenuListener
|
||||
{
|
||||
private static final String[] LISTENER_EVENTS = {Events.ON_CLICK};
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ import org.zkoss.zk.ui.event.Events;
|
|||
* @date Jul 23, 2007
|
||||
*/
|
||||
|
||||
public class WLocatorEditor extends WEditor implements EventListener, PropertyChangeListener, ContextMenuListener, IZoomableEditor
|
||||
public class WLocatorEditor extends WEditor implements EventListener<Event>, PropertyChangeListener, ContextMenuListener, IZoomableEditor
|
||||
{
|
||||
private static final String[] LISTENER_EVENTS = {Events.ON_CLICK};
|
||||
|
||||
|
|
|
@ -63,23 +63,6 @@ public class WebEditorFactory
|
|||
if (editor != null)
|
||||
break;
|
||||
}
|
||||
if (tableEditor)
|
||||
{
|
||||
if (editor.getComponent() instanceof InputElement)
|
||||
{
|
||||
((InputElement)editor.getComponent()).setInplace(true);
|
||||
}
|
||||
else if (editor.getComponent() instanceof EditorBox)
|
||||
{
|
||||
EditorBox box = (EditorBox) editor.getComponent();
|
||||
box.getTextbox().setInplace(true);
|
||||
}
|
||||
else if (editor.getComponent() instanceof NumberBox)
|
||||
{
|
||||
NumberBox box = (NumberBox) editor.getComponent();
|
||||
box.getDecimalbox().setInplace(true);
|
||||
}
|
||||
}
|
||||
return editor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -93,7 +93,7 @@ import org.zkoss.zul.impl.InputElement;
|
|||
*
|
||||
* @author Low Heng Sin
|
||||
*/
|
||||
public class ADTabpanel extends Div implements Evaluatee, EventListener,
|
||||
public class ADTabpanel extends Div implements Evaluatee, EventListener<Event>,
|
||||
DataStatusListener, IADTabpanel, VetoableChangeListener
|
||||
{
|
||||
/**
|
||||
|
@ -472,12 +472,8 @@ DataStatusListener, IADTabpanel, VetoableChangeListener
|
|||
}
|
||||
|
||||
//streach component to fill grid cell
|
||||
if (editor.getComponent() instanceof InputElement) {
|
||||
((InputElement)editor.getComponent()).setHflex("1");
|
||||
} else {
|
||||
editor.fillHorizontal();
|
||||
}
|
||||
|
||||
editor.fillHorizontal();
|
||||
|
||||
//setup editor context menu
|
||||
WEditorPopupMenu popupMenu = editor.getPopupMenu();
|
||||
if (popupMenu != null)
|
||||
|
|
Loading…
Reference in New Issue