How to check whether the page is in inline-edit mode?

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
snookie
User
Posts: 34

How to check whether the page is in inline-edit mode?

Post by snookie »

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?


motfs
User
Posts: 258

Post by motfs »

If you are using server event such as Row_Rendered, try this:

if (CurrentPageID() == "list" && IsEdit) {
// your code
}


ellys98155
User
Posts: 2

Post by ellys98155 »

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!


Post Reply