width property has no effect when using completer
- Vorherrschende Sprache
- TypeScript
- Sterne
- 1.6k
- Forks
- 867
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
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
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.