Joomla日历表单字段只读

时间:2014-04-05 09:26:35

标签: xml joomla form-fields

我创建了joomla模块并添加了日历表单字段。

<field name="date" type="calendar" default="2010-01-30" format="%Y-%m-%d" label="Enter date" description="" class="date_field" />

当用户使用日历图标输入日期时,一切正常,但如果用户写入任何其他信息,则保存模块设置后一切都会崩溃。

我的想法是让输入字段只读,但如果我使用readonly =&#34; true&#34;,则比callendar图标消失。

2 个答案:

答案 0 :(得分:1)

我认为你需要做一些mootools或jquery-magick(取决于你的joomla版本)来禁用文本框中的手动输入。使用jquery,您可以执行以下操作:

jQuery('.calendar-textfield-class').focusin(function (event){
event.preventDefault(); 
jQuery(this).next('button').focus().click(); 
});  

如果用户尝试手动输入日期,则应触发日历选择弹出窗口。

关心Jonas

答案 1 :(得分:1)

jQuery(document).ready(function(){
    jQuery(document).on('keydown', '#jform_scheduled_time', function(event) {
       return false;
    });
});

Try this and user will not able to write anything in calendar box and for opening calendar pop up on click anywhere do this-

jQuery(document).on('focusin', '#jform_scheduled_time', function(event) {
           event.preventDefault();
           jQuery(this).parent().siblings(':eq(0)').show();
    });