0

私はアプリケーションを開発していて、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) 
                {
                }
            });  
        });

ユーザーがフィールド上を移動した場合にフィールドが拡大しないようにするには、フィールドの自動拡大を無効にする必要があります。これで、ユーザーがフィールドに移動するとフィールドが大きくなります。私はそれが必要です、助けてください。どうもありがとうございます。

4

1 に答える 1

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) 
                {
                }
            });  
        });
于 2012-07-23T16:27:58.113 に答える