Hi
Ramon,
Thanks for using Syncfusion products.
If could not able to see the
incident, kindly check your licence. only the licensed user will be able to
view the incident by using their DT account.
In order to achieve your
requirement, we have jquery fuction for the Cube Selector and Cube
Dimension Browser items to hide. Please find the same below.
Code snippet[.cshtml]:
<script type="text/javascript">
//Hide Cube selector dropdown list
$("#olapclient_CubeSelectorDropDown").hide();
$(".clientheader").hide();
$(".cubeSelector").hide();
//Hide entire cube browser window
$(".cubePanelTd").hide();
//Remove particular dimention from cube browser
$("li[tag='[Date]']").remove();
</script>
Please use below condition to removing specific
element.
Solution 1:
Use the below provided code to remove the
specific element.
Code Snippet:
$("li[tag='[Date]']").remove();
Solution 2:
Another alternate option is that you
can filter the cube elements directly in SSAS (SQL Server Analysis Service)
itself by setting roles for the OLAP Cube. Based on the role option set in
connection string only the applicable/permitted elements of the OLAP Cube will
be displayed in the control.
Example connection string pointing
roles: "Data
Source=http://bi.syncfusion.com/olap/msmdpump.dll; Roles=Role1; Initial
Catalog=Adventure Works DW 2008 SE;"
Please let us know if you have any concerns.
Thanks,
Prabu S.