can we generate multiple grids using the advanced document template plugin? what is the xml and code syntax for that?
below is the syntax i was trying for the xml and not sure what the code we should use in the template.
I want developer tags to go into one grid.
Developer1 tags ro to go into second grid.
=<project><name>"test for document"</name>
<developer name='a1' lastName='test1' mail='test1@gmail.com' day='8/9/2018' />;
<developer name='b2' lastName='test2' mail='test2@gmail.com' day='8/9/2018' />;
<developer1 name='c3' lastName='test3' mail='test3@gmail.com' day='8/9/2018' />;
<developer1 name='d4' lastName='test4 mail='test4@gmail.com' day='8/9/2018' />;
</project>
Thanks in advance,
sindhu
Discussion posts and replies are publicly visible
Hi Sindhu,
Adding to the above comments, make sure your XML code should be formatted properly. Below is your XML code after few changes:
"<project><name>test for document</name>
<developer name='a1' lastName='test1' mail='test1@gmail.com' day='8/9/2018' />
<developer name='b2' lastName='test2' mail='test2@gmail.com' day='8/9/2018' />
<developer1 name='c3' lastName='test3' mail='test3@gmail.com' day='8/9/2018' />
<developer1 name='d4' lastName='test4' mail='test4@gmail.com' day='8/9/2018' />
</project>"
The code we can use in the template for displaying data in separated grids as follows:
developer:
developer1:
Regards
Vijay
venkatav thanks for the code. It generated two grids. But both the grids are having the data from the developer tag only.
Can you please help.