Ant design 去除展開按鈕與按鈕觸發行展開


可以通過屬性控制

expandIconAsCell={false}   // 去除表格標題欄+號

expandIconColumnIndex={-1} // 去除表格body里的+號

 

或者通過屬性 expandedRowKeys 來控制

// 只允許當行展開邏輯
      if (this.curExpandedRowKeys.length > 0) {
        let index = this.curExpandedRowKeys.indexOf(rowkey);
        if (index > -1) {
          this.curExpandedRowKeys.splice(index, 1);
        } else {
          this.curExpandedRowKeys.splice(0, this.curExpandedRowKeys.length);
          this.curExpandedRowKeys.push(rowkey);
        }
      } else {
        this.curExpandedRowKeys.push(rowkey);
      }
    }

參考鏈接1 或者 參考鏈接2


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM