• Easyui DataGrid combobox联动下拉框内容


    发票信息下拉框联动,更具不同的发票类型,显示不同的税率

    专票

    普票

    下拉框选择事件

    1. function onSelectType(rec){
    2. //选中值
    3. if (rec=='2'){
    4. //普通发票对应税率
    5. pmsPlanList.pmsInvoiceTaxRate=pmsPlanList.pmsInvoiceTaxRateT
    6. }else {
    7. //专用发票对应税率
    8. pmsPlanList.pmsInvoiceTaxRate=pmsPlanList.pmsInvoiceTaxRateP
    9. }
    10. var row =$("#dgPmsPlanList").datagrid('getSelected');
    11. //获取行号
    12. var rowIndex = $("#dgPmsPlanList").datagrid('getRowIndex',row);
    13. var target = $('#dgPmsPlanList').datagrid('getEditor', {'index':rowIndex,'field':'taxRate'}).target;
    14. //清除原来的数据
    15. target.combobox('clear');
    16. //加载新下拉数据
    17. target.combobox('loadData',pmsPlanList.pmsInvoiceTaxRate);
    18. }
    1. <table id="dgPmsPlanList"
    2. data-options="
    3. fit: true,
    4. border: false,
    5. rownumbers: true,
    6. animate: true,
    7. collapsible: false,
    8. fitColumns: true,
    9. autoRowHeight: false,
    10. toolbar:'#toolbarPmsPlanList',
    11. idField :'id',
    12. singleSelect: true,
    13. checkOnSelect: true,
    14. selectOnCheck: false,
    15. pagination:false,
    16. onDblClickRow:onDbClickRowEvent,
    17. pageSize:dataOptions.pageSize,
    18. pageList:dataOptions.pageList,
    19. showFooter:true,
    20. striped:true">
    21. <thead>
    22. <tr>
    23. <th data-options="field:'pmsInvoiceType', halign:'center'" width="70" editor="{type:'combobox',options:{required:true,panelHeight:'auto',onSelect: onSelectType}}">
    24. <span style="color: red;">*span>发票类型
    25. th>
    26. <th data-options="field:'taxRate', halign:'center'" width="70" editor="{type:'combobox',options:{panelHeight:'auto',editable:false}}">
    27. <span style="color: red;">*span>税率
    28. th>
    29. tr>

  • 相关阅读:
    Android Studio常见问题
    PRCV 2023 - Day3
    Python中最快的循环方式
    awk根据某个字段过滤文件航
    IP协议从0到1
    STM32 HAL库高级定时器输入捕获脉宽测量
    Vue01-vue的简介
    Leetcode刷题详解——岛屿数量
    java面试题
    Linux网络命令
  • 原文地址:https://blog.csdn.net/qq_29950673/article/details/134350386