Hi all, does anyone know why this error is showing or how to fix it? It appears when I try to change the position of the fields in the form.
Hi all, does anyone know why this error is showing or how to fix it? It appears when I try to change the position of the fields in the form.
Hi Marcin.
I think I had a similar error message and I had to manually modify the data in the database.
The order of the form fields in the placeholders ist stored in the table WFStepFormFields. In my case two fields shared the same value for FLD_Order. I changed the value and for "safety" measures I reset the cache and recycle the application pool, closed the designer studio everything worked fine again.
Below you find a starting point for listing all form fields. You will need to use the id of the field for FLD_WFCON to identify the FLD_FRMIDs and than look at the result.
Best regards,
Daniel
SELECT TOP (1000) [FLD_ID]
,[FLD_FRMID]
,[FLD_WFCON]
,[FLD_PlaceHolder]
,[FLD_Order]
,[FLD_IsVisible]
,[FLD_IsDeleted]
FROM .[WFStepFormFields]
order by [FLD_FRMID],FLD_PlaceHolder, FLD_Order
Hi Daniel many thanks for help. I will try your solution. BTW do you think is it a bug?
Hi Marcin,
it's for sure a bug, or a "glitch" which may happen but it's fairly unlikely to reproduce it and therefore to fix it.
At least I didn't encounter it only once. Or better, a colleague reported it to me and I "fixed" it.
Since I wasn't able to reproduce it I didn't report it.
Best regards,
Daniel
Hi Marcin,
it's for sure a bug, or a "glitch" which may happen but it's fairly unlikely to reproduce it and therefore to fix it.
At least I didn't encounter it only once. Or better, a colleague reported it to me and I "fixed" it.
Since I wasn't able to reproduce it I didn't report it.
Best regards,
Daniel
Hi,
for information only, I reported it (I'm not able to change data in tables), and get an answear, that they will fix it (because was a bug) with next upgrade.