This commit is contained in:
parent
aa09b414b1
commit
d5e6e6a596
|
@ -133,7 +133,7 @@ public class EditorBox extends Div {
|
|||
* @return boolean
|
||||
*/
|
||||
public boolean isEnabled() {
|
||||
return txt.isReadonly();
|
||||
return !txt.isReadonly();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -90,7 +90,7 @@ public class Label extends org.zkoss.zul.Label
|
|||
|
||||
private void createMandatoryDecorator() {
|
||||
decorator = new Label("*");
|
||||
((Label)decorator).setStyle("text-decoration: none; font-size: xx-small; vertical-align: top;");
|
||||
((Label)decorator).setSclass("mandatory-decorator-text");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -140,17 +140,6 @@ public class WDateEditor extends WEditor
|
|||
//
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isMandatory()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMandatory(boolean mandatory)
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setValue(Object value)
|
||||
{
|
||||
|
|
|
@ -132,17 +132,6 @@ public class WDatetimeEditor extends WEditor
|
|||
//
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isMandatory()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMandatory(boolean mandatory)
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setValue(Object value)
|
||||
{
|
||||
|
|
|
@ -425,7 +425,7 @@ public abstract class WEditor implements EventListener, PropertyChangeListener
|
|||
{
|
||||
this.mandatory = mandatory;
|
||||
if (label != null)
|
||||
label.setMandatory(mandatory);
|
||||
label.setMandatory(mandatory && isReadWrite());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -123,17 +123,6 @@ public class WTimeEditor extends WEditor
|
|||
//
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isMandatory()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMandatory(boolean mandatory)
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setValue(Object value)
|
||||
{
|
||||
|
|
|
@ -551,10 +551,7 @@ DataStatusListener, IADTabpanel, VetoableChangeListener
|
|||
comp.dynamicDisplay();
|
||||
boolean rw = mField.isEditable(true); // r/w - check Context
|
||||
comp.setReadWrite(rw);
|
||||
if (comp.getLabel() != null)
|
||||
{
|
||||
comp.setMandatory(mField.isMandatory(true)); // check context
|
||||
}
|
||||
comp.setMandatory(mField.isMandatory(true)); // check context
|
||||
}
|
||||
}
|
||||
else if (comp.isVisible())
|
||||
|
|
|
@ -375,3 +375,7 @@ input:focus, textarea:focus, .z-combobox-inp:focus, z-datebox-inp:focus {
|
|||
border: 1px solid #7F9DB9;
|
||||
margin-right: -17px;
|
||||
}
|
||||
|
||||
.mandatory-decorator-text {
|
||||
text-decoration: none; font-size: xx-small; vertical-align: top; color:red;
|
||||
}
|
Loading…
Reference in New Issue