Page 1 of 1

Regarding sharepoint gridview quick edit change event

Posted: 12 Jun 2017
by WinstonFroidPinto
Hi,

I have several related item controls in my page.I would like to target a specific related item,and i would be needing the view guid of the list view of the related item.How can this be achieved? (using jquery or any other approach)


Regards,
Winston.

Re: Regarding sharepoint gridview quick edit change event

Posted: 13 Jun 2017
by Dmitry Kozlov
Hi,
You can retrieve view ID following way:

Code: Select all

fd.relatedItems(0).data('ctx').view;
Replace '0' with 0-based index of the related items control in your form.