Cannot select bottom row in a browse if "full" - progress-4gl

I have a strange issue where if the browse is full of rows (but the scrollbar has not yet appeared) then the bottom row cannot be selected. Also there is no tool-tip when hovering over the bottom record.
It seems to be irrespective of the set row-height-chars and height-chars or indeed any of the properties. I only get the issue in version 10 and I cannot recreate it in version 11.
Thanks

No official fix yet from Progress so I'll answer my question to that effect:
https://knowledgebase.progress.com/articles/Article/P178111/p

Related

Grafana Table next/previous/number per page possible?

I need help! I also reported this on grafana community. I hope someone has this experience with me here.
I have a table with couple of rows (per day) with LCD gauge cell display mode each columns. As the Dates grows, it will pile up and they will scroll up/down to it. (Refer to screenshot below)
Would it be possible to group it by 7 or 10 per page/view or depending on the value set? And just have the Next/Previous button for other page, and at the same time still has cell display mode applied?
Im looking at the DataTable Panel, but it doesn’t support the cell display mode (like LCD gauge).
Looking forward for some of your answers. Thanks!
Thanks for confirming the version; so paginations i.e. setting up rows per page was definitely an option in pre v7 table panel but it seems they have dropped the support in v7.
check this link pls -
https://community.grafana.com/t/pagination-in-table-grafana-7-0/31170

VisualStudioCode - how to enable current cursor position

How do I enable this view? To show current cursor position (line, column) and number of selected characters? I think I've checked all possible values in the settings, yet I still do not know where to find it.
If you don't see the position and selection count, it is probably the case that you have too much items in the status bar. Disable the ones are not relevant to you by right clicking on the status bar:
Also if you don't use your entire screen width, they also disappear if there isn't enough real-estate. Unfortunately I don't think there is a way to set priority to the items.
Please follow these steps
View -> Appearance -> Show Status Bar
It looks like the functionality you ask about was added quite recently. Here it is said that "line number and column number are shown in version 1.46, May 2020. On selection, they disappear."

Mark Labels Not Displaying In Tableau 2018

Others have asked this question before, but no one has provided an actual answer to it. I can't get all of the marks/labels to display in my Tableau visualizations.
Selecting "allow labels to overlap" does not fix the problem. That displays several hidden labels for the smallest of the areas, and it places those labels at the top of the bars, ignoring the formatting that sets the labels to the bottom. However, whether or not that option is checked, the empty areas in the screen shot stay empty. And those areas are clearly large enough to display the missing labels without encroaching on any other label.
I'm guessing this is a bug in Tableau because there's no reasonable explanation as to why this is happening, but I'm new to Tableau and unsure how to address this.
While I can offer no explanation, this has been a reported problem for several years. Tableau's own documentation states to check the Allow marks to overlap checkbox, yet that doesn't always work.
I don't know if it's a bug so much as it is a complicated calculation for the rendering engine to determine what will and won't fit into a space. To the human eye it will fit but it's possible the underlying calculations inside Tableau don't see it that way. I find that particularly on dual-axis charts (like yours) this happens more frequently. I've done two things to get around it when it comes up:
Change font family or font size
Put more info into the tooltips so the end user sees the data when they hover.
If you wish to pursue this as a bug, you will need to contact Tableau Support and file a case. They will ask you to submit a twbx file to reproduce the issue.
I hope that helps.
Label -> Font -> Automatic solved the problem for me
You can select individual marks, right click to pop up a menu, and specify whether to always hide or always show the labels for the selected marks (overriding the default behavior)

Jquery Chosen Select scroll issue

I'm using JQuery chosen plugin, chosen single select. when i'm opening the dropdown which listing some set of values loaded in. also it's showing vertical scroll. i can able to scroll using scroll bar and mouse scroll, but i cant able to select the specific item. when mouse hovering the item, then the drop down taking me to the end of the list.
help me to fix this issue.
I found the answer for this.
thanks guys for spending time on this
the answer is
In chosen.jquery.min.js file the is code like
c = this.result_highlight.position().top + this.search_results.scrollTop(),
replace the above line by
c = this.result_highlight.position().top,
then the scroll issue will be fixed.
According to this issue https://github.com/harvesthq/chosen/issues/2504#issuecomment-194773350
the problem seems to be solved when updating the jQuery library.
I can confirm that upgrading to jQuery version 1.12.1 fixes the issue. 1.12.0 is the one with the issue.
-- DrowningElysium

JQuery Mobile Custom Select Menu is visible when unselected

I was having the same problem as this question:
jQuery Mobile 1.1.1 Custom Select Menu - Placeholder Text not Visible
The above question solved my problem by telling me to use 'http://code.jquery.com/mobile/latest/jquery.mobile.min.js'. That solved my original problem but caused another.
The select menu is always displayed and doesn't center on the select item like it did before.
After:
Does anyone know how to fix this. I think I might be able to hide and show the menu if that was the only problem that I was having, but even when selected it is not in the right position. It should be centered over the select element both horizontally and vertically (if given enough vertical space).
This is caused by the latest release of JQuery, but I also can't download 1.1.1 because it causes the original problem that I had which was solved in the other question.
Looks like the menu is displaying relative to the rest of the content - Try adding a css line on there
position:absolute;
on the menu structure - Another good way to test this would be to load up your site in google chrome and use firebug to see why the menu is positioning lower than the "click point." Just on glance it appears that the menu is appearing relative.