I'm trying to resize a many to many field of django 1.8 admin.
models.py
from django.db import models
class Material(models.Model):
type = models.CharField(max_length=20, primary_key=True)
def __unicode__(self):
return self.type
class Pen(models.Model):
label = models.CharField(max_length=20, blank=True, default='')
materials = models.ManyToManyField(Material)
admin.py
from django.contrib import admin
from django.conf.urls import url
from .models import *
from django.forms import SelectMultiple
@admin.register(Pen)
class PenAdmin(admin.ModelAdmin):
filter_horizontal = ('materials',)
#formfield_overrides = { models.ManyToManyField: {'widget': SelectMultiple(attrs={'size':'5', 'width': '50px', 'style': 'width:50px'})}, }
def get_form(self, request, obj=None, **kwargs):
form = super(PenAdmin, self).get_form(request, obj, **kwargs)
form.base_fields['materials'].widget.attrs['style'] = 'width: 70px;'
return form
class Media:
js = ("js/resize_fields.js",)
@admin.register(Material)
class MaterialAdmin(admin.ModelAdmin):
pass
resize_fields.js
document.onload = function() {
document.getElementById("id_materials_to").style.width="70px";
};
As you can see I tried 3 approaches:
1: using formfield_overrides. It did not make any difference.
2: loading a javascript to resize the html object. It's firing up but not resizing it because the script seems to run before the widget is loaded.
3: using get_form. As shown below, it only resizes one of the select boxes.
Does anyone know how to resize it horizontally?
UPDATE: I discovered that:
class PenAdmin(admin.ModelAdmin):
formfield_overrides = {
models.ManyToManyField: {'widget': SelectMultiple(attrs={'size':'5', 'style': 'color:blue;width:250px'})},
}
would work since I removed filter_horizontal but I want to use filter_horizontal! If I'm not mistaken, the filter_horizontal option will use the MultiWidget which is apparently not passing the override attributes to sub-widgets. Still, I think there must be a solution where I can run a javascript after the page load. plz help