<style>
  #temp-video-cover {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.3);
    transition: .15s;
    opacity: 0;
    font-family: "微软雅黑", "PingFangSC", "Helvetica neue", "Hiragino sans gb", "Arial", "Microsoft YaHei UI", "Microsoft YaHei", "SimSun", "sans-serif";
    user-select: none;
    -ms-user-select: none;
  }


  #temp-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  #temp-video-title {
    position: absolute;
    opacity: 0;
    right: 10px;
    top: 0px;
    transition: .15s;
  }

  #temp-video-container:hover #temp-video-title {
    display: inline;
    opacity: 1;
    top: 10px;
  }

  .FUI-dialog-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.8rem 0.5rem 1rem;
    background-color: rgb(0, 135, 205);
    border-color: rgb(0, 135, 205);
  }

  .FUI-dialog-header-title {
    font-size: 1rem;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
    color: white;
  }

  .FUI-dialog-header-close {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.25rem;
    border-radius: 0.9rem;
    color: #0088CE;
    text-align: center;
    transition: background-color 0.5s;
    cursor: pointer;
    background-color: #2FB8FF;
  }

  .FUI-dialog-header-close:hover {
    cursor: pointer;
    background-color: #6ACCFF;
  }

  .FUI-dialog-content {
    position: relative;
    flex-grow: 1;
    background-color: rgb(0, 135, 205);
    font-size: 0;
  }

  .FUI-dialog-footer {
    position: relative;
    height: 3rem;
    min-height: 3rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0.5rem;
    background-color: #F0F0F0;
  }

  .FUI-button-svg {
    display: inline-block;
  }

  #speed-box {
    background-color: #070707;
    border-color: #070707;
    color: #8B8B8B;
    display: flex;
    justify-content: flex-end;
    height: 2rem;
    align-items: center;
    font-weight: 200;
  }

  .speed-box-header {
    font-size: 0.9rem;
    cursor: default;
  }

  .speed-box-content {
    display: flex;
    font-size: 0.7rem;
  }

  .speed-box-content>div {
    width: 2.7rem;
    height: 1.2rem;
    background-color: #373737;
    margin: 0 0.5rem;
    text-align: center;
    line-height: 1.2rem;
    border-radius: 0.6rem;
    cursor: pointer;
  }

  .speed-box-content>div:hover {
    background-color: #555555;
    color: #FFFFFF;
  }

  .speed-box-content .speed-box-selected {
    background-color: #767676;
    color: #FFFFFF;
  }

  .speed-box-content .speed-box-selected:hover {
    background-color: #767676;
  }
</style>
<div style="text-align:right;">
  <a title="观看本节视频" href="javascript:showVideo();" style="text-decoration:none;">
    <img src="https://help.grapecity.com.cn/download/attachments/46173032/VideoPortal.png?api=v2" />
  </a>
</div>

<div id="temp-video-cover">
  <div id="temp-video-container">
    <div class="FUI-dialog-header">
      <span class="FUI-dialog-header-title">活字格视频</span>
      <div class="FUI-dialog-header-close" id="FUI-dialog-close" title="" onclick="closeVideo()">
        <span class="FUI-button-svg"></span><span class="FUI-button-text">&#10005;</span></div>
    </div>

    <div class="FUI-dialog-content">
      <div style="overflow:hidden;">
        <video id="temp-video" src="http://videos.grapecity.com.cn/HuoZiGe/Tutorials/v6.1/教学视频/表格设计-编辑设置.mp4"
          height="450" controls="controls" onplaying="startplay()">您的浏览器不支持播放此视频。</video>
      </div>
    </div>
    <div id="speed-box">
      <div class="speed-box-header">
        <div>倍速:</div>
      </div>
      <div class="speed-box-content">
        <div>0.5X</div>
        <div class="speed-box-selected">1.0X</div>
        <div>1.25X</div>
        <div>1.5X</div>
        <div>2.0X</div>
      </div>
    </div>
  </div>
