Ignore warnings?

henk

Member
I have a list for an updatable table, which has a join with a view.
If I try to enter a new record in the table, I get: The target table ... of the INSERT is not insertable-into
I understand this is correct: the view is not updatable, but the record IS inserted in the table.
So in this case I would like the warning not to appear.
The warning is only for the view and not for the table.

Somebody knows if it's possible to somewhere bypass / ignore a warning message for this case?
 
In some cases where I do not want to touch the source code, I have added empty language override string for the specific message, so the error is not displayed.
 
Thanks for the tip. This would work but...
I think this a warning message from mysql, so the language string is not in fabrik.
I searched for it and even for part of the text, but couldn't found.
I may need to touch the source code anyway.
As I can remember often something like a try{....catch error...} is used to access a mysql db.
 
OK, in that case this doesn't help. One more option is to hide it with Javascript/jQuery like:

jQuery(".my_div:contains('Error text')").hide();

...or like you said, edit the source.
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top