Cubes & Live models Failing to Build/Publish
Hi Team, We are facing an issue all of our cubes are building to fail with below error, we are on Linux 2022.8 and Redhat 8.6, Rook-ceph storage. Build failed to start. Illegal state: Cannot set property schemaId because no setter, no wither and it's not part of the persistence constructor public com.sisense.cube.models.schema.logical.LogicalSchema(java.util.UUID,java.lang.String,java.util.Map,java.util.Map,java.lang.String). can anyone help on this. Thanks992Views0likes1CommentIs it possible to change the scroll bar color?
I have several pivots and tables that require scrolling through. Given that I have a dark background, the scroll bar is hard for users to see. Iād like to change the color to improve the user experience. Ideally, this would be done at a high level, but I would also be happy with any JS to do it at the widget level.4.8KViews0likes6CommentsBlack background when data yields no results.
Hi, I am trying to adjust my script so the black background continues to be black even when "No Results" are shown. Right now, I have a dashboard that has black background with white text, but the charts the don't yield any data at certain times revert to white backgrounds. Is there a way to make the background remain black when there are "No Results?" code excerpt: // APPLY GLOBAL STYLES dashboard.on('initialized', (dash) => { const styles = ` body { background-color: black !important; } widget-header { background-color: black !important; color: white !important; } .widget-title { color: white; } .widget-body, .widget-empty, .widget-body .no-data { background-color: black !important; color: white !important; } .widget-chart-container, .widget-chart-container .no-data { background-color: black !important; color: white !important; } text, .no-data-text { color: white !important; font-size: 16px !important; fill: white !important; } .x-axis text { text-anchor: middle !important; } .pivot-container { border: none !important; } .pivot-header, .pivot-cell, .pvtVal { background-color: green; } .pivot-header, .pivot-cell, .table-grid_row { color: white; fill: white; } .table-grid.table-grid--fixed.table-grid--columns.table-grid--top.table-grid--right.active { background-color: black !important; } .tablewidget-widget-content, .tablewidget-widget-content tr, div#grid_paginate { background: black !important; } .tablewidget-widget-content tr th, .tablewidget-widget-content td { color: white !important; } .tablewidget-widget-content tr:hover td { color: black !important; } // Additional styles for potential empty chart elements .chart-container.empty-chart, .chart-container .empty-message { background-color: black !important; color: white !important; } ` const styleSheet = document.createElement("style") styleSheet.innerText = styles document.head.appendChild(styleSheet) })Solved1.4KViews0likes2CommentsTabber Automatic Switching
Hello All, I am creating a dashboard that is displayed on a TV monitor and someone will not be able to manually click between the tabs. Has anyone had success creating a script that would switch between the two tabs automatically every 30 seconds?Solved2.5KViews0likes5CommentsHow to apply filters to customized drop-down list?
Hi, I've built a drop-down list with customized values; please see below: "type": "Input.ChoiceSet", "id": "data.filters[0].filterJaql.members[0]", "class": "", "value": "", "displayType": "compact", "choices": [ { "title": "Rule 1 - Unauthorized expense for airfare", "value": "Rule1", "type": "Filters", "Filters": [ "filterName" ] }, { "title": "Rule 2 - Unauthorized expense for lodging", "value": "Rule2" }, Now, I want to apply filters/save filters to these rules I created. For example, when I select Rule 1 in my drop-down list and click on the 'Apply' button, the whole dashboard will be dynamically changed after the selection. But I really don't know where should I add the filters in...should I add them into the action or should I just save the filters to the value below the ChoiceSet (as you can see here I've added filterName into Rule 1 already but it did not work)? Can someone help please š835Views0likes0CommentsHTTP Error REST_API Jupyter Notebook
Hi, I am using REST_API from the custom code section and want to query my elasticube but i am getting a below error: {'error': {'status': 401, 'httpMessage': 'Unauthorized'}} I am using the below query: logical_sql_res = sisense_conn.get_logical_sql(query=logical_sql, cube_name=cube_name) results = [x[:] for x in logical_sql_res["values"]] But facing issues, this was working fine last week. Can someone help?1.5KViews0likes1Comment