2,510 questions
0
votes
1
answer
49
views
Automatically color points by variable without showing legend, keep separate line legend in ggplot
I want to plot points in ggplot2 with colors mapped to a variable (director), but I don’t want a legend for the points. At the same time, I have a line (geom_smooth) colored by another variable (...
0
votes
0
answers
58
views
Show on hover javascript working great but how do I add or change to click for mobile?
I have a map where a user can mouse over a number on the map and have an info card pop up. Then when they click on the number it links to the card infos website.
This doesnt work on mobile because ...
1
vote
0
answers
49
views
How to restrict the type of an instance when the instance requires a "* -> *" type in Haskell? [duplicate]
I'm trying to design a type that holds some value and keeps track of all operations done upon it. It does this by storing them in string format (this is not for a project, just learning)
I tried to ...
1
vote
1
answer
84
views
JQuery Popup Reset
Sorry I'm pretty hopeless with Javascript. I have a script that shows a popup which then fades out. But I cannot get it to reset. The code as it stands only works once.
function myFunction$users5()...
0
votes
1
answer
43
views
I can't make the last line spread across in my display
I have the following code to print a schedule from inputs but can't make the last line spread under the like the header does.
My showRecord code is as follows...
Class Appointment:
def __str__(...
0
votes
1
answer
254
views
WooCommerce: Show or hide Out of Stock button depending upon stock conditions
I've got a button that should appear depending upon whether or not a product or one of its variations (if it's a variable product) is out of stock. If it's in stock, don't display it.
Been playing ...
0
votes
1
answer
103
views
TYPO3 gridelements accordeon show
I am using TYPO3 11.x with bootstrap_package an gridelements.
Because I want to make an accordeon with different types of content I've integrated gridelements w/dataprocessing.
It almost works, but I ...
1
vote
1
answer
22
views
jquery working only first item when another items was hidden
I wrote a jquery for show more and show less item. It works fine only for first item. But when I am going another item and select to show more item. It's not working. I understand that when I am ...
0
votes
0
answers
86
views
how to Show Heads-up notification when app is closed
I have used Service to get headsup notification from io.socket connections in my android kotlin project. Notification working if app is open. But, its not working when the app is closed. What should ...
0
votes
1
answer
131
views
How to link two cell so that if you insert text in a cell the other become unhidden?
I have an excel document with two sheets. If you put text in the C column of the first sheet, it should unhide the corresponding block of cells (for exemple C6 in the first sheet is equivalent to row ...
0
votes
0
answers
41
views
Is there a way to have this code in a regular module and not in a worksheet module?
I would like to know if there's a way that the following code could work as a regular module with modifications.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Target.Offset(1, 0)....
1
vote
1
answer
2k
views
How to write terraform plan to a tab in azure devops pipeline summary?
Some Terraform extensions like this are providing a feature to publish Terraform plan to a tab in the pipeline run overview/summary.
Terraform task published by Microsoft DevLabs is not currently ...
1
vote
2
answers
145
views
is there a way to hover over a text and show some other text? which is in another div
So i saw these post 1
and this one for hover on div to change another div 2
on which you hover over some image and it shows the text
I tried doing it with text and it works just fine. Now i tried to ...
0
votes
1
answer
28
views
To add page views of certain documents in SharePoint
I am not able to add a feature to show the user how many users have seen the certain page in SharePoint. Please help with it.
To create a new feature that will be able to give the user insight about ...
0
votes
3
answers
266
views
How can I close a popup when clicking another one?
I have a problem.
I have a series of popups and I am not able to make the opened one closing when opening another.
I'd like to have a result in which I open one of them and it closes when I open ...
1
vote
0
answers
628
views
'show' is not recognized as an internal or external command, operable program or batch file
After successfully executing mongod --version command, when I tried running show dbs command to view database it is showing me the error:
'show' is not recognized as an internal or external command,
...
0
votes
1
answer
203
views
how do I make a variable value show text in html?
I need to make a specific number (0 through 2) show certain text for a rock paper scissors game.
I haven't tried anything yet but I can't think of anything. If someone could please make a variable ...
0
votes
1
answer
111
views
await this.showPopup(''); don't show the Popup
I wanted to show the CreateOrderPopup in Odoo15 BUT it's not showing and there is no error message.
I created 2 logs : ffffffff and QQQQQ
the fffffffff is shown in the logs but the QQQQQ which is ...
1
vote
1
answer
117
views
mlrun cann't show the traning graph by AttributeError(\"'K8sHelper' object has no attribute 'v1api'\")
I have run mlrun by docker-compose. But when I finished the sample training, I couldn't see the results graph on the management pages. I get 500 error and the details likes:
{
"data": {
&...
1
vote
1
answer
32
views
Rendering the entire http path of my ruby on rails web app
I have a simple web app built on rails called wishlist. The logic of the app is as follows:
User Enters the homepage
User can either start a new wishlist || view his wishlists
When the user clicks on ...
0
votes
0
answers
129
views
Show/Hide footer on scroll
Im trying to make a footer fully showing in the bottom once I scroll.
https://teste.contahl.com/
It is working on desktop, but not in mobile, can someone help me with?
Tkx
CSS---
footer{
position:...
1
vote
0
answers
140
views
How to show axis coordinate information on a bokeh plot?
I currently have Hover implemented but it's a hassle with so much information to show.
That's why I need to make an axis for my bokeh figure() that shows at the end the information of my axes, Date ...
1
vote
1
answer
79
views
Show and Hide Div based on range slider value using jQuery
I am trying to show a div when the input value reaches 2019 using a range slider. What am I doing wrong? is it something simple. Here is my JSfiddle
$(function() {
$( "#slider" ).slider({
...
0
votes
0
answers
49
views
Jquery can't find content of div which itself show that div
I show hidden div via $('#something').show() but when
I search in content via jQuery, jQuery can't find my search, but jQuery can find already displayed div!
Why?
In the beginning class full_text's ...
0
votes
1
answer
63
views
Can I change a function that uses for loop to a faster one with only pure JavaScript, (no jQuery)?
I have the following function that is used to show one div and hide all others.
async function showHide(showId, hideList) {
let ele = document.getElementById(showId);
await hideList.forEach(...