In my application I have to different tables and Editable table and repeating records table. When the page is loaded with either one of these tables the very first row is complete blank. I have looked in the logs and they show the correct information and have look through the bindings, but to no avail. Here are screen shots of my issue.
Repeating Table:
Editable Table:
Has anyone seen these issues. Or have an approach to fix this. Thanks.
Repeating Table:
Editable Table:
Has anyone seen these issues. Or have an approach to fix this. Thanks.
RE: Blank table row and blank Editable table row
That does seem strange.
Is it possible that the empty rows are being submitted from a previous page?
Is ii possible that in the logs there might be two blocks of data, one containing an empty row, and one with the correct records?
Are you able to provide a log file (or project export) for us to look through? That would help in trying to track down what is going on?
If needed, you can send this via email to support@hyfinity.com rather than posting on the forum.
Regards,
Gerard
RE: Blank table row and blank Editable table row
RE: Blank table row and blank Editable table row
2. Go to 'Application Map'
3. Right-Click on the 'RequirementsSearch' partial page
4. Select 'Controller Rules'
5. Expand the first rule 'Delete_RequirementList
6. Remove the second action 'insert_list'
7. Save, regenerate, deploy, and publish
8. Test
I don't think you need the action in the rule.
Adding empty record in the xml document seems causing the empty row in your table.
Taeho.BPM
RE: Blank table row and blank Editable table row
RE: Blank table row and blank Editable table row
Sorry for the slow reply.
You may well have resolved this already, but if not, I have had a look at the editable table on the participants_list partial page and I think I can see where the blank line is coming from.
This is called from the CreateMeeting page using the createParticipants action. The submission document for this action currently contains a 'MeetingParticipants' fragment under mvc :D ata that contains a single blank record.
As this document is submitted to the server when the action is called, this blank record is available when the partial page is rendered, and so causes the single blank row you are seeing to be output.
To resolve this, I think you should be able to just delete this 'MeetingParticipants' fragment from the calling_createParticipants_action.xml document.
I hope this helps.
Regards,
Gerard