How to modify the category of an issue already created in MANTIS? - edit

Users created some issues, but assigned a wrong category. I (admin) would like to fix this. How can I do this? Once an issue has been created the main fields seem to be unmodifiable.

Found out by myself in the meantime. I was trying to edit it after clicking on the issue. This is not possible obviously. In the overview it is necessary to click on the "edit" icon of the related issue. Then any field can be modified.

Related

Custom odoo module - how to make a table

I am creating a custom module with additional part numbers on a separate tab in the products screen. I have built the module, but am having trouble figuring out how to display the information so it matches the layout in the attached image. I have tried tree view but have not been able to get the fields on the same line. Can this only be accomplished through css or is there a table view that I am not aware of?
I also need to make sure that all of the information in row 1 stays tethered together for additional forms, etc. My plan is to make the field names for each row end with a different number (i.e. x_mfrname1,x_mfrpn1,x_mfrname2,x_mfrpn2, etc.). Can somebody please just tell me if I am on the right track. This is the initial Odoo setup for a client of mine and I don't want them to come back to me down the line and find out I forgot something. I have been scouring the internet and reading a few books but I am not completely confident.
Here is a link to a layout of what I am talking about:
MFG Part Number Tab
Thanks!
class sub_part_details(models.Model)
_name='sub.part.detail'
primary_pn=fields.Boolean('Primary P/N')
obsolete=fields.Boolean('Obsolete')
pn=fields.Char('P/N')
desc=fields.Char('Description')
upgrade=fields.Char('Upgrade')
part_detail_id=fields.Many2one('part.details')
class part_details(models.Model)
_name='part.details'
cat=fields.Char('CAT')
sub_ass=fields.Char('Subassembly')
main_ass=fields.Char('Main Assembly')
notes=fields.Text('Notes')
sub_details_ids=fields.One2Many(''sub.part.detail','part_detail_id')
It might be helpful

Google calendar feed link does not respect the parameters

I try to use this link to show the upcoming events but there is not respect my params form link have anyone any idea how to fix this? It is showing the whole events. Even the past ones
https://www.google.com/calendar/feeds/mariushincu0%40gmail.com/public/basic?singleEvents=true&orderBy=startTime&timeMin=2015-04-25T00:00:00Z
As I said previously this is the same as the previous post in as much as you need to change the parameter "timeMin" to be "start-min"
Therefore the answer for your URL is
https://www.google.com/calendar/feeds/mariushincu0%40gmail.com/public/basic?singleEvents=true&orderBy=startTime&start-min=2015-04-25T00:00:00Z

Create Groups in BuddyPress not showing

I have installed the BuddyPress plugin and as a user can't seem to be able to create a Group. If I go to mydomain.com/members/my-username/groups/ I don't see a link to Create Groups. But if I hand-type the Create at the end of this link: mydomain.com/members/my-username/groups/create it displays it.
I think something is missing in the core perhaps. I looked for some answers here but I could not find anything that addresses this issue.
Go to .../wp-admin/admin.php?page=bp-settings. Is this option selected?
Enable group creation for all users
If it is, then try switching to a WP theme like 2013.
If the button appears, then the issue is in your theme.
edit:
BuddyPress doesn't provide a Create link on member profile pages. mydomain.com/members/my-username/groups/
The link will be here:
mydomain.com/groups/
You can add a link, but how you add it depends on exactly where you want it to appear.
Create group solution 2017, 2017 (creating selection for group creation inside individual profile)
Follow the following
Navigate t0: /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/Members/single/group.php.
Then add the line below after line 12 such that it becomes line 13

Content Editor not updating in Sitecore when I programatically update/add content

I am programatically adding/editing content in the master DB, and I know it saves correctly because if I run another 'app', I can see the content I created/updated.
However I can't see the content in the content editor. However if I go to the 'template' associated with the content I create/edited, and make a minor change, and save it. I get the message 'Updating content' which I expect to see... (it is applying the template change to the content).
Then I can see the content I created/edited...
So it appears that something needs to be triggered that modifying the template triggers that I am not.
Any ideas? Thank you.
Thanks for all the input. The issue is that the cache is not being cleared. Collapsing/Expanding the tree did not work. I literally had to clear the cache and it worked. Thank you all. Hope if anyone else has this issue, my answer helps them!
The content tree won't automatically update following external changes to the content structure (eg another user adding/deleting something under the node you are looking at). If you collapse and expand the parent node of where your content is programmatically created, that should be enough to show the newly created content.

Wiki Page Library issue in SharePoint 2010

I would really appreciate it if someone would help me out with this issue.
I'm using SharePoint 2010. I created a Wiki Page Library without changing any of the library settings, and created a new Wiki page, all that went fine but once I started adding text and then tried to save the changes on the page, this message appears:
"You must specify a value for this required field"
I don't know what to do, there is no required field and I can't really fix that... so please help me with that message!!
Fatima, I don't know if you ever got your question answered, but this is a known issue with Publishing features. There is a field that is marked as required, but is not displayed on the page. I beleive it's the column/field called "Name". If you look through the Site Content Types and find "wiki page", you'll see that status is marked as "Required". Changing that should fix the issue for you.
This was caused by a Place holder missing from the Main area of your master page.
Even if you’ve moved it to a asp:Panel and declared it as false at the bottom of your master page you’ll still get the error.
All you need is to move content place holder
<asp:ContentPlaceHolder id=“PlaceHolderPageTitleInTitleArea” runat=”server”></asp:ContentPlaceHolder>
within the s4-bodyContainer div , within the s4-ca div seems to work best. Save the master page and that’s it. that no more irritating message.
Reference: http://sharepointbrandingteam.wordpress.com/2012/05/25/sharepoint-2010-error-you-must-specify-a-value-for-this-required-field/
Alternatively, you can try the solution suggested here