[ajaxpro] Re: Accessing a Webservice method directly

2006-06-04 Thread [EMAIL PROTECTED]
Your right, it will timeout, do you have an example of how to implement that...I'm new to all of this --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ajax.NET Professional group. To post to this group, send email

[ajaxpro] AjaxPro.onLoading

2006-06-04 Thread roni schuetz
Hi Folk, does somebody know what else i have to do then to define: AjaxPro.onLoading = function(b) { window.status = b ? Loading more data... : ; $(loading).style } and the div: div id=loading style=position:absolute;left:1px;top:1px;border:1px solid

[ajaxpro] Error on Firefox

2006-06-04 Thread Luciano Gmail
does anybody could help, some of my friend uses firefox on my site, but after i've made the download of the new version ( Ajax.NET Professional v. 6.6.2.2 ) they could not acess anymore. i posted the error. thanks!!! Erro: [Exception... Component returned failure code: 0x80040111

[ajaxpro] Re: AjaxPro.onLoading

2006-06-04 Thread Michael Schwarz
AjaxPro.onLoading = function(b) { window.status = b ? Loading... : ; $(loading).style.display = b ? inline : none; } On 6/4/06, roni schuetz [EMAIL PROTECTED] wrote: Hi Folk, does somebody know what else i have to do then to define: AjaxPro.onLoading = function(b) {

[ajaxpro] Re: Error on Firefox

2006-06-04 Thread roni schuetz
hi michael, while i tried to run the above mention link in firefox version 1.0.7 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7) it does not start at all any of the tests in IE ver. 6.0 everything seems to be fine. very nice test with the ip address

[ajaxpro] Re: Error on Firefox

2006-06-04 Thread roni schuetz
it also not started at Mozilla: Mozilla 1.7.12 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 and in Netscpe it does not start when browser is configured to display stuff like FF... with IE everything works fine ... Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;

[ajaxpro] third party java script and version 6.6.2.2

2006-06-04 Thread roni schuetz
hi folks, my third party table component used the following 3 functions: document.onmousemove = function(event){var i;if(TTablePRO)for(i in TTablePRO)TTablePRO[i].drag(event);} since i have updated to the new version it throws me always errors: Microsoft JScript runtime error: Object doesn't

[ajaxpro] Re: third party java script and version 6.6.2.2

2006-06-04 Thread Michael Schwarz
Maybe you can try this: document.onmousemove = function(event) { if(TTablePRO) { for(var i=0; iTTablePRO.length; i++) { TTablePRO[i].drag(event); } } } Regards, Michael On 6/4/06, roni schuetz [EMAIL PROTECTED] wrote: hi folks, my third party table

[ajaxpro] Re: third party java script and version 6.6.2.2

2006-06-04 Thread roni schuetz
yep this worked, cool thanks actully i wondering if i have missed something ... once we hade already the discussion about using for loops in combination with in, and i thought that since version 5. this should not be any problem anymore ... i can leave without in for loops ... thanks