I'm new to Umbraco - while playing and trying to explore from the admin area, I have hidden the Users and Members sections. Now, the Members and Users sections are not visible in the admin section. I am logged in using the master/admin account.
How I can unhide these sections? I want to bring them back and make them visible in the admin section.
In your backoffice, click left on the round circle with the head inside to get to your user settings.
From there you should be able to edit your profile settings by pressing the green "Edit" button.
In your profile settings, there should be a group called "sections". Verify that your "Users" and "Members" sections have a checkmark there.
Related
Been looking for a code that hides the add to cart button for logged out users. Found codes, but they also remove the variations of the product, would like to keep them visible even for logged out users.
I created a search filter through Click Issues->Search for issues, in Jira and shared it with the developer group.
Now I am not aware where has the developer navigate to view the filter. Can someone give me that general path on which the search filter which is shared to the person or group can view.
There are two ways they can get to the filter:
On the menu at the top, select Filters. The second item from the bottom is View all filters and the filter you created will be on that page.
The other way to reach it is by clicking on the cog icon that gets you into settings. Select System from the menu and then scroll the list on the left down until you reach Shared filters. Again, the filter you created will be on that page.
I have SSRS report with many rows
When I print it, it looks nice, rows are split into multiple pages, each page has its number, that's what I want.
but when I click "View Report" button the report show up on screen with all rows in the same page and i have only one page.
Is there anyway I can make it looks like exactly how it will be printed when user click on "View Report" button
in another words I want the on screen preview to be A4 width and size
I changed the Interactive Size and Page Size, still getting all records in 1 page on the screen.
I am using SSRS 2008 R2
To display a fixed number of rows per page for an SSRS report, follow these steps:
Add a new Parent Group to the existing top level group row.
Type =CEILING(RowNumber(Nothing)/50) in the Group by expression.
50 is the number of rows you want to show up on each page.
Click OK to create the Parent Group.
Right click on the Parent Group that you have just created and select Group Properties.
On the Page Breaks tab, select Between each instance of a group
On the Sorting tab, delete all the sorting options shown.
Click OK to confirm the changes to the Parent Group.
Lastly, right click on the Parent Group and select Delete Columns only.
Please click here: for more detailed instructions with screenshots.
I try to edit one of my custom fields. Like in this instruction. But i have not screen "Viewing Custom Fields". Why? Any idea?
Are you logged in as an Administrator? If so, you should be able to select Administration in the upper right-hand corner and then click the 'Issues' tab and choose 'Fields'. This should take you to a list of all of your custom fields.
This is my scenario
I have an view(page) with list of items, a user could select single or multiple items from this page and click on a "Add to Group" button. Then a modal dialog(JQuery dialog) will be shown, from that he could select group, then press the add button. Which causes the items selected in the parent page is added to that particular group.
So, which is the best way to pass the selected items to the modal pop-up?
Though the query string ? - what happens if the no:of items selected is large, will the url support that much characters
Keep the list in the parent page in a javascript variable and return the selected group from the modal pop-up?
Or is there is any other better option?
Thanks,
Rajeesh
2a. There is no "parent" page; modal dialog is part of the same page as selected items. Therefore on "OK" function from the dialog you can go through the checked items and do whatever you want, including POSTing to the server. It's not clear from your post whether "adding items to the group" happens on the server or client