如何在odoo前端网站上显示日期时间字段

时间:2017-08-17 17:34:59

标签: openerp odoo-10 odoo-website

如何在odoo前端网站中显示日期时间字段。我试过各种方法,但不可能。 <input type="datetime"/>它在odoo网站上不起作用。 需要帮助。

1 个答案:

答案 0 :(得分:0)

尝试

<input type="datetime-local"/>

<!DOCTYPE html>
<html>
<body>

<p>
Depending on browser support:<br>
A date picker can pop-up when you enter the input field.
</p>

<form action="/action_page.php">
  Birthday (date and time):
  <input type="datetime-local" name="bdaytime">
  <input type="submit" value="Send">
</form>

<p><strong>Note:</strong> type="datetime-local" is not supported in Firefox, or Internet Explorer 12 and earlier versions.</p>

</body>
</html>

I所有浏览器都不支持输入类型datetime-local。所以在odoo中更好的是将数据存储在文本字段中。或者您可以将任何自定义库用于日期时间选择器。