- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Java Smartsheet API。
根据Smartsheet文档
"Formatting data can optionally be included for columns, rows, and cells by adding the “include=format” query string parameter to any API operation that returns any of those objects (for example, GET /sheets/{sheetId}, GET sheets/{sheetId}/rows/{rowId}, etc.). When this parameter is included, objects that contain non-default formatting will include a format property. Objects which do not have any non-default format settings applied will exclude this property."
我使用以下构造函数创建类 SmartSheetTableModel:
private SmartSheetTableModel(long sheetId, EnumSet<SheetInclusion> includes, EnumSet<ObjectExclusion> excludes, Set<Long> rowIds, Set<Integer> rowNumbers, Set<Long> columnIds, Integer pageSize, Integer page) throws SmartsheetException {
this.sheet = smartsheet.getSmartsheet().sheetResources().getSheet(sheetId, includes, excludes, rowIds, rowNumbers, columnIds, pageSize, page);
}
这里我用 FORMAT 参数调用它:
SmartSheetTableModel sheet = new SmartSheetTableModel.Builder(id).setIncludes(EnumSet.of(SheetInclusion.FORMAT, SheetInclusion.COLUMN_TYPE, SheetInclusion.FILTERS)).setRowNumbers(new HashSet<>(Arrays.asList(new Integer[] {1, 2}))).build();
尽管提供了 FORMAT 参数,但对行、列和单元格的 getFormat() 调用始终返回 null。然而,在网页表中,我看到行有不同的颜色。
有什么想法吗?
最佳答案
好的,我发现 Smartsheet 中的行可能具有条件格式。
关于java - smartsheet cell.getFormat() 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39525962/
如何设置 DateTimeFormat 以显示如下内容:“周三-周日。” “周一至周日。” “周一至周日。” “周一至周日。” “周一至周二” DateTimeFormat dtfDate = Dat
我有一个 IFormatProvider 记录它传递的类型: internal class LoggingFormatProvider : IFormatProvider { public o
本文整理了Java中at.huber.youtubeExtractor.YtFile.getFormat()方法的一些代码示例,展示了YtFile.getFormat()的具体用法。这些代码示例主要来
我使用 Java Smartsheet API。 根据Smartsheet文档 "Formatting data can optionally be included for columns, row
本文整理了Java中com.android.dx.io.instructions.ZeroRegisterDecodedInstruction.getFormat()方法的一些代码示例,展示了Zero
这个问题已经有答案了: non static method cannot be referenced from static context [duplicate] (6 个回答) 已关闭 2 年前。
本文整理了Java中pl.edu.icm.model.bwmeta.y.YContentFile.getFormat()方法的一些代码示例,展示了YContentFile.getFormat()的具体
本文整理了Java中org.pentaho.di.trans.steps.yamlinput.YamlInputField.getFormat()方法的一些代码示例,展示了YamlInputField
需要一些帮助!!! 我的应用程序在 Android 5.0 Lollipop 上崩溃,但出现以下异常。它适用于以前的版本。 java.lang.NullPointerException: Attemp
我是一名优秀的程序员,十分优秀!