View and Edit button in Nintex Repeater table

  • 24 September 2019
  • 6 replies
  • 3 views

Badge +6

Hi All,

 

is it possible to add view and edit row buttons in repeater? when click on the view pop up should open to show that row details and when click on edit a popup should open to edit the row. Please find the sample images below.

 

Pop up sample : 

4617iD8E6093FEEF31A3C.png

 

Repeater Sample : 

4616i6FA0418A1094EBF7.png

 

Please let me know if we can achieve this.

 

Thanks & Regards

Hema


6 replies

Badge +7

Not sure but can't you just use a sharepoint list to give you the list view, perhaps by url filtering down to the ittems you want in your view and then you already have your Title column to view and edit button to edit. With sharepoint you can have your form open in a popup window.

4632iA02B58CAC77351AC.jpg

T.

Badge +6

This works for a single item,what i am looking is inside the repeater control.  you have an item under that repeating section will have 5 rows, each row should have edit and details button.

Badge +7

Hi, how about a parent and child list. On the parent form you can use a list view control to show child items linked to the parent. It would also show your view and edit buttons. See my example below. I have an entitlement card for the user. On this card it shows all the users absences. I can open them directly from the main form.

4642i7E3919A3845EE20F.jpg

 

I also mucked about with simply hiding the extra fields in the repeating section. Have a look at the attached.

 

T.

Badge +6

Hello,

 

Are you saving the repeater data into another list? and in in parent list where you have the repeater are you writing any script to link the rows with child list item?

Badge +7
No, just two lists with the parent showing the corresponding matching entries from the child list.

For example. I have a travel booking form ( The Parent ). Once created they can add relevant train journeys, flights, etc. These are held in a separate list. Using the ID of the parent, I create a flight and train journey child items which also have the ID of the parent. Then when the parent is opened using the list view control to filter on the parent id and show the match flights etc from the child list.
Badge +7

Another thing I do to make the addition of trains etc, is to create click able links to each child list.

 

https://Travel/Lists/STHTravelHotels/NewForm.aspx?TravelID=8888

https://Travel/Lists/STHTravelFlights/NewForm.aspx?TravelID=8888

https:// Travel/Lists/STHTravelTrains/NewForm.aspx?TravelID=8888

 

Then on the form of each list I add a parentID field and the default of that is...

 

fn-GetQueryString(TravelID)

 

That automatically puts the parent ID into the form tying the parent and child item's together.

 

4653iCF6A4071D7947B76.jpg

Reply