Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
編集フォーム ダイアログを更新して、その場で作成されたグリッドに更新されたオプションを適用する方法はありますか? 基本的に、ドロップダウンリストの値が変更されたときにいくつかのプロパティを変更する必要があり、ダイアログにそれらの変更が反映されます。たとえば、プロパティ editable を更新してフィールドを非表示にします。
container.jqGrid('setColProp', fieldName, { editable: false});
その方法はありますか?
グリッドのロード時に送信されるポストバックに列データを設定できます。url プロパティで URL を設定します。
url: $("#BlendGrades").jqGrid({ url: '/Storage/GreenStorage/SetSectionList?q=2&location.Id=' + '<%:Model.Location.Id%>', datatype: "json", .....