I set up a datatable on one page, and created hyperlinks on the first column, I want to be able to go to the detail page of that row. I was able to do that but when there's multiple options to pick from they do not link to the right page/data point.
For one project there can be multiple entries that each have different values like seen in the pictures, same project different entries. I want to be able to click on a specific row and show me the details of that row like seen below. The issue is that when there is multiple entries for one project, regardless of what row you click it will take you to the same detail form for each, which is not what I want it to do.
@jbmonte I guess you are showing details using form control right?.. what is the Item property for DisplayForm control
it is BrowseGallery1.Selected
@jbmonte what is the Form' DataSource ? is it project or some other entity/table?
the datasource is a sharepoint list, the datatable and the form both pull from the same datasource.
@jbmonte
Project Gallery BrowseGallery1 /
OnSelect: Set(gblSelected, ThisItem); Navigate('Your Project Display Screen')
IMP: Make sure any control you have inside gallery.. it's OnSelect Property is set to Select(Parent) so that if anyone clicks on any of the label/text/image.. the record is selected..
Project Display Screen
OnHidden: Set(gblSelectedProject, Blank())
Project Display Form' Item : gblSelectedProject
It still created the same issue like before where it would still display the wrong information, but now theres a chance for a blank screen.
User | Count |
---|---|
152 | |
93 | |
84 | |
77 | |
58 |
User | Count |
---|---|
194 | |
174 | |
106 | |
96 | |
89 |