Adding custom modules to activities button - sugarcrm

I have an installation of Sugar 6.5. I'v created a custom module and created the relationship with Opportunities and I'm seeing it correctly as a panel at the bottom of the Opportunity.
I want to add it as an Activity to the "Create Task/Schedule Meeting/Log a call" button in the Activities panel.
I've tried to create a relationship with Activities but this doesn't seem to do it either. I've also looked through the dropdowns list and can't find this button/dropdown at all.
Is it possible to add options to this activity dropdown button?

Related

How to open a popup on click of button placed in menu page in master detail page in xamarin forms?

I am working on xamarin.forms. I am using Master detail page. In menupage of MasterDetailPage I have some menu items that are listed. At the bottom of the Menu list I placed a button on menu page. Now I need to open a popup on click of that button. I am trying with PopupLayout but not able to get any success.
Please tell me how I can open a custom popup box at the click of the button that is placed in menu page?
Regards,
Anand Dubey
Without going into separate, native projects for all platforms you are targeting (such as Android, iOS, UWP...), you cannot pop out custom UI content over existing pages in Xamarin.Forms out of the box. You would need to bring in additional references or get creative with the AbsoluteLayout control.
Here are a few options you have:
Simple popup with message and or option selection
If all you need is a simple popup message or a list of buttons, you should look into the native DisplayAlert and DisplayActionSheet methods. They are built into Xamarin.Forms and work really well for these simple cases.
More complex popup dialogs
For anything more complex than that, there is the excellent UserDialogs project: ACR UserDialogs github page
It will give you support for various loading dialogs, date, time pickers, action sheet, success/info/error toasts and more.
Fully custom UI markup with AbsoluteLayout
There is a technique where by you prepare the underlying page with a root absoltue layout, which enables you to dynamically add new UI on top of all other controls on your page. This is fiddly and can ruin your performance if you are not careful. This is also the approach that the PopupLayout control that you mentioned uses. If done properly, this can be a good solution, but I don't recommend it as it involves additional complexity on each page that hosts the popup content.
Fully custom UI popup on native projects
Your most flexible option, as always, is to fall back to the native projects. This would involve coding up the popup logic on each separate platform that you are targeting, then using DependencyService (or one of the other techniques) to call into it from the shared project. For this you should look at samples and tutorials for popups on separate native platforms as it gets pretty broad and goes way outside the topic of this question.

Inno Setup: how to create a page with radio buttons and forms

How can I put radio buttons and forms on the same Inno Setup page?
I currently have 3 fields:
I would like a radio button over the first field (Company / Name) and the third field (Customer Code).
Once a radio button is clicked, it disables the fields that aren't related to it (meaning making them a little grayish and unclickable).
So is there a way to put radio buttons and fields on the same page?
Inno Setup is flexible enough to allow what you need. But to have such a complicated GUI, you have to program this completely, you cannot do with simple utility functions like you are using atm probably (like CreateInputQueryPage).
You need to create:
a new blank page using CreateCustomPage
add radio buttons (TRadioButton)
add input controls for all three forms
handle TRadioButton.OnClick event and enable/disable respective forms based on selected button.
For a general introduction, see Pascal Scripting: Using Custom Wizard Pages.
Though for a faster start, you can actually start with CreateInputQueryPage, and only add your radio buttons and layout the text boxes correctly. To access individual edit boxes and their labels, use TInputQueryWizardPage.Edits and TInputQueryWizardPage.PromptLabels.
For some examples, see:
Select image file on custom layout page and and copy the file to installation folder
Inno Setup: Combo box on TInputQueryWizardPage

SugarCRM CE 6.5.11 Detail Views Broken

We are working with SugarCRM CE 6.5.11. We created come custom fields within the Contacts and Accounts modules and imported some data. Now we can't access the Detail View of any of those modules.
We can create, for example, a new Lead and after creation the Detail View appears as usual.
However, once we go back to the Leads List View and click on a new Lead to see the detail view, we get nothing. We can only see the top menu and the SugarCRM footer. In Internet Explorer, it shows "null."
This happens for any Detail View within Accounts, Leads and Contacts. We can create new ones and see the list, but there's no way to access the detail view. We also tried doing a quick fix from the repair menu with no luck.
Any ideas what can be broken?

Wordpress - Show Portfolio Categories

I'm working with a WordPress website and a client wants to show a list of categories in the footer. Unfortunately, it is showing as empty because he has no posts and has set the categories to portfolio items which he wants people to be able to click to.
So, how do I show the portfolio categories in the widget rather than the post categories?
Thanks,
Jack
Probably the easiest way I can think of to get the result that you want without having to resort to changing any Theme Files would be this:
Log into your Wordpress Dashboard
Navigate to Appearance->Menus
Create a new Menu, and (if applicable) enable the Custom Taxonomies for your menu by clicking on Screen Options (top right-hand corner of the page) and ticking your Portfolio's Custom Categories and/or Custom Post Types
Once all of the items you want is in your Custom Menu, save it.
Navigate to Appearance->Widgets
Add the Custom Menu Widget to the sidebar in which you would like your items to appear
Select the Custom Menu you just created, and Save
When dealing with Premium Themes, it would always be safest to stay out of their code and avoid changing anything altogether, so try this approach first. Otherwise, you may have to get your hands dirty and alter some code or contact the Theme Developer.

How to get custom post types to show up in WP's menu selection?

I am using the http://wordpress.org/extend/plugins/reed-write/ plugin.
It's basically nothing more than a UI to create custom post types in Wordpress. However, I am wondering how I can get any new type to show up in menus I create for Wordpress.
In the menu's tab to the left I can add pages, custom links and even standard 'posts'...but no sign of my custom types.
I would love to kno how to get this to show up. It's not a screen options issue it seems so I'm a little stumped.
have a look at this plugin... It does the job for me
wordpress.org/extend/plugins/custom-content-type-manager/