This question concerns the Drupal 9 Group module, https://www.drupal.org/project/group.
We regularly assign content to groups but I wanted to know if there is a way to assign the content to several groups at once or at least change the widget to checkboxes. Currently the only field widgets are drop down and autocomplete for assigning content to groups.
So, for example, we have the groups Utah, Nevada, Arizona, Washington, Oregon. Would it be possible to have a person select "Southwest" (Utah, Nevada, Arizona) or "Northwest" (Washington, Oregon)
I have added Address field on Webform in Drupal 9[version: 9.2.10]. But the State/Province select list is not populating when the country is selected from country list.
Current version of Address module is 8.x-1.10 [latest]
See image here. Though India is selected in Country list, it still showing US states.
I would like to add a drop-down list of cities to the Variable Product in Product page in woocommerce, so I want to know how to add drop-down list of cities here after selecting city I need to new text input field so I will set Regular price (₹) & Sale price (₹) For particular city also I want to add more city button. so again I will click on the button dynamic generate three fields and again repeat the same process 1. Select City 2. Regular price (₹) 3. Sale price (₹)
enter image description here
I am having an issue with a table with self relations lets call it Table1
I created a table with two fields Id and name
Then i created a one to many relation from this Table1 to Table1 where one parent record can have many child records
Then i created a page lets call it Page1
This page has an insert for where you enter the name and select a parent record
This issue is that when i create a record and select a parent record. the first time i reload the application it takes the parent and makes the parent of that parent the child record.
Example I enter the following data in the insert form
Id Name Parent
1 USA No Selection
2 Canada No Selection
3 Houston USA
4 Toronto Canada
5 Minute Maid Houston
This goes fine, but when I refresh the application the data changes to
Id Name Parent
1 USA Houston
2 Canada Toronto
3 Houston Minute Maid
4 Toronto Canada
5 Minute Maid Houston
if i change it back it stays correct until i make a new entry then the issue repeats. Any ideas on what is causing this issue?
i want to show one master and one detail data.
master data from sale table and detail data from phone table
there is no relation between two table only one field is common in two table that is country code.
in the first page i want to show data regarding UK like
UK details it is title country wise
-----------------------------------------------------------------------
Total Sale : 112300 Diag sale: 1300 Reman sale : 10000
Caller Name incomming call out going call call transfer
---------------- --------------------- ------------------- ----------------
keith 5 5 2
john 3 2 1
sam 8 4 5
in the next page same data will come but USA data will show. so in this way country specific data will show in each page.
i am new in ssrs so i am not getting any idea how to design this report with ssrs
my store will supply data and it will take only one parameter like country code. if i pass country code like 'GB,US,DE' then my sp will return two result set first result set will fetch data from sale table for country GB,US and DE like
total_sale, diag_sale, Reman_Sale, countrycode
112300 1300 10000 GB
10200 1200 4700 US
4200 1500 5600 DE
first result will look like above output
second result set will look like
callername incommingcall outgoingcall calltransfer countrycode
keith 5 5 5 GB
john 3 2 1 US
sam 8 4 5 DE
so discuss in detail how could i design this type of report with ssrs.
Good Morning,
In addition to anakulk's solution, you could display detail records using a sub report. You would create the master report which contains the data from your sales table. You would create another report that is based on the phone table.
On the master report, you would insert a sub report, select the report you built based on the phone table, and link it using the country code. This way, whenever you have the UK sales information displaying, the sub report will display the details from the phone table that have UK in the country code field.
Do you know about Datasets?
If yes then then in dataset query you can join two tables to get whatever you want on report.
Now on report:-
1)You can take a tablix
2)In that tablix ,on first row you can write expression for displaying CountryName
3)on second row of tablix, you can put "Total Sale : 112300 Diag sale: 1300 Reman sale : 10000 "
4)and finally on 4th row you can put the details fields.
5)You have make a row group ,group by CountryCode.
This just a brief idea..I hope this will help you a bit to atleast start..