问题标签 [nebula]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
27 浏览

java - 如何在 Nebula ospackage 中使用带有特定 rpm 版本的 `requires` 指令?

我在 gradle build 脚本中使用它,例如

但我想像这样使用它

有什么办法吗?

0 投票
1 回答
41 浏览

eclipse - NatTable:如何访问特定列的列标题?

在下面的示例中,

列标题文本垂直对齐,如何将此样式应用于特定列而不是所有列,寻找指导。提前致谢

0 投票
1 回答
303 浏览

angular - 在 Angular 2 的 Nebular 的 NbTabset 中运行事件

我怎么能NbTabset nebularfrom中执行一个事件angular 2

在不详细的文档中,我将感谢您的帮助,无论是否可以function NbTabset

0 投票
1 回答
44 浏览

nebula - 在 Eclipse 的 NatTables 中复制标题

当某些行被复制到剪贴板时,我也想每次都复制行标题。我发现了这个: 用于将 SelectionLayer 中的选定数据复制到剪贴板的处理程序类。默认情况下,此处理程序在 SelectionLayer 中注册,不引用标题区域。您可以通过将此处理程序的实例注册到 SelectionLayer 上方的层来覆盖复制数据行为。这样,注册的自定义实例将使用 CopyDataToClipboardCommand 并且不会调用注册的默认处理程序。

但我不太明白。我在跑步:

}

可以只更改一些配置吗?或者我应该实现自己的处理程序来覆盖默认行为?

0 投票
1 回答
259 浏览

angular - 在执行 nbStepperNext 之前验证 NbStepperComponent 中的表单

我正在使用 nebular 的NbStepperComponentAngular 2到目前为止它工作正常,只是当我进入下一步时,我想从 a 执行先前的验证function并执行nbStepperNext,但我不知道如何nbStepperNext从 a执行function,因为它的文档它直接从 HTML 中完成,就像这样<button nbButton nbStepperNext> next </button>

我想:“nbStepperNext从函数执行”

类似的东西,但我不知道正确的语法:

我的基本代码

0 投票
1 回答
84 浏览

eclipse - 如何在 nattable 中按列标题层分组实现文本换行

我想在标题标题中实现文本换行。我还在顶部列标题层上添加了逐层文本换行在具有以下配置的按标题区域中不起作用。如何在这种情况下实现文本换行

这是 groupBy 配置:

0 投票
1 回答
46 浏览

nattable - NatTable - 使用单元格内的行分隔符复制和粘贴单元格数据

我的复制和粘贴适用于 Nattables。问题来了,如果某个单元格包含行分隔符。当我粘贴数据时,行分隔符被视为行分隔符,我的表结构被破坏。

CopyDataToClipboardCommand.class

cellDelimeter 设置为\t并且 rowDelimeter 设置为\r\n

有问题的单元格内部是用\n. 对此有任何想法吗?

0 投票
1 回答
15 浏览

nattable - NatTable - 如何实现自定义 CopyDataToClipboardSerializer

CopyDataToClipboardSerializer我需要覆盖copiedCells变量。

我确实使用NatTableFactory.class创建表格、注册新表格CopyDataCommandHandler、覆盖表格样式等的地方。但我不知道如何覆盖CopyDataToClipboardSerializer. 还是我应该注册新的并创建自己的课程?

0 投票
1 回答
337 浏览

angular - 在星云步进器的任何一步中移动

我正在使用Nebularin angular 2,我正在使用stepper四个步骤,如何使用步骤的按钮移动到任何所需的步骤?之前没有选择步骤 ?,例如 from step 1to step 4或 from step 1to step 3,但它不允许我执行这些操作。

在此处输入图像描述

对于此示例,我将使用文档中的代码。nbstepper 组件

0 投票
1 回答
34 浏览

eclipse - How to show complete header label name in Select Columns header menu dialog(Column Chooser),when header column labels contain new line character?

I've header menu configuration added in my nat table as follows,where I've included "Select Columns" menu as well:

//If header name consists of multiple words then I've used ("\n") as a separator between words in //the header column name ,so that some space could be saved

// In that case on opening "Select Columns" context menu dialog only first word of column is visible

Can it be fixed by replacing all "\n" and white space character by single white space(" ") character in In org.eclipse.nebula.widgets.nattable.columnChooser.gui.ColumnChooserDialog //code to replace extra white spaces or new line character from column label with single space so that //header name is completely visible in populate tree method treeItem.setText(columnEntry.getLabel()); In that case can fix be provided to replace extra space with single space in column header name or is there any other alternative to fix it? Image with header names having multiple words For eg:"Issue Date",if header name is dispalyed as "Issue\nDate",only Issue is visible in "Select Columns" context menu dialog