Hi,
I have written some scripting code which works in normal edit-mode.
Unfortunately it does not work in inline-edit mode.So which check can I implement to verify whether the page is inline-edit mode?
If you are using server event such as Row_Rendered, try this:if (CurrentPageID() == “list” && IsEdit) {
// your code
}
I’ve been trying to find in the documentation this information for more than a month. I didn’t know what question to ask. This also works when applying as a filter!Thank you so much!