未定义符号'jquery.include_datepicker'

时间:2017-06-09 09:40:33

标签: jquery tapestry

我和this家伙有类似的问题,但那里仍然没有答案。

也许酷的家伙可以帮助我。提前谢谢。

这是我在AppModule.java中的contribJavaScriptStackSource

public static void contributeJavaScriptStackSource(MappedConfiguration<String, JavaScriptStack> configuration, @Symbol(JQuerySymbolConstants.SUPPRESS_PROTOTYPE) boolean suppressPrototype) {
    configuration.overrideInstance("core-datefield", JQueryDateFieldStack.class);
}

1 个答案:

答案 0 :(得分:0)

您似乎需要使用其中一个符号提供程序为此符号定义值,即ApplicationDefaults

public static void contributeApplicationDefaults(
        MappedConfiguration<String, Object> configuration)
{
    // ... set it to "true" or "false" explicitly
    configuration.add(JQuerySymbolConstants.INCLUDE_DATEPICKER_I18N, "true");
}

如果设置为“true”,则库将尝试使用本地化消息source code is here