width property has no effect when using completer
- Langage dominant
- TypeScript
- Étoiles
- 1.6k
- Forks
- 867
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Hi,
I have the following
@typescript
```
const medication_settings: Object = {
columns: {
medication: {
title: 'Medication *', filter: false,
editor: {
type: 'completer',
config: {
completer: {
data: medications,
searchFields: 'medication',
titleField: 'medication',
}
}
},
width: '75px',
},
strength: {
title: 'Strength *', filter: false, width: '100px',
editor: {
type: 'completer',
config: {
completer: {
data: medications,
searchFields: 'strength',
titleField: 'strength',
}
}
}
},}
```
Neither width property has any effect on the width of the input field; the default field length cannot change. Is this the expected behaviour for completer? The width does work when completer is not used.
Cheers
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.