我在我的Django管理员中使用CKEditor,例如我使用的特定表格:
class ChoiceForm(forms.ModelForm):
text = forms.CharField(widget=CKEditorWidget())
class Meta:
model = Choice
fields = '__all__'
使用settings.py中的正确配置,它可以正常工作。 现在的问题是text字段是textArea而我想要一个TextInput。 在使用CKEditor之前,字段是这样的:
text=forms.CharField(label='Name', max_length=100,
widget=forms.TextInput(attrs={'size': '20'}))
如何制作我需要的东西,使用CKEditor作为TextInput并使用特定尺寸?