</div>

<script>
  var videoContainer = document.getElementById("temp-video-container");
  var videoCover = document.getElementById("temp-video-cover");
  var video = document.getElementById("temp-video");

  function showVideo() {
    videoCover.style.display = "block";
    setTimeout(function () {
      videoCover.style.opacity = 1;
      video.play();
    }, 200);
  }

  function closeVideo() {
    videoCover.style.opacity = 0;
    setTimeout(function () {
      videoCover.style.display = "none";
      video.pause();
    }, 150);
    return false;
  }

  function setPlaySpeed(item) {
    video.playbackRate = parseFloat(item.textContent);
    document.getElementsByClassName("speed-box-selected")[0].classList.remove("speed-box-selected");
    item.classList.add("speed-box-selected");
  }

  var isplayed = 1;
  var startplay = function () {
    if (isplayed) {
      ga('send', 'event', 'Play Video', '活字格');
      isplayed = 0;
    }
    return false;
  }

  videoCover.onclick = function (e) {
    if (e.target.nodeName === "A") {
      closeVideo();
    }
  }

  document.querySelectorAll("#speed-box .speed-box-content>div").forEach((item) => {
    item.addEventListener('click', () => { setPlaySpeed(item) });
  });

</script>




1.描述

在活字格中,表格默认不允许编辑,您可以通过进行编辑设置,允许表格编辑、删除、添加新行等。

2.编辑设置

有两种方法进行编辑设置:

方法一 选中表格后,在功能区的“表格工具-设计-更新”区域,勾选“允许编辑”、“显示删除按钮”。勾选“允许编辑”后,即可勾选“添加新行”。

图1  编辑设置

方法二 选中表格并右击,在右键菜单中选择“表格设置”,弹出表格设置对话框,在“编辑选择”页签下,勾选“允许编辑”、“显示删除按钮”。勾选“允许编辑”后,即可勾选“添加新行”和“始终处于编辑状态”。

只勾选“允许编辑”时,按F2即可进入编辑状态;勾选“始终处于编辑状态”后,单击即可编辑数据,不勾选时需要双击进入编辑状态。

图2  编辑设置


允许表格进行编辑后,运行后在浏览器中就可以编辑表格中的数据,此时数据为紧绑定模式,即数据修改后会立即提交到数据库中。

例如,在浏览器中修改表格的数据,修改订单A001的订单日期为2017/5/20,删除A002订单,添加新订单A008,如下图所示。

图3  编辑表格数据

退出编辑状态后,数据就会提交到数据库中。

图4  数据库数据

3.拖拽行为

勾选“允许编辑”后,还可设置拖拽行为,包括允许拖拽下拉填值和允许拖拽以移动选择区域的位置。

此时数据为紧绑定模式,即拖拽后数据会立即提交到数据库中。

图5  拖拽行为

允许拖拽下拉填值

勾选后,选中一个单元格,鼠标放到单元格的右下角上,当鼠标变成黑色实心十字时,即可下拉,将单元格的值填到下一个单元格中。

图6  允许拖拽下拉填值

允许拖拽以移动选择区域的位置

勾选后,选中一个单元格或单元格区域,当鼠标变成十字箭头时,即可移动,将单元格移动到其他区域中。

图7  允许拖拽以移动选择区域的位置

4.编辑状态图标及提示

选中表格并右击,在右键菜单中选择“表格设置”,弹出表格设置对话框,在“外观”页签下,可设置编辑状态图标及提示,默认为勾选状态。

图8  编辑状态图标及提示

勾选后,修改或新增表格数据后就会在行头中显示修改或新增记录的图标,并且会在修改的单元格中显示下划线。

图标的颜色与行头单元格的字体颜色相同,新增的行的单元格中不会显示下划线。

图9  显示编辑状态图标及提示

您可以在表格样式中设置下划线的颜色。

在表格样式设置中,选择表格元素“单元格”,设置编辑提示色。

图10  设置编辑提示色


回到顶部