django-select2:如何在没有引号的情况下为templateSelection选项添加函数名?

时间:2015-04-12 22:33:09

标签: python django jquery-select2

我想使用select2提供的templateSelection选项。

将其添加到select_2options列表时,会使用引号进行渲染。

invited_user=forms.ModelMultipleChoiceField(queryset=User.objects.all(),
       required=True, 
       widget=Select2MultipleWidget(select2_options={
            'templateSelection': 'testformation',
            }))

返回:

 jQuery(function ($) {
     var hashedSelector = "#" + 
    "id_invited_user";$(hashedSelector).select2({
       "templateSelection": "testformation"}
     );
 });
带引号的

它没有被检测为js函数,因此它不起作用。

任何人都可以帮我解决这个问题吗?

0 个答案:

没有答案