473,665 Members | 2,827 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP Treeview and mozilla

Ed
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this work
on Mac Safari and Mozilla Firefox. Could someone point out how to fix this
code to make it compatible with those aforementioned browsers?

Thank you.
Jul 19 '05 #1
10 3314
What's it doing? or specifically not doing?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ed" <ed*********@ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this work on Mac Safari and Mozilla Firefox. Could someone point out how to fix this code to make it compatible with those aforementioned browsers?

Thank you.

Jul 19 '05 #2
Ed
It does not expand the treeview upon clicking the [+] on the "root" folder.
This is happening on Mac Safari and Mozilla Firefox.
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:O8******** ******@TK2MSFTN GP12.phx.gbl...
What's it doing? or specifically not doing?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ed" <ed*********@ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this

work
on Mac Safari and Mozilla Firefox. Could someone point out how to fix

this
code to make it compatible with those aforementioned browsers?

Thank you.


Jul 19 '05 #3
is there an error?
Show the specific code behind the click....

Also, you may want to go to a clientside group. If the click isn't posting
back to the server its not an ASP issue......

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ed" <ed*********@ho tmail.com> wrote in message
news:u2******** ******@TK2MSFTN GP11.phx.gbl...
It does not expand the treeview upon clicking the [+] on the "root" folder. This is happening on Mac Safari and Mozilla Firefox.
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:O8******** ******@TK2MSFTN GP12.phx.gbl...
What's it doing? or specifically not doing?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ed" <ed*********@ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this

work
on Mac Safari and Mozilla Firefox. Could someone point out how to fix

this
code to make it compatible with those aforementioned browsers?

Thank you.



Jul 19 '05 #4
Does http://www.aspfaq.com/treeview2/ work?

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Ed" <ed*********@ho tmail.com> wrote in message
news:#I******** ******@TK2MSFTN GP12.phx.gbl...
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this work on Mac Safari and Mozilla Firefox. Could someone point out how to fix this code to make it compatible with those aforementioned browsers?

Thank you.

Jul 19 '05 #5
Ed
Yes! :-)

What was the problem? And could you update your FAQ example with this?

Thanks!

"Aaron Bertrand - MVP" <aa***@TRASHasp faq.com> wrote in message
news:Ol******** ******@tk2msftn gp13.phx.gbl...
Does http://www.aspfaq.com/treeview2/ work?

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Ed" <ed*********@ho tmail.com> wrote in message
news:#I******** ******@TK2MSFTN GP12.phx.gbl...
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this

work
on Mac Safari and Mozilla Firefox. Could someone point out how to fix

this
code to make it compatible with those aforementioned browsers?

Thank you.


Jul 19 '05 #6
The first one says it has only been tested in IE. If you take a look at
treeview.js for each of them you'll see why the first one doesn't work in
non-IE browsers.

Bob Lehmann

"Ed" <ed*********@ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Yes! :-)

What was the problem? And could you update your FAQ example with this?

Thanks!

"Aaron Bertrand - MVP" <aa***@TRASHasp faq.com> wrote in message
news:Ol******** ******@tk2msftn gp13.phx.gbl...
Does http://www.aspfaq.com/treeview2/ work?

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Ed" <ed*********@ho tmail.com> wrote in message
news:#I******** ******@TK2MSFTN GP12.phx.gbl...
http://aspfaq.com/show.asp?id=2311

Sample: http://aspfaq.com/treeview

This works perfectly on Windows IE 6.x and Mac IE.

However, in order to be cross-platform compatible, I need to make this

work
on Mac Safari and Mozilla Firefox. Could someone point out how to fix

this
code to make it compatible with those aforementioned browsers?

Thank you.



Jul 19 '05 #7
> What was the problem? And could you update your FAQ example with this?

Yes, way ahead of you. I was using an onmousedown event on a <div> and
Mozilla doesn't get it, so I switched to an <a>
Jul 19 '05 #8
Aaron Bertrand - MVP wrote:
What was the problem? And could you update your FAQ example with
this?


