Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Raymond Irving
Yes SODA has the same problem. Normally when I'm writing dynamic apps I prevent the users from using the browsers back button. IMO it's not good to have the back button active when you're doing dynamic stuff. -- Raymond Irving --- Jacob Levy <[EMAIL PROTECTED]> wrote: > I'm trying to learn ho

Re: [Dynapi-Dev] XML Class in DynAPI?

2003-10-29 Thread Raymond Irving
Well the whole idea is that we would probably take a subset of the code from xmljs.sf.net and make an xml class for dynapi that will allow us to work with xml files directly in all dynapi supported browsers. An one else like the idea? -- Raymond Irving --- Leif W <[EMAIL PROTECTED]> wrote: > Lo

RE: [Dynapi-Dev] XML Class in DynAPI?

2003-10-29 Thread Daniel Tiru
Sounds really good /Daniel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Raymond Irving Sent: den 29 oktober 2003 15:18 To: [EMAIL PROTECTED] Subject: Re: [Dynapi-Dev] XML Class in DynAPI? Well the whole idea is that we would probably take a subset o

RE: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Raymond Irving
when you send javascript down to the client use history.go(1); --- Daniel Tiru <[EMAIL PROTECTED]> wrote: > Hi mate! > > How do you prevent using the backbutton? > > > /Daniel > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Raymond > Ir

[Dynapi-Dev] VDE-0.1rc4 release

2003-10-29 Thread Michael Bystrom
Hi list folk time again VDE-0.1rc4 This is fixes a most of the bugs that¹s been reported on the list and some of my own fixes and improvements. I think that Windows IE 6 version works now. It does so on Virtual PC. The biggest this with this release is that I¹ve included basic event handling (bot

[Dynapi-Dev] VDE-0.1rc4 release note

2003-10-29 Thread Michael Bystrom
Hi again, Should point out that there is a saved load file for the events The name of the load file is "event.js" inside the "example" folder. Michael --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help y

Re: [Dynapi-Dev] XML Class in DynAPI?

2003-10-29 Thread Doug Melvin
Very much. While I don't normally like to push any Micro-Shaft tech, I have found an increasing number of client-server communication protocols using XML.. It would indeed be nice to have that XML functionlaity consistant on the client-side.. - Original Message - From: "Raymond Irving"

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Doug Melvin
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceF

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Doug Melvin
Can you elaborate on this? I am not clear as to how this snippet is being used. - Original Message - From: "Raymond Irving" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 29, 2003 9:53 AM Subject: RE: [Dynapi-Dev] browser history and RPC > > when you send javascr

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Raymond Irving
Ok. When using ioelmsrv.jscript.asp to send data to the client you can use the addJSCommand() function to have the "history.go(1);" command execute on the client. This will prevent the user from clicking the back button. Should we add this behavior ioelmsrv as the default? In this way users will

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Doug Melvin
I don't believe this should be the default behaviour. But we should make is an easy "switch", like ioElement.PreventHistory(true) or some such - Original Message - From: "Raymond Irving" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 29, 2003 12:42 PM Subject: Re: [D

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Jacob Levy
Ah, and have that sent to the server side as a hidden element, so that the server can generate the "history.go(1)"... Convoluted but works. --JYL > I don't believe this should be the default behaviour. > But we should make is an easy "switch", like > ioElement.PreventHistory(true) or some such >

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Raymond Irving
Ok. We'll provide a new function from the server-side libraries called wsPreventHistory(). When this function is called it will prevent the client from clicking the back button. -- Raymond Irving --- Jacob Levy <[EMAIL PROTECTED]> wrote: > Ah, and have that sent to the server side as a > hidden

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Jacob Levy
I'm trying to get this to work, manually, and I must be missing something. Things are still showing up in the history. --JYL > Ok. We'll provide a new function from the server-side > libraries called wsPreventHistory(). When this > function is called it will prevent the client from > clicking the

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Peter Romianowski
Hi, shouldn't that also be provided as a standard DynAPI-function? Like dynapi.preventHistory()? While at it a function dynapi.preventContextMenu() could be added too, which catches the oncontextmenu-events and the right-click (for older browsers)? That is *really* useful when working with with a

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Raymond Irving
I believe we have a dynapi.document.disableContextMenu() function that should disable context menu. I for one prefer preventContextMenu() to disableContextMenu() can we make that change in keeping with things like preventBubble(), etc or should we just leave it as is? To create you're own conte

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Leif W
Ok. Will add to ioelmsrv.php when it's added to the asp version, so I can see exactly what it does. :-) Leif - Original Message - From: "Raymond Irving" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 29, 2003 1:55 PM Subject: Re: [Dynapi-Dev] browser history and R

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Doug Melvin
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceF

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Peter Romianowski
Hi, I believe we have a dynapi.document.disableContextMenu() function that should disable context menu. Ok should have looked into the source beforehand... I for one prefer preventContextMenu() to disableContextMenu() can we make that change in keeping with things like preventBubble(), etc or sh

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Raymond Irving
--- Peter Romianowski <[EMAIL PROTECTED]> wrote: > > To create you're own context menus you'll have to > > listen to onclick and check for the right mouse > button > > or should we go ahead and create a oncontextmenu > > event? > > That would be great! But then we have a problem with > the name '

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Peter Romianowski
Raymond Irving wrote: Calling 'disableContextMenu' will only disable the browser's contextmenu but you'll still be able to lisen to oncontextmenu. Yes I know. What I meant is that it is kinda strange to call disableContextMenu but having a oncontextmenu-Eventhandler. People might not distinguish

[Dynapi-Dev] Panelbar update

2003-10-29 Thread Daniel Tiru
Hi! Peter have updated the Panelbar js file and panelbar-stacker example. Just some documentation to do left but that will come. Regards Daniel --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be