flowable / flowable/flowable-engine
Default value missing in 'Change value for "Form properties"'
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Java
- Estrellas
- 9.5k
- Forks
- 2.9k
- Merge medio
- 7 h 8 min
- PR fusionados (30 d)
- 2
Descripción
The FormProperty interface contains a method definition: String getValue();. This field is missing from the popup. So you cannot assign a property with a literal.
public interface FormProperty {
/** the key used to submit the property in {@link FormService#submitStartFormData(String, java.util.Map)}
- or {@link FormService#submitTaskFormData(String, java.util.Map)} /
String getId();
/* the display label /
String getName();
/* one of the types defined in this interface like e.g. {@link #TYPE_STRING} /
FormType getType();
/* optional value that should be used to display in this property /
String getValue();
/* is this property read to be displayed in the form and made accessible with the methods - {@link FormService#getStartFormData(String)} and {@link FormService#getTaskFormData(String)}. /
boolean isReadable();
/* is this property expected when a user submits the form? /
boolean isWritable();
/* is this property a required input field */
boolean isRequired();
}
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza con la interfaz FormProperty y sigue el popup etiquetado como "Change value for Form properties" para encontrar dónde se ensamblan sus campos. Comprueba cómo se representan getId(), getName(), getType() y getValue(), y verifica después que se puede introducir un valor predeterminado literal y que este se refleja en la propiedad del formulario.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- java
- Área
- frontend
- Tipo de issue
- Error
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 45/100