DataGrid的欄位寬度通常是自動調整的,如何控制某些欄位讓他固定的寬度,以滿足使用者輸入的要求?
RWD的DataGrid是自適應寬度, 所以需透過CSS來改變欄位寬度, 可在EEPCloud中貼入Literal網頁組件, 並以CSS的方式在Html屬性中來改變欄寬, 如下:
<style>
  #dgMaster thead>tr>th:nth-child(3),
  #dgMaster thead>tr>th:nth-child(4){
   width: 150px!important;
  }
</style>
註: dgMaster為DataGird的ID, child(3),(4)為DataGird的Columns次序(從3起算)