BBA Copy Edit View To Excel 1.2

为了快速简便地调整字段的column index和字段的tab index

Ekde 2017/02/26. Vidu La ĝisdata versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @version        2016.09.12
// @name        BBA Copy Edit View To Excel 1.2
// @namespace   BBACopy2Excel
// @author	      fengguan.ld~gmail。com
// @include     *192.168.3.8/BBA*
// @encoding       utf-8
// @grant          unsafeWindow
// grant          GM_openInTab
// @description 为了快速简便地调整字段的column index和字段的tab index

// ==/UserScript==
$(function () {
  $("[ID$=lblTitle]").click(function(){    
    alert("duang");
  });
  var $btnCopy2Excel = '<input type="button" value="Copy to Excel" id="btnCopy2Excel" class="button" style="margin-right:20px;width:120px;" >';
  $("[ID$=lnkHelpText]").before($btnCopy2Excel);
  $("#btnCopy2Excel").click(function(){    
    $tblMail=$("[ID$=tblMain]");
    $tblMail.find(".tabDetailViewDL input,img").hide();   
  });
});