I have a very simple SSRS report with a table control that expands/collapses a details group. After deployment, when the report is rendered in ReportManager in Internet Explorer, the report will allow one mouse click, but any further mouse clicks do nothing.
For example, you can click to expand the Details group of the table. But then clicking to collapse the group does not work. Clicking to sort by a column does nothing, clicking the link to a subreport does nothing, even clicking on the report scroll bar to see the bottom of the page does nothing. If any of these mouse clicks were attempted immediately after the report is rendered (i.e. if it is the first mouse click), then they work. After the first mouse click, no further mouse click do anything.
This is obviously a major problem - we cannot put the reports into production in this state.
I have found that if I click the button which shows or hides the report parameters pane, then the report will then allow further mouse clicks. While this is a work-around for development, it will be unacceptable for the users to have to do this.
Any advice on how to solve this would be welcome.
This is on SSRS 2012 with Internet Explorer 11.
Related
I have a button in a MS Access 2007 report called 'Print'. The only event associated with this button is OnClick - PrintObject macro. When the button is clicked, the Print Dialog Box pops up. If the Dialog Box opens up such that it covers the button in the background, everything is great. However, if the Dialog Box opens up such that any part button shows, then after the report prints, a weird ghost image reflection of the button shows up behind the button and things that were behind the Dialog Box are all shifted around. I have attached an image showing the two scenarios. What is the problem here and how do I fix this?
When I add the 'Refresh' command to the programming for the OnClick, and run the 'Print' button, I get the following error message:
How to hide parameters/grouping panels in design mod. Or in other words uncheck these menu options so panels hidden when a report opened in design mode. Every time I open any report, it opens parameters and grouping panels as well. There must be any option not to open these panels by default with every report opened. I am tired and found nothing on web. Please let me know.
Thanks
Right-Click on a blank part of your report, then View -> Parameters
I use mouse often to resize panes. Recently I'm trying out tabs, and found that it's possible to switch tabs using mouse too, simply by clicking on a tab.
However, after successfully changing the tab by clicking on it using mouse, I am no longer able to resize the pane using mouse. Instead, every time I click on the pane border and drag mouse cursor, the tabs get rearranged (e.g. it looks like :tabm happens), as if the mouse click "stuck" the first time I clicked tab and now "holds" the tab.
Is this a known problem, solvable by configuration?. All I'm looking for is being able to resize panes even after I used mouse to select tabs.
Edit. My environment:
macOS 0.12.2,
neovim 0.2.0 (but the issue was with 0.1.7 as well).
This is a strange bug that occurs on the iPhone 5 when navigating back to a previous page.
Here's the steps to reproduce the bug on an iPhone 5:
Select a menu option that directs to a new page
From the new page press the browser back button
Try and navigate to the same page again using the same menu
An example page to try this on is here. On this page, select 'Javascript Tutorials' from the first menu on the page. Then follow steps above...
In my situation there is no go button to follow the link (like the second menu on the example page). The option is followed when clicked. The problem with this is that because the page you returned from is selected in the menu, you are unable to navigate to it. You cant re-select it.
My question: Is this a known iOS 7 bug? And is there a solution? My search has come up empty so far.
My JS code selects the first option when the menu is generated on page load. And as said, this bug only occurs on the iPhone.
This is not an iOS 7/iPhone 5 bug.
I can recreate it in Chrome on Windows 7.
As you said,
"because the page you returned from is selected in the menu,
you are unable to navigate to it"
The menu is pre-selected because of autocomplete behavior
When you press browser "back" in step 2 (versus page refresh), browser remembers the state you left the select in
https://stackoverflow.com/a/2699400/1175496
When you re-select an option that is already selected
You haven't changed anything; so the change event doesn't fire
Scripts listening for that event (as with the onChange attribute in your example) won't send you to the page
I fix this by putting autocomplete="off" attribute on the form element containing your select;
this prevents number 1, which prevents number 2.
I am developing a Chrome extension with browser action. I want to make some action on clicking on browser action icon (it is easy, not a problem), and show popup if user clicks on down arrow at the right side of the icon (that is a problem). So, we will receive a functionality similar to the firefox toolbarbutton from XUL. Is it possible to do such thing with Google Chrome?
Just want to make button, like that:
button
If it is pressed on the main part - it will do something, if on the right "drop-down" part - it will show quick settings page.
But I see only single button possibility.
The entire browserAction button works as a single button. There is no way to detect if a specific area was clicked. The best you can do is either have multiple extensions each having their own button for different actions or have options in the popup that the user selects with a second click.