1
JqGrid默認搜索對話框中是否有任何選項可用於增加搜索中文本框的寬度。JQGrid默認搜索對話框,輸入字段寬度
下面是圖片:
更新代碼爲我的搜索如下:
jQuery("#subscriptions").jqGrid(
'navGrid',
'#pager',
{ del: false, add: false, edit: false },
{},
{},
{},
{
multipleSearch: true,
closeAfterSearch: true,
beforeShowSearch: function ($form) {
$(".searchFilter table td .input-elm").attr('style', 'width:400px');
$('#searchmodfbox_subscriptions').width(750);
return true;
},
afterRedraw: function ($form) {
$(".searchFilter table td .input-elm").attr('style', 'width:400px');
return true;
}
});
我也使用loadonce的選擇,因爲真正的在我的網格,因此我所有的搜索是本地的,並且不進行服務器調用。
感謝@avijendr但加入後beforeShowSearch我的搜索對話框是不開放。我檢查鉻控制檯,也沒有錯誤。 – nido
@nido - 這是jqgrid中的錯誤(在4.4中介紹)。我更新了答案您必須在beforeShowSearch中返回true。請讓我知道這是否有效。它適用於我本地! – avijendr
真棒,那就像一個魅力。謝謝! – nido