How to reassign all of a user's bugs to another user? - bugzilla

An engineer just left the team, and I need to reassign his bugs to another person.
We're using Bugzilla 4.4, and I can't seem to find any administrative feature that allows me to reassign bugs between users. Is this not possible? I'd rather not have to manually edit each individual bug!

I found it. Do an advanced search where you are able to specify filtering by Bug Assignee. At the search results, the bottom of the page contains a link to Change Several Bugs at Once. Click on that link to enable a checkbox in each result row. At the bottom of the new list, press the Check All button. Now change the Assignee and press Commit.

Related

How to show more fields on custom object tabs in Salesforce?

Ok so this problem is probably easily solvable, but since I am a beginner in Salesforce and I didn't find anything useful on Google, I am asking if someone can please help me.
So, as you can see, I have created a custom object called Students, and added some fields to it.
Next, I have created a custom object tab, called Student, as you can see on the following image and added some records.
On the custom object tab, only field 'Student Name' is shown. Does anybody know how to display all (or some) of the fields that were added to the object Student?
Thank you so much for your answers and have a great day :)
On the far right of the 2nd screenshot there's a gear/cog icon. Use it for o create new "list view". Or click that "recently viewed", change it to "all" (there should be an auto-generated one for you) and use that gear icon to select which fields to display.
You can even pin the list view to be your default if you don't want "recently viewed".
As for recently viewed itself - it's special, the gear icon won't work. Follow this article: https://help.salesforce.com/s/articleView?id=sf.customize_recent_records_list_lex.htm&type=5

How do I dynamically indicate that a record is being edited by another user without refreshing the client

While I understand how to prevent a user from updating a record that is already being edited by another user (or is outdated since the last page refresh) - I want to dynamically indicate that a record is being edited by another user; maybe gray out the record or disable an edit feature, etc.
I'm envisioning this similar to how Google Sheets indicates that another user is editing a cell, etc.
Thanks

Is it possible to change the UI/behavior of the "Keyboard" button when in camera mode?

For example, instead of going to manual entry, simply go back to the previous page. I know it is possible to completely remove the button with the EXTRA_SUPPRESS_MANUAL_ENTRY option but I'm looking for a way to modify the button.
Sorry, the functionality you're looking for is not available.

How to disable Choose Column menu in Ms. Dynamic Nav 2009

In RoleTailored Client (RTC) in Microsoft Dynamics NAV 2009, User can add column in the list of Order by right click on list => Choose Column . I just to disable Choose Column context menu So that user can't perform that function. how could I do that ?
thx you for your help,
Makara
I'm not 100% sure, but I don't think that's possible, sorry. If your license permits it, you could consider customizing the list page to only include the columns you want the user to see, or copying the list page and customizing the copy.
I don't believe this is possible. I'd recommend removing the columns from the form/page's listview so that they aren't available on Choose Columns.
You may need to consult with your NAV partner if you don't have the necessary permissions in your licence to edit forms and pages.
Go to "Profile" that you assign to the user, and place check mark in column "Disable personalization" is one of the way.
But, it will also block the user to customize navigation pane or customize page.

history and selection model questions

I am trying to build an app using Extjs 4.1. In general: it is a viewport with a tree panel on the west and a center panel that it is actually a tab-holder panel. When a user clicks on a tree node a tab is populating the center view. I had set an attribute in the tree panel that after selecting a node it gets deselected (deselectAll). The reason for this is that the user can open many tabs from different places (e.g. within each tab). But, when I set the above attribute it is producing an error (the “data” is undefined). The data that is undefined is the data related to the tree node. So, the question concerning selection model:
How can I address this problem (a solution may be to select the fist node, but I don’t want it)?
As for the history utility, I need to implement browser back button. Especially I want to disable browser’s refresh button. If user opens let’s say 15 tabs and accidentally click on browser refresh or “F5” he/she will lose everything. I had tried many things but with no luck. I am unable to understand “Ext history util”. So,
Is there any good example out there?
Could anybody guide me on how to do it?
Notice that the application is built respecting the new “MVC” architecture.
Stopping the refresh event is pretty easy - providing that your page has the focus. E.g.:
Ext.getDoc().on('keypress', function(event) {
if (event.getCharCode() == event.F5) {
event.stopEvent();
console.log('you stopped the refresh event');
}
});
If your page doesn't have the focus then there is nothing that can be done -- but most of the time your page loses the focus when a different browser tab is opened so F5 would be refreshing that one instead anyway.
I'm still trying to wrap my wits around the first part of your question, but I thought I would share that.
EDIT
Instead of trying to stop the default browser behavior (something which you can only do on a very limited basis), you should look into state management. ExtJS supports it on many components. Here is the ExtJS example.
Also here is the example of controlling browser history.

Resources