本文整理汇总了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);
}