如何禁用JEditable中字段的自动增长?

时间:2012-06-28 11:44:25

标签: jeditable

我一直在开发应用程序,我使用以下代码进行JEditable:

<script type="text/javascript" charset="utf-8"> 
        $(function() 
        {  
             $(".field").editable("http://"+document.location.host+"/index.php/welcome/update_record", 
             { 
                event  : "mouseover",
                style  : "inherit",
                autogrow: {
                    lineHeight : 0,
                    maxHeight : 0
                },
                submitdata: function (value, settings) {
                            return { "old_value": this.revert};
                },
                callback: function(value, settings) 
                {
                }
            });  
        });

我需要禁用字段的自动增长,以便如果用户在字段上移动,那么该字段将不会增长。如果用户在其上移动,现在字段会增长。我需要它,请帮忙。非常感谢你。

1 个答案:

答案 0 :(得分:1)

我已成功使用

width:'100%'作为参数。试一试。

<script type="text/javascript" charset="utf-8"> 
        $(function() 
        {  
             $(".field").editable("http://"+document.location.host+"/index.php/welcome/update_record", 
             { 
                event  : "mouseover",
                width     : '100%'
                style  : "inherit",
                autogrow: {
                    lineHeight : 0,
                    maxHeight : 0
                },
                submitdata: function (value, settings) {
                            return { "old_value": this.revert};
                },
                callback: function(value, settings) 
                {
                }
            });  
        });