Questions tagged [custom-column-grid]
The custom-column-grid tag has no summary.
45 questions
0
votes
0
answers
31
views
magento2 i have to try to product grid custom column data pass
define([
'mage/adminhtml/grid'
], function () {
'use strict';
return function (config) {
var selectedProducts = config.selectedProducts,
categoryProducts = $H(...
0
votes
0
answers
423
views
Magento 2 add extra column in order grid using virtual type
Thanks! for view this post.
How to add custom column in order grid and what are the advantages.
0
votes
1
answer
41
views
How to add a `from to` filter for the Products in Category grid
I extended this class: Magento\Catalog\Block\Adminhtml\Category\Tab\Produc to add another column qty. This is how I added the column:
protected function _prepareColumns()
{
parent::_prepareColumns(...
0
votes
1
answer
2k
views
Custom module column in sales order grid with select filter in magento 2
I have a custom module with the columns id, order_id & reason. Now I want to add the reason value in the order grid with the select filter.
Reasons are listed in the other table of the custom ...
1
vote
0
answers
47
views
How to add Backend grid of order, add a coulmn Shipping method In Magento 2
How to add backed grid of order add a column Shipping method in
programmatically if have any idea or suggestion to slow this in
and related links so give me ASAP.
Thank you.
2
votes
2
answers
3k
views
Magento 2 add extra column in order grid using extension attribute
Thanks! for view this post.
I just want to know if there is any feasibility in which we can add extra columns in grid using extension attributes?
Please share your steps with me.
Thanks!
0
votes
1
answer
1k
views
How to code Magento 2 enterprise's default pagebuilder as responsive (mobile friendly)?
As part of one of my Magento 2 enterprise projects, I need to enable the admin user to customize the page layout (responsive layout) using the page builder. For desktop, it could be done pretty well ...
1
vote
2
answers
438
views
Add column to order grid get error in customer page
I tried to add 2 new columns (shipping's company and billing's company) to orders page using a plugin,
but i got an error when trying to view customer's orders in customer page.
This is my plugin ...
1
vote
3
answers
7k
views
Magento 2: Filter Custom Column in Admin Grid
I have a custom column in an admin grid, this column is populated with a custom renderer and is not actually saved to the database. Is it possible to still filter by this column?
in my Grid.php file:
...
1
vote
1
answer
1k
views
How to add custom column as link in sales order grid in magento 2
I wish to add a column as link in sales order grid. While clicking the link, I wish to perform some logic,
I have reffered the below link for magento 1 which is based on layout grid
add button inside ...
0
votes
1
answer
334
views
Magento 1 - Add VAT NUMBER column in Manage Customers Grid
I want to add a column in Manage Customers Grid
app/code/core/Mage/Adminhtml/Block/Customer/Grid.php
with the VAT Number of customers.
Now i have ID, Name, Email, Telephone, Country etc.
I need ...
2
votes
1
answer
865
views
product displayed in one column only instead of 2 column on phone in magento 2.3
when you view a category on desktop shows 3 column but on mobile phone it shows product only one column instead of two column of the page.
whats wrong with magento 2.3.0
check the link on mobile ...
1
vote
0
answers
44
views
How to add new Column in Products Listing in Magento 2
I am trying to add one more column on the product listing.
I have tried to with below code.
_listing.less
/
// Desktop
// _____________________________________________
.media-width(@extremum, @...
3
votes
1
answer
255
views
How to add new column in custom table and also in admin listing page?
I want to add a new column in my existing custom admin grid:
My columns in admin grid are:
also I want this column to appear in edit listing page.
1
vote
0
answers
59
views
Magento 2, add new column into admin grid? [duplicate]
Using magento 2.2, admin. sale->order. I want to add a new column into sales order grid in backend.
1
vote
1
answer
1k
views
Magento 2 How to remove phone column in customer grid programmatically
in customer grid there is a phone column like this:
i can filter this column or choose to hide/show this column from setting, i need to remove this phone column from grid and filter, is there a way to ...
3
votes
3
answers
3k
views
Magento 2 Product Details Column in Sales order Grid
I need to extra column to Sales Order Grid that displays product name or product SKU.
2
votes
1
answer
2k
views
Filter is not working for a boolean datatype column in custom admin grid
A custom table columns are displayed in the filter as well as in a grid.
Other filters are working fine except Is Notified column.
is_notified is the boolean type field.
Here is the code from xml ...
3
votes
0
answers
709
views
Company Column on Sales Grids (Order, Invoice, Shipment, Credit Memo)
This is a continuation from my previous question: Billing and Shipping Company Column on Sales Order Grid
I was able to place the Ship-to and Bill-to Company Columns on the 4 Sales Grids, but I am ...
0
votes
0
answers
160
views
How can i get Attributes Values on sales_flat_order_grid after insert new custom column
I have insert column: warehouse in sales_flat_order_grid.[And also created attributes with values] After added how can i get the attributes values,
//workout
$this->addColumn('warehouse', array(
...
2
votes
1
answer
2k
views
grid column filter based on existing values
In Magento 2.1.8 I trying to add a custom column to the admin order grid, that contains the cc_type field.
Long story short, I managed to make the column appear, display the correct data, and be ...
1
vote
2
answers
6k
views
Magento 2 - How to add a custom column in customer grid like (is approved)
i want to add a custom column in customer grid like "is_approved" customer section.
please suggest.
7
votes
0
answers
1k
views
How to add dynamic custom column in UI component
I have configured UI component columns in the admin grid and it's working fine. I need to add custom columns dynamically.
For example we can add custom column in __prepareColumns function in Block ...