Display data in lwc datatable as pdf - salesforce

I want to display data as pdf that is in my lightning datatable in lwc. These list i am getting from api response . It can range from 10 to 2000 or even more.
So I tried below method to pass data to VF page
Approach 1 :
Passing list as string parameter to VF page URL , but that is hitting my URL limit.
Approach 2:
Declared get set variable in lwc controller and assigning values on click on print button, but that print blank pdf page .
Approach1:
LWC apex controller
Pagereference pageRef = new PageReference('/apex/Locations');
pageRef.getParameters().put('locations',locWrapList);
pageRef.getParameters().put('brandName',brandName);
It is giving URL limit error
Approach 2:
lisOfLocation= (List<LocationWrapper>)JSON.deserialize(locWrapList, List<LocationWrapper>.class);
I am using this lisOfLocation in VF page , but on click of print it is printing blank
Is there any way I can handle this.

Related

i have put refferal id in form input feild which is present in url

I have created a referral link in my angular project which has carry a referral id when I copy that link and search on browser I want that referral number in the input field of the form on that page. Can anyone tell me the solution
i had with save this referal link in variable and display in interpolation but in form field referal link is not showing

How to retrieve data from different page angular

I have a button in the table in the first page. When I click on the button, I want to save the panel Id and display on the next page. How can I call the data in angular? I'm desperately seeking for help since I'm stuck in there for almost a week now.
These are the images for my problem.
enter image description here
So this one is the first page, where there are buttons in each row.
After clicking Assign, it should show readonly data of ship name and panel name.
enter image description here
Regarding your issue, you should get the panel_id from params in the URL.
E.g.
In the routing of the assigning page, you just set the path:
{
path: 'assigning/:id',
component: <YourComponent>
}
So you can get the panel_id by using ActivatedRoute.
On click event of "Assign" button, you can pass the value to the ts component. In the ts file you can pass it via URL route as a parameter to the next page or store it in localStorage and read from the next page.
<button (click)="passValue(value)">Assign</button>

open data in new page from the link (index of array) in home page in reactjs

In the first picture i have a table of data and i want to click on any link of any person(index) and opens the all data of this index (person) in new page like the pic 2 .
Here is my Picture 1 and picture 2
To do so, you need to have a URL with the person ID, like this app-url/persons/123. After that, you need to get the ID in the component to fetch the data from the server. This way, each time you access the URL with the person ID, you will have your data. Finally, you can have a link that opens the page in a new tab, like this: Person name The target="_blank" on the a tag will open a new tab.

Drupal Webform - How to load values from form, filled in a previous page

Working on Drupal, I have a page with a form made with "Webform" module, containing several fields (text fields and sliders) and a "Submit" button.
When the user enters the information and presses the "Submit" button, another page is loaded with custom code into it.
The new page is devided into 2 parts - the first one contains new information(based on the user input from the previous page); the second one contains (block) the same form, used in the previous page.
Is there a way to load the values, filled in the form from the first page into the new page?
First of all you would need to make a custom module, with the help of
hook_form_alter
You would need to store the previous form's information in cookies with prefix
Drupal_visitor_
and then display it in the new page like:
$form['submitted']['FirstName']['#default_value'] =
$_COOKIE[$firstname];
Thanks

Open embedded Visualforce charts in new window

I have two embedded charts in a custom VF page that is then displayed on the Account detail screen. I'm passing the correct parameters and the reports work fine and display fine on the Account detail page.
<div class="col-md-6">
<analytics:reportChart reportId="00Oi0000005jhBz" cacheResults="true" size="medium" filter="[{column:'Order.Account.Id', operator:'equals', value:'{!Account.Id}'}]"></analytics:reportChart>
</div>
What I would like to do, however, is instead have a text link and those reports open up in a new window. Can embedded charts open in a new window and I pass the correct parameters via the URL?
I can get the reports to display in a new window fine, but I am unclear how to pass the correct filters in my link so the reports actually display the correct data:
<a href="/apex/getIndustryAccountReports?vID={!Account.ID}" target="_blank">
Are there certain ways I have to do this, so that the reports in the new window get passed the correct filters?
your Visualforce page can call on action
"init" would be a function on your controller like so:
public void init() {
String vid = ApexPages.currentPage.getParameters.get('vid');
}
You can now use "vid" to embed the report in your visualforce page.

Resources