We have recently noticed that the selected options on a configurable product aren't showing in the minicart. It will show the Labels for the options on the product, but not the selected options.
we had the same problem with a custom attribute. I solved it changing the backend type from varchar to int in eav_attribute table:
UPDATE eav_attribute SET backend_type='int' WHERE attribute_id=YOUR_ATTIRUBUTE_ID;
Related
I'm wondering if something like this is possible.
Assume I have a data table like this:
I want a filter, where user picks France for example, but the data is filtered based on corresponding Continent value, e.g., all Europe records should show up.
Is this possible?
Sure, We can do that. If you add country to Filters shelf, Tableau will show only records of selected value. In our case, if we filter "France", Tableau shows only records which has France. So we will miss other Europe records. Parameter can handle this scenario. Follow below steps.
1.Create a String parameter
2. Create a calculated field
3. Add the created calculated field to Filters shelf then choose 'show'
4. Right click parameter then 'Show parameter control'. So it will works like filter
Method 2: Dynamically change parameter value
Pros: No hard coding, dynamically changes value based on selection. It works, well on dashboard
Cons: You will not have drop down for selection like filter. So, you need to click a chart to trigger the changes.
1. Create a String parameter with allowable values as 'ALL'
2.Create a calculated field
3.Create a parameter action in dashboard.
Dashboard-> Actions-> Add Action -> Change Parameter
In Change Parameter dialogue box, set target parameter as 'Parameter Name' and value field as 'Continent'
4. Add the calculated field to filter and select 'True' on other sheets
5. Final Dashboard looks like
Click the icon on the selector sheet. It will automatically filter data on data sheet.
Inside the selector sheet
!https://i.imgur.com/tfr0N27.png "Qlik Layout"
So I have this screen and I would like to make it so the user can choose the amount of each selected item. I would also like for the KPI to show 0 if nothing is selected. Any ideas?
I'll try Measure like this:
IF(GetSelectedCount(ProductName)>0,SUM(ListPrice), 0)
The amount of item can be set using input boxes. Problem is input box is per variable so you would have to define input boxes for each product and then make long list... even for that you need input box extension from Qlik Branch. In Qlikview there is functionality to add inputSum function in table which could be perfect in your case but is not implemented in QLikSense. If it is really necessary you can create own extension in Qliksense with html table of all products and form which is updating variables.
I've tried changing the value of the woocommerce quantity field from another field using gravityforms plugin with number field and calculations form, but didn't work. How to do it? Please help
In the Woocommerce product, if you have the WooCommerce Gravity Forms Product Add-Ons plugin activated, you can select the form you want to use, then in the Form Display at the bottom, you'll see advanced options. For Replace Modified Items? select Yes, for Quantity and Stock, select Yes, and then choose the field you want to populate the cart's quantity.
The advanced options will look for a number or quantity field to replace the woocommerce product quantity.
I have a report created in Crystal Report 7.
I have modified a view on which the report depends.
When I clicked Verify Database new fields are added in Field's list.
After modification of View now I need to change the Grouping Order of report. When I searched in Fields Explorer there were all the fields present, but in Group Box those fields are not coming. Am I missing something, please help.
Also In Visual Linking Expert tab Browse Field is disable and for rest are enable.
I have never worked with CR 7 but I suspect a field type/size/characteristics issue. Can you put these 'missing' fields in your detail section and have a look at the displayed values? If these look normal, what I would try are the following:
convert the missing fields into 'smaller' ones, by setting them in
the query the following way, just to check if the problem is linked to a field size
issue or something like that.
CONVERT(varchar(10), returnReason) as returnReason
Another try would be to create the grouping fields in the report, adding corresponding Formula Fields like
groupReturnreason = left(returnReason, 10)
No guarantee of course, just a trial.
how in extjs 3 checkboxselectionmodel multiple row select with shift key while keeping the default control functionality can be done?
PLease guide me, its really urgent for me , as m doing POC.
I tried alot, even tried the option of using jquery multiselection grid. but not able to call jquery file on checkboxselectionmodel.
checkOnly : true,
is the config option in checkboxselectionmodel which will allow user to click on checkbox column only to check, and on click of row it will not select the checkbox it wil just make the row select.