I am developing a Jenkins plugin. I almost completed the development. I facing one issue that is in dropdown/select element name and values are coming correctly after selection it's showing selected options id instead I want to show name as its readable but its selected value should be id.
What am i doing wrong? Can anybody provide me some samples? I am facing this issue from past 1 week.
thanks in adavace..
please see the attached image (https://i.stack.imgur.com/PvhGg.png)
and souce code is flinko plugin
In my plugin i have two dropdown list.after selecting any item it should display project name and set its value should be project id.
Current its showing project name correctly but after selection id is displaying.
I'm using a system that recently upgraded to Graylog3. In Graylog 2 dashboard widgets it was easy to click a button that looked like a "Play" triangle to dive into a query.
In Graylog 3 the widget looks like the image below and none of the options I've clicked on seem to get to the underlying query. If I edit the widget I can see the query and then go recreate it manually, but I just want a "one click" way to get to the underlying data so I can dig into it.
There is play button in graylog widgets from version 3.2.3
https://docs.graylog.org/en/3.2/pages/changelog.html#graylog-3-2-3
A Google Sheets data set is connected to Google Data Studio then explored in chart using data range.
For 1 or 2 days, data is visible in chart and we can also set range that period of time but after 2 days it shows the screen:
The data set is connected for some time or some days after this error occurs:
Data Set Configuration Error
Data Studio cannot connect to your data set. Failed to fetch data from the underlying data set.
I got the same issue, because I changed the owner of data source. I fixed it by changing the "data credentials".
This issue seems to be normally related to updates in underlying Spreadsheets data, for example, adding new columns. If that's the case, you can refresh the data source fields to get access to the data again. Also, check for changes in the file that might break the connection, like change of ownership.
In case this does not apply to your case, my suggestion is to go to the Data Studio Community site where you can check similar questions and even get responses by Data Studio team.
Looks like this issue may stem from the original source being a sheets file. I recently came across an issue where pointing to a view that is made off of a sheet tab was having this same exact problem.
We tried changing credentials, refreshing, etc and nothing worked. Turned out, you need to navigate to "Manage Data Sources" --> "Add Dataset" --> and select Google Sheets. You should be prompted to approve connection to Google Drive. Do this. Even if you are not literally pulling a sheet, do this. To be clear our workflow is as follows: team inputs information in sheets --> sheet is loaded in BQ --> create a view off of the table in BQ that is the sheet so we can manipulate as such --> point the dashboard to the view in BQ.
Upon doing so, refresh the connection and you should see data populate the table/chart.
In my case, it was the data source owner.
by changing the owner it works for me , because had a permission issue with the owner
Click on Data Credentials on the top menu.
Update Credentials Owner
I encountered this issue today(https://twitter.com/wey_gu/status/1385101021576372228), for the BigQuery data source being imported in data studio, for the reason the same data source can be imported properly by my project owner role account, it's suspected as permission caused issue.
By checking all predefined IAM roles related to BigQuery, it's found that the BigQuery Job User role is needed as the import action is underlying yet another BigQuery Job being triggerred.
Go to Edit Connection option in your Data Source. From here select the appropriate data sheet and click on RECONNECT OPTION. This is prompt if any issues identified in your excel and it will automatically fix the issue. Now you data set configuration error will be removed.
I am running VSTS/TFS extension developed by me and trying to display summary with data generated with extension once the Build/release completes, in build/release summary tabs .I am getting below message while trying to display my report in VSTS/TFS , Build/release summary tab
"****Extension Name Here**** is taking longer than expected to load. Learn More about this extension, including available support options. "
At times when I refresh my page this message get disappear and load expected data on summary tab
I have tried to find reason for this message with aid on online content but no clue found. Please be kind enough to provide some tips to get rid of this message and display data.
This happened in some of my extensions, too.
I solved it by loading the contents of the page asynchronously.
The initial page should load very fast. The processing of the data and following display of the results is only started when the page is loaded. When the processing is done, the contents of the page get updated. I did this by using an MVVM-like behavior with knockout.
Prior to 2.0p3 the user could choose to show hidden columns.
Is that still possible in 2.0p3? It does not appear to be, but is there an option to enable this? This functionality was nice in the previous versions, so I'm hoping it's not gone permanently.
I'm assuming you're talking about hiding and showing columns in the context of a grid.
When you are adding in your grid configuration, you must add the following config:
gridConfig: {
disableColumnMenus: false,
// more config options go here...
}
That will reenable ExtJS's default of showing the drop down menu on each grid column.
In SDK 2.0p3, we disabled the column drop down header by default due to a combination of inconsistent functionality and minor styling issues. I just filed a defect regarding this issue to make the column chooser more consistent with the rest of the app (such as the Backlog page).