display selected attributes in my custom tab while creating configurable product magento - magento-1.7

I want to do two tasks with configurable product, 1. I want to add description to each selected attribute for the product, 2. I want to save price for a group of selection (not individually as it does by default). So for the task first I want to display all attributes in .phtml file, can anyone help please ?

I found solution for my first task(How to add description to each selected attribute for the product). For performing this task, you need to create attributes(like: size, paper) of type text area and add to these attributes to any attribute set(for ex : "News Paper"). Now create a new configurable product with "News Paper", you will see all description field there.

Related

Magento: Add class to element based on selected product options

I have configurable products with options of 'sample' and 'length'. I would like to add a class (either 'sam' or 'len') to depending on which option is chosen so I can display a different suffix after the price. e.g. '£20.00 ea.' or '£100.00 per m.'
How would I go about achieving this?
I'm relatively new to Magento and I need pointing in the right direction to get going.

Change Customer Information field in AgentTicketZoom OTRS6

I want to change few fields of customer Information table of AgentTicketZoom file of OTRS6. How to do this? Is there any way?
I need to add a TicketLicense input box below LastName of the field
Yellow circle displays where I need to add my input box
Look at files:
Kernel/Output/HTML/Templates/Standard/AdminCustomerTableView.tt
Kernel/Output/HTML/Layout/Ticket.pm
You also may need to change mappings, take a look at Kernel/Config/Defaults.pm
Usefull link https://blog.otrs.com/2017/10/25/otrs-6-dynamic-fields-customer-user/
If your source of customer information is a different database or an LDAP source, it would be enough to add a field in the map section.

Cannot Hide Data Field in Visio Org Chart

I am creating an org chart from an excel spreadsheet. Each row has Employee Name and Job Title, but also Employee ID and Supervisor Employee ID (both number data types).
I am using the Organization Chart Wizard to automatically create an org chart as a starting point (its pretty big). In doing so, I use the two numeric fields in the "name" and "reports to" fields because we have employees with the same name. However, I do not want these numerical fields displayed in the org chart shapes. You can see in the second picture I cannot remove the three default fields from the chosen "Shape Data Fields."
Here's what the shapes look like, I want to remove the number field altogether. Regardless of the shape stencil I select, I get the same behavior.
If I try to delete the shape, I get the error "shape protection, container and/or layer properties prevent complete execution." Even when I go to Developer -> Protection -> Unlock, the issue persists. Thus, it must be an issue with the container or layer properties.
Lastly, this page has a "To Delete a data field" section at the bottom. I tried exactly this, and the fields were removed from the Define Shape Data box, but the shapes remained unchanged, still showing all fields:
https://support.office.com/en-us/article/Add-data-to-shapes-09272394-5243-4e1b-bcfa-425a8b4d1ce2?ui=en-US&rs=en-US&ad=US
Tweak the master you want to use by decorticating its structure.
In the drawing explorer check whether the shape (the master) is group or a single shape. Find out where the ID (the 3rd field) is used for display, adjust accordingly by correcting the shapesheet.
Sorry for such a generic explanation. If we could exchange files, I would have had a look at your master and could have corrected it.
HTH, Y.
I had the same issue, and eventually found that I could prevent the ID field (used in Name) from displaying, using Display Options - on the Org Chart tab, using the dialog box launcher button (bottom-right) in the Shapes section.
The ID field is shown as 'Name' under Block 2 - you can use the drop-down to set this to 'None' (so that it doesn't display at all), or pick one of the other fields that you chose to display in its place.

How to Display Attribute Group Name in Product Tab Magento 2.1.3

I created an attribute set and attribute groups with attributes in it. In the admin panel the attributes are listed in groups, like i created them. But on the front productpage all the attributes are listed together, without displaying the attribute group name first.
I would like to display the Attribute Group Name on the product page (more information tab), before the attributes in this group. How do i do that?
There is no way to do this by default in Magento 2.
There are a few ways I can think of to acheive this. Perhaps best would be to extend the getAdditionalData() method in /Block/Product/View/Attributes.php so that it adds the attribute group name (or id) to the returned array.
You would then need to create a local copy of Magento_Catalog/templates/product/view/attributes.phtml and iterate the array returned by the modified getAdditionalData() method sorting it according to the group name and then output the data with group name headings.
I'd be interested to hear of other or best practice approaches to this type of relatively simple extended functionality in Magento 2.

In SharePoint How to create a form that changes based on a drop down selection

I need to create a dynamic form/workflow in SharePoint. What I am trying to do is create a form that has a drop-down selector with 2 options Projects and Proposals. Depending on which of those two the submitter chooses the form will change which fields are displayed in the form below them.
The goal is the have the form populate 1 list and just populate different fields depending on the form type chosen.
Is this easily doable?
Our SharePoint environment is being provided by Microsoft's Office365 solution.
Did you try Content Types ? You'll not get drop-down (however I've seen drop-down for document libraries with content types), but you can achieve your target: when creating new item you can select which type of item to create (Project or Proposal) and when you'll get fields according to that content type. All data will be stored in the same table.