Remove gift options attribute in Magento 1.7 default attribute set - attributes

When creating a product I don't want to see the "Gift options" and "Recurring profile".
When editing the Default attribute set I can move those groups to the unassigned attributes.
But after save and edit, they are there again.
Is it possible ?

One thing you can do , if you do not want to see the "Gift options" and "Recurring profile".You can delete it.Step 1 :First move the inside attributes to another group (drag & drop).Step 2 :Then you can delete it (viz Gift options & Recurring profile) by clicking 'Delete Selected Group'.

Related

How do you remove the Notes and Attachments icons from a GRID

I am trying to remove the files and Notes icons from the Grid on the My Documents(SP402000) page in the portal. I want to save data in the notes that the customers should not be able to see.
The steps to remove the files & notes are the same for any Acumatica screen. Set the two properties to False, in the grid properties.
If you remove it in the customer portal screen, the user can still see the notes and files, in the AR invoice/entry screen (regular ERP).

How to disable the + (add) button in detail grid?

I have created a Master-detail custom screen and is there any way i can disable add (+) to prevent entering record in detail grid with out entering data in master?
At present both Location & Location color add button enabled and it allows to enter records
You can use something like:
DetailsView.AllowInsert = MasterView.Select().Count>0;

Hide standard Edit/Remove button in Netsuite - How can i hide default netsuite buttons (Edit, Remove) from list

Hi fellow netsuite gurus,
My custom page hosts a parent record and in it i have a item sub list in a Child record. The problem happens when user tries to edit the line items by clicking on standard edit/remove buttons available on line items in edit mode. I have tried unchecking "Allow child record edit" and "Show Remove" options in the child record settings. but for logical reasons in our program, we cannot uncheck these options. So now the question is:
Has anyone figured out how to hide these buttons using client side code or any other setup feature?
Here's a suggestion:
Edit the record:
In Child Records subtab, do not select a tab for the child records to hide it
Create a saved search:
Check AVAILABLE AS SUBLIST VIEW.
In Results subtab, set OUTPUT TYPE as Result.
In Available Filters subtab, add the child record's field link to the parent record.
Edit the record, add the search as sublist view.
View the record and check the list, there should be no edit nor remove links.

Hide CRM form left hand side navigation item

I have my account entity linked to a custom entity called inspections, I only want these inspections to be created for accounts of a certain type. So when it isn't that type I want the left hand navigation to this entity to be hidden away. I've seen some code that says will hide it away, as long as you have the navID of the item.
I've had a crack at hiding it using what i thought could be the ID but it hasn't worked, so I'm wondering if anyone knows how to get this ID, or if there is another way to do this?
The code I'm using to hide the navigation is below:
var navitem = Xrm.Page.ui.navigation.items.get("nav_ts_inspection");
if (navitem != null)
{
navitem.setVisible(false);
}
Load the form
Press F12 to show IE Developer's Toolbar
From here you can use CTRL+F to search for the display name of the item you'd like to hide. This will give you a link that is generated. The Id of this element is what you need to use to show/hide the link.
As an example, you can see results of searching for 'Sub Accounts' on the Account screen for an installation I am working on at the moment. The Id can be seen and is 'navSubAct'
Changes by traversing DOM and manually hide an area is not officially supported.
Luckily if you are on CRM 2011, you can go to
Settings > Customization Or open the solution.
Select the entity > Forms. Inside the Form editor window, open the Form Properties of the entity.
Go to Display Tab and untick "Show navigation items" checkbox.
Finally do not forget to Publish your changes.
Use the relationshipname to hide folder in navigation like this:
If you have folder with the relationship name: ts_inspection
Use this for ID: navts_inspection
So otherwise the same as above, but lose the extra underscore (_) between nav and ts.
var navitem = Xrm.Page.ui.navigation.items.get("navts_inspection");
If you want to hide particular navigation section from the FORM then remove all the links from that section and publish it. That section will not be visible anymore.
If you want to just remove Navigation Pane from FORM, then go to 'Display' tab of form and mark as 'Do Not Show' and then publish it.

Add radio button to existing group - MFC

I am trying to add a new radio button to an existing group box (MFC application). Already there are four buttons. I have added new radio button to this group but application is treating it as different group and does not synchronize with other buttons. I have check GROUP property which is set to false.
Any help would be appreciated...
You are correct that you need to use the 'Group' property but in conjuntion with Tab Order (from the menu) .
According to the Tab Order, the first button that has the Group property checked is deemed to be the first control in the group, the following controls are deemed to be part of the Group. A new Group is started when a control with Group checked is found.
Your new button is probably not in the right Tab Order and therefore not part of the Group.
Hope that helps
Also refer this link:
http://www.functionx.com/visualc/controls/radiobutton.htm

Resources