Yes, way ahead of you. I was using an onmousedown event on a <div>
and Mozilla doesn't get it, so I switched to an <a>


There's a bit more to it than that, as the JavaScript console warns:

Error: document.all is not a function
Source File: http://aspfaq.com/treeview/treeview.js
Line: 3


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 19 '05 #9
You must be seeing a cached version. If you load that js file directly, and
save it locally, you will see that there is no longer any reference to
document.all.

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Dave Anderson" <GT**********@s pammotel.com> wrote in message
news:eE******** ******@TK2MSFTN GP09.phx.gbl...
Aaron Bertrand - MVP wrote:
What was the problem? And could you update your FAQ example with
this?
Yes, way ahead of you. I was using an onmousedown event on a <div>
and Mozilla doesn't get it, so I switched to an <a>


There's a bit more to it than that, as the JavaScript console warns:

Error: document.all is not a function
Source File: http://aspfaq.com/treeview/treeview.js
Line: 3


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message.

Use of this email address implies consent to these terms. Please do not contact me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Jul 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

42
11524
by: lauren quantrell | last post by:
So many postings on not to use the treeview control, but nothing recently. Is it safe to swim there yet with Access 2000-Access 2003?
0
1116
by: richie_hackett | last post by:
OK I have been tearing my hair out trying to get the Treeview webcontrol to display a background image. My current thinking is that mozilla allows you to render the treeview as a table instead of using the htc. Any ideas how this can be done for all requests? I have noticed that the Treeview control inherits from the BaseRichControl which has a CheckBrowserLevel method I figure if I can make the web page believe that the browser...
6
4922
by: L.M | last post by:
Hello, I knew how to use the treeview under VB6. After migrating to .NET, well, I'm lost. I try to add a new node, either to the same level or as a child to a selected node in the treeview. However, either it only add it to the root level or it only add it on level below, doesn't matter what I select. And in some case, I just get an exception.
14
15082
by: Mr.D | last post by:
How do I save/load the contents of a Treeview to a file? I have found several good examples written i VB6, but not a single one for VB.NET. Please help. ---- Tim
1
1365
by: Alex D. | last post by:
does the treeview fully suport firefox-mozilla? maybe I am doing something wrong but my + and - node expand node images dont switch when are clicked, and it seems that the node expanded status wont persist between postbacks for that reason. any help?
0
974
by: Alex D. | last post by:
hi. my treeview is not working ok with firefox-mozilla browsers, problem is that when I expand or collapse the nodes the + and - dont switch, though the node expands and collapses OK. I delete all the nodes and re-populate my tree dynamically in each roundtrip to the server. In IE it works just fine... Any idea would be appreciated. alex.
1
2675
by: Alex D. | last post by:
hey guys I found what is causing the problems with my treeview in Firefox...the answer is: treeview+dropdwonlist in the same page dont work! try this simple code and see for yourselves. you can do it using the IDE, just add a treeview and some nodes and add a dropdownlist..then see if your treeview + and - images switches and also check if your treeview collapsed/expanded information is maintained between postbacks! <%@ Page...
2
1164
by: Sebastian Fey | last post by:
Hi, Im looking for a javascript treeview component. I want to display the state of differnt objects. (Lights, shutters, windows, ... in a house) The client polls the server for the current state of the objects and updates the tree. so the component should allow to change the nodes dynamically and easily. Also it should be easy to determine which node is selected at a time and
1
1655
by: sermet | last post by:
Hi everybody, I have an application that works for IE. I used treeview.htc to create a tree view. And I want my client side code to work with linux based operating systems. So the code should work on firefox or other gecko browsers. Sample code for IE is like the following: <HTML XMLNS:mytree > <HEAD><?IMPORT NAMESPACE="mytree" IMPLEMENTATION="./treeview.htc"/> <TITLE>Something</TITLE> </HEAD>
0
8348
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8863
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8779
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8636
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5660
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4186
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2765
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2004
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1761
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.