當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Table.ts.default類代碼示例

本文整理匯總了TypeScript中ts/ui/Table.ts.default的典型用法代碼示例。如果您正苦於以下問題:TypeScript ts.default類的具體用法?TypeScript ts.default怎麽用?TypeScript ts.default使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ts.default類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

btnBatchCataloger.click(function () {
	let checked = tb.getCheckData() ;
	if(checked && checked.length){
		console.log(checked);
		cache.set('checkedBatchCategory' , checked);

		let prog = checked[checked.length-1];
		let assetName = prog['assetName'], assetId = prog['assetId'], orderId = prog['orderId'] ;

		let pop = parent.opg.confirm(`<iframe src="${infoPage}?isBat=1&assetId=${assetId}&orderId=${orderId}" />`, function (i, ifr) {
			ifr.doSave(true , pop, tb);
			return true;
		}, {
			title: `編目: ${assetName}`,
			btnMax: true,
			width: 900,
			height: 500,
			buttons: {
				ok: {
					className : 'btn-success' ,
					text : '完成編目'
				},
				cancel: '返回'
			}
		}).toggle();
	}
	else{
		opg.warn('請選擇批量編目工單');
	}

});
開發者ID:rpdg,項目名稱:fy.js,代碼行數:31,代碼來源:index.ts

示例2: function

window['getChecked'] = function () {
	let row = tb.getCheckData();
	if(!row){
		opg.warn('請選擇節目');
	}
	return row;
};
開發者ID:rpdg,項目名稱:fy.js,代碼行數:7,代碼來源:copyrightMedium.ts

示例3:

		opg.api.putBack(param, data => {
			tb.update();
			opg.ok(data, () => {
				pop.close();
				parentPop.close();
			});
		});
開發者ID:rpdg,項目名稱:fy.js,代碼行數:7,代碼來源:putBack.ts

示例4: function

window['getChecked'] = function () {
	let rows = tb.getCheckData();
	if(!rows){
		opg.warn('請選擇地域');
	}

	return rows;
};
開發者ID:rpdg,項目名稱:fy.js,代碼行數:8,代碼來源:regions.ts

示例5:

$('#btnBatchDelete').click(function () {
	let checked = tb.getCheckData() ;
	if(checked && checked.length){
		console.log(checked);

	}
	else{
		opg.warn(`請選擇${moduleName}隊列`);
	}

});
開發者ID:rpdg,項目名稱:fy.js,代碼行數:11,代碼來源:index.ts

示例6: function

			opg.api.updateContract(param, function () {
				if (!isEdit) {
					opg.ok(`合同"${contractNumber}"節目新增成功`);
				}
				tb.update();
				pop.close();

				if (nextStep)
					nextStep(contractId, tb);
				else {
				}
			});
開發者ID:rpdg,項目名稱:fy.js,代碼行數:12,代碼來源:detail.ts

示例7: function

			opg.ok('成功發起' , function () {
				tb.update();
			});
開發者ID:rpdg,項目名稱:fy.js,代碼行數:3,代碼來源:index.ts


注:本文中的ts/ui/Table.ts.default類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。