I am using the crystal report integrated in visual studio 2008 to create my reports.
My report design is that its has 3 sections
Section header where
Section detail
Section Footer
However I am having a problem with displaying vertical lines on the detail section when there are no records. The section footer is always displayed at the bottom of the page meaning that i can check the property extend vertical lines to bottom of page when printing.
How do i resolve this, thanks in advance
You may need to make sure that the vertical line itself extends to the section footer. If the line is only in the detail section and is not extended to the section above or below it then the line will not show if that section is not shown.
Related
I am new in Magento (2) development, I want to positioning the "Recently Viewed" on the top of footer (on the bottom of content section).
As you can see here, it always shown on the top of content area:
What I want is to placed it exactly on the top of footer.
Any help would be very appreciated.
move this recently viewed your block above the footer.
Open/Create below file
app/design/frontend/vendor/theme-name/Magento_Catalog/layout/catalog_product_view.xml
add this code
<move element="Your-block-name" destination="content.aside" before="page.footer"/>
Flush your cache!
I am looking for a way to display 2 hierarchy levels in the main menu or some sort of tabbed menu.
Let me explain:
I have a site in 3 sections (I will not use subdomains), each with a hierarchy below.
Therefore on the homepage, the 3 sections should appear in the main menu.
On the top level page of a section (or the section homepage) the 3 sections should also be shown, but with the current section highlighted. Below the sections, it should show a menu of the items in the section. Al in the main menu
On any page in a section, the current section should appear highlighted and the top level of the hierarchy in the section should be shown. (and the current branch in the hierarchy should be highlighted).
I hope some image will help the explanation:
menu in 2 levels
hierarchy with green blocks for homepage and section homepages
I will be using the avada theme, (and as a non-technical person) any suggestions on how I can easily tweak the menu will be appreciated.
I do not mind using a plugin if that helps.
My Home page with all the webparts has a number in brackets after the webpart title.
How can I remove this?
Ok, I found a solution.
Stay at the page that you can see "XXX [Number]"
Click the "Page" button at the top-left corner
Click the "Edit Properties" button
Click the text(possibly blue) "Open Web Part Page in maintenance view"
Check the duplicate web parts you want to remove and click the "delete" button above.
(If you are NOT sure which are the web parts you want to keep, please delete them all and re-add the web parts you need. Otherwise, you might end up with some white space on the web part page.)
The number gets added because you have multiple web parts configured with the same title. You need some change on the webpart's title to make the [2] disappear.
Alternatively, you might want to hide the webpart's title. Edit your webpart, expand the "Appearance" section, and select the option "None" on the "Chrome type" dropdown.
This was driving me nuts too. Follow the steps here for the steps to delete it through the webpart maintenance page:
http://www.spdeveloper.co.in/tipsntricks/pages/opening-webpart-maintenance-page.aspx
Add a space after the title, this way you can use the same title for multiple webparts.
Of course you should delete the "extra" duplicate web parts using the same title if they aren't visible on the page. But it's not unusual to want the same title showing for different web parts. In that scenario, a simple fix is to add a space after the title in the Appearance section of the duplicate web part's properties. If there are multiple web parts with the same title, just add more spaces. SP will treat the titles as unique.
What are the meaning of HORZGUIDE and VERTGUIDE?
I could not find any documentation in msdn related to these.
It isn't documented. This is meta-data that dialog editor generates to store the state of the editor. You'll find this inside a DESIGNINFO block in the .rc file.
Note the rulers displayed at the top and left of the dialog. You can click inside the ruler to add a guide that helps you align controls. Every horizontal guide generates a HORZGUIDE line inside the block. Same idea for vertical guides.
Also note margin values, the start and end of the ruler.
On the monotuch dialog github page it shows sections seperated by a space on the monotouch dialog sample. When I try to do this with the latest Monotouch Dialog it says that section is being used as an element.
Can somebody tell me what I am doing wrong or the correct way to add a seperator to a monotouch dialog screen?
Actually, I found the solution to this. The solution to Monotouch Dialog separating sections with a space is to provide an empty "" header and footer to a section. Not intuitive but it works. Thanks