Has anyone able to make a column to be hyperlink in cross table in Spotfire? I can set the column to Link Render in regular table, but not in cross table.
This isn't supported in Spotfire cross tables. However, you can use a graphical table and configure it such that clicking on a cell will navigate to a target url by configuring the "Action" button in the Axes settings so that it will perform an action upon click, and then use a small IronPython script to open the target url in a browser
I think it's not possible in crosstable. As #TWAndrews says, you can use a graphical table and for example, create an icon and perform action on click on this icon. This action could be a link to navigate in the Dashboard, a http:// link, and more other possibilities.
Use a link in a crosstable will work in webplayer and in computer software.
Related
I have following query:
AppMetrics | where Name=="ReportImported"| summarize Value=count()
I would like to show the value in a dashboard, and it looks like this:
Is there anyway to only display the number and not having it displayed as a list with a Value column?
You can use an Azure Monitor Workbooks to achieve this.
From your Azure Portal, go to Monitor and look for Workbooks on the left pane. Then click New to create a new Workbook, followed by the Add query button.
At this point you can already paste your query in the query console window. Select your Log Analytics Workspace and make sure to run the query to validate it works. Under the Visualization drop-down, choose Tiles and a new Tiles settings will appear on the right. Click on that to bring up the settings page.
Here the only thing I configured was the Left Tile field. Set your values accordingly and check the custom formatting box. Click Apply to see the changes reflect. You can explore other features here and then click on Done editing if you're satisfied. Finally, click on Done editing and save your workbook.
Now for the next step, the Workbook needs to be in edit mode again. Edit it and then click on the Pin icon. A pop-up shows up, explaining two options you have for pinning. Look to the right you'll see another 'item-level' pin. Click on that and choose your dashboard.
It should show up in your dashboard with the Workbook name as the title and a number as the only content of the tile.
It might seem a bit complex but that's the only method I found today, after struggling for a solution for a few weeks. Workbooks are very powerful and allow for very rich visualization!
There isn't a suitable tile in the Tile Gallery that can do this straight out of the box. There is a similar open idea on User Voice.
The closest I could get to doing something similar is by using the Workbooks feature in Azure Monitor, that would look like this when pinned to the dashboard:
Here are the steps to create the above visual:
Navigate to your Log Analytics Workspace
Create a new workbook > Add query
Add your log analytics query and run a preview
Configure the Tile settings as follows:
Change the Visualization dropdown to Tiles and then select Tile Settings.
Set the Title and select Left. Change the value for Use column: to Count, and Column Renderer to Big Number.
After saving the query step but before saving the workbook, select the pin option and pin this query step to your Azure dashboard as follows:
With this approach, you can leverage a range of visualization options and features that Azure Monitor Workbooks offer, creating rich visual reports and interactive experiences.
I am trying to create a table using the Tabulator library, and I'm encountering a problem with accessibility.
Using any of the examples on the Tabulator site which have column sorting, I need to tab into the column and use the space bar or enter key to sort the column (simulating a click or a touch). However, I am unable to use keyboard to access the columns - it appears that only a mouse click is possible.
Are there any settings when declaring my columns that I can use to gain keyboard accessibility to the columns?
This functionality is not built in at present, If you would like to see the functionality added to the library please create a Feature Request
We want to be able to add and update HTML tables for our rich text using a Rich text editor. We need a button(or buttons) providing us the
Ability to add HTML table. On click of the button, user should be
able to specify the number of rows and columns in the table
Ability to add columns to existing table
Ability to remove columns from existing table
Ability to add rows to existing table
Ability to remove rows from existing table
As an admin user, in Crafter Studio go to the "Administration" panel for a given site. There you will find a tool called "Configurations." Using this tool, select RTE Configuration. This will load the RTE configuration for the site. This is where you will make your updates.
The RTE configuration file allows you to define "setups." Each setup has a name (the default one is called 'generic'.) An RTE can be assigned a given setup.
Each setup has tags for toolbar configuration called toolbar1, toolbar2, toolbar3, and toolbar4. This is where you configure the buttons available to the RTE. The possible options are listed here: https://www.tinymce.com/docs-3x//reference/buttons/
The button names you are looking for are:
table
tablecontrols
row_props
cell_props
delete_col
delete_row
col_after
col_before
row_after
row_before
split_cells
merge_cells
I have requirement in my project to copy a table from web page to excel. Here the table appears on web page only when we mouse overs a word.
How can I copy the specific table required to an excel using VBA. Is it possible to copy from source code?
You mean the table is not visible unless the mouse hovers a specific part of the page? Then yes, you should be able to use VBA to extract it from the page's source, as it is most probably embedded in it. You can verify it by Inspecting that text or looking at the source.
I have two connected DataFormWebparts on a site page, with one web part filtering the data in the other, and this works fine as long as the design style allows the options to be clicked on i.e. the information is laid out in text format.
However If I change the style to be a drop down list then the filtering no longer works. I'm assuming this is because there is no longer a hyperlink to trigger off the event, but is there a way to make it work in this format?
jquery to the rescue. hide the links. show the dropdown and with jquery or javascript, trigger the link click on dropdown index change. try to google out. hope these hints help
faced same issue. i did this as i had less time