I have form which has use Querymodechange event (some code in this event). If I want to use this form on web, where can I set code from Querymodechange, that it goes the same ?
Subject: Querymodechange event
Well … it depends on what you want to do … there’s not exactly an equivalent. The client doesn’t re-open the document – it just changes states, while the browser must open a second URL (the same document but with ?open or ?edit or vice versa).
Are you wanting to trigger an event on entering or leaving edit mode?
Depending on whether you want something to happen prior to the document being rendered to the browser or whether you want something to happen on the browser, you should be able to code it using JavaScript in the onLoad event or other place, such as in a field or maybe WebQueryOpen. From there you may want to parse the URL for “edit”. Clear as mud?