Page 1 of 1

Related Items on a new item form

Posted: 23 Feb 2018
by dspark
Hi,

I'm trying to test the scenario referring to the blog post here: http://formsdesigner.blogspot.com.tr/se ... ems%20list

I followed all the steps in the post. On the parent new form I can create items within the related items list. But when I press save on the parent form it returns to the parent list but no new items are created. Only items that are should be on the related items list are being created and the lookup filed seems empty. What could be the problem here. If anyone tried this before, regarding the "RelatedIssue" field, I created it on the child form as a lookup filed, which search for another field on the parent list which is also I created.

Thanks in advance.

Re: Related Items on a new item form

Posted: 26 Feb 2018
by Nikita Kurguzov
Dear dspark,
Please, try to follow a more recent article on our site as there might have been changes since the older article was posted. You can find our newer article here - https://spform.com/documentation/relate ... gular-mode

You can also follow our video on Youtube - https://www.youtube.com/watch?v=rd8g6Zu1H_E

Re: Related Items on a new item form

Posted: 28 Feb 2018
by dspark
Great thank you, I was able to create the scenario using the newer article.

I have a question tough, is it possible to hide the text "there no items to show in this view of the "Example Children List" list." in the new form of the parent list?

Re: Related Items on a new item form

Posted: 28 Feb 2018
by Nikita Kurguzov
Dear dspark,
Try to add the following code to CSS editor in the designer:

Code: Select all

.ms-list-emptyText-compact{
    display: none;
}

Re: Related Items on a new item form

Posted: 01 Mar 2018
by dspark
Nikita Kurguzov wrote:
28 Feb 2018
Dear dspark,
Try to add the following code to CSS editor in the designer:

Code: Select all

.ms-list-emptyText-compact{
    display: none;
}
Thank you very much Nikita. Have a nice day.