Does anybody know how to rename 'More Addresses' in Account and Contact entities navigation pane?
The usual method would be to change the display options in the address/contact or account relationship, but this is read only in this case.
There is an easier way as well... go to Settings -> Customizations
go to the account entity and select "Messages" from the menu left. There you can find "more addresses". open this line and change the display name. Save + publish. Done :-)
Hope this helps.
Regards,
Chris
Apparently those kind of labels are hard-coded. It looks as if the only workaround is to follow the (unsupported) path of modifying the HTML in the OnLoad method. Something like
document.all.navAddresses.innerHTML = ...
You will have to dig into the details of the HTML to achieve the desired effect.
Good luck!
Related
I am attempting to create popup that appears when a ribbon button is clicked on a record.
The goal is that when a "Qualify" ribbon button is clicked on the "Lead" record, a popup will appear that has a search bar to look up "Account" records to see if the account already exists.
I have looked into the Xrm.Navigation.openConfirmDialog() method, but it doesn't seem like there is a way to add a search/table to the popup. Also looked some into the openForm() method, but that doesn't seem too useful in this situation.
I am still fairly new to D365 so I'm not exactly sure what the best way to create something like this would be, so any suggestions/help would be greatly appreciated. I would prefer to do this without HTML, however I feel like it might be necessary for something like this to work?
I Want to translate my custom entities in CRM 2011. Therefor i go to customize the system on the settings page and then i click "Export Translations". The only thing that happens is a dialog box is shown with message:
Exporting customized labels for translation can take several minutes. Do not click the export link again until the first export has finished. Are you sure that you want to export now?
When i click OK, nothing happens anymore. What should i do to get my translations?
EDIT: When i try to export the translations for a sollution with only a few entities in it, everything works. It seems only a few custom entities are "affected".
Thanks in advance.
Thomas,
To find the "EventLog", you should look in the "EventViewer" of the "CRM"-server! There you can find all logs that happens concerning the "CRM" actions.
In Firefox, I'd like to be able to highlight a word or number, then right click and have options that would open various custom links such as:
View User Profile -> http://mysite.com/user/HIGHLIGHTEDWORD
View User Admin Page -> http://mysite.com/admin/user.php?user=HIGHLIGHTEDWORD
View Order Page -> http://mysite.com/orderdetailspage.php?order_id=HIGHLIGHTEDWORD
Something like that would save me and my team a lot of time.
Does anyone know is such a plugin exists, and if not what would be involved in developing one?
thanks
This page has some options for Menu customization extensions:
Maybe you could use one of those extensions with keyword searches?
I believe in you!
I know you're trying to save yourself some time with due diligence researching whether it's been done, but with the power of copy and paste, you could "write your own" almost as quickly as asking the question.
Can anyone pls tell me how to create a button(in CommandBar) like 'New Mail' (with a dropdown list) in Outlook?
When one clicks on the button it should do some action and when clicked on the down arrow mark, it should populate a list of items. I am in need of this very much.
If anyone know the answer pls let me know.
Thanks in advance!
-Pranav
Assuming Outlook<2007, you add a new button to the explorer/inspector via CommandBars.Add("foo", Type:=msoControlDropdown) and add entries to the drop-down via myDropdown.Add("bar").
See also the reference for CommandBarComboBox.
You can't populate it on click though, you have to find other suitable events for that, e.g. Explorer.SelectionChange.
On Outlook >= 2007 you need to customize the ribbon which is a bit more writing work. Customizing the Ribbon in Outlook 2007 is a good introduction into that.
To create a new mail item use myOlApplication.CreateItem(olMailItem) or myMailFolder.Items.Add(), set it up as needed and show it in an inspector via e.g. myMailItem.Display().
Sound like you are looking for a split button. Unfortunately the API does not expose that.
You can hack up a Popup under the button which is a poor attempt of a split button.
Anybody knows a good source to get an idea how to create this kind of a dialog?
I'm well aware that I'll need to write some CA's for that but relatively new to WiX (used to work with InstallShield).
TIA!
This can get you started. Does not contain info about edit fields and buttons, but have a listbox. As an example, it populates IIS websites into the listbox. Very good source of info.