本文整理匯總了TypeScript中@dataservices/virtualization/view-editor/view-editor.service.ViewEditorService類的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.ViewEditorService類的具體用法?TypeScript service.ViewEditorService怎麽用?TypeScript service.ViewEditorService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了service.ViewEditorService類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor( selectionService: SelectionService,
editorService: ViewEditorService ) {
this.selectionService = selectionService;
this.editorService = editorService;
this.editorService.setEditorVirtualization( selectionService.getSelectedVirtualization() );
}
示例2: numberSelectedItems
/**
* Get the number of selected items
* @return {number} the number of selected items
*/
public get numberSelectedItems(): number {
const selections = this.editorService.getSelection();
if (selections) {
return selections.length;
}
return 0;
}
示例3: getFirstSelection
/**
* Get the first item in the selections
* @return {SelectionItem} the first item in the selection list
*/
public getFirstSelection(): SelectionItem {
const selectedObj = new SelectionItem(this.editorService);
const selections = this.editorService.getSelection();
if (selections && selections.length > 0) {
selectedObj.setSelection(selections[0]);
}
return selectedObj;
}
示例4: virtualizationName
/**
* @returns {string} the name of the dataservice of the view being edited
*/
public get virtualizationName(): string {
const virtualization = this.editorService.getEditorVirtualization();
if ( virtualization ) {
return virtualization.getId();
}
// should always have a virtualization name so shouldn't get here
return "< error >";
}
示例5: readOnly
/**
* @returns {boolean} `true` if view being edited is readonly
*/
public get readOnly(): boolean {
return !this.editorService.getEditorView() || this.editorService.isReadOnly();
}
示例6: rows
/**
* @returns {Message[]} the log messages
*/
public get rows(): Message[] {
return this.editorService.getMessages();
}
示例7: hasSelectedView
/**
* Determine whether the editor has a view currently selected
*
* @return {boolean} 'true' if has a view selection
*/
public get hasSelectedView(): boolean {
const selView = this.editorService.getEditorView();
return (selView && selView !== null);
}