Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aharris88

    Why does app built with Phonegap and Moobile freeze on alert sometimes?

    Thank you so much for helping. No, it doesn't have this.dismiss() or loops. I'm not sure what you mean about applying this.finish, but moobile is built on top of MooTools, which I'm not very familiar with. If you want to see the code it's all right here...
  2. aharris88

    Why does app built with Phonegap and Moobile freeze on alert sometimes?

    I went to http://moobilejs.com/#download, downloaded the Moobile 0.2.1 Boiler Plate (which is a mobile application framework built on MooTools), put the www files into Dreamweaver CS6, ran the Phonegap Build Service, scanned the QR code with my android phone, and installed the app. I didn't...
  3. aharris88

    Top x Percent Per Group- SQL Server 2000

    I need to average the top 30% runs for ropers. I have a table full of ropers and a table full of their times. I can join them and get the average of their times easily: avg(a.time) or get the number of runs per person: count(a.time), but how can I average just the top 30% per person? Also, I...
  4. aharris88

    valign not working in IE7

    It's expanding all the images in FF unless I have no doctype and in IE unless I have a strict doctype. It's like the page explodes.
  5. aharris88

    valign not working in IE7

    Nevermind. It looks fine in FF only when I have no doctype and it only looks good in IE when I have a strict doctype.
  6. aharris88

    valign not working in IE7

    Ok now it works in both. I used <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> instead.
  7. aharris88

    valign not working in IE7

    Actually that only made it work in IE. Now it is all spaced out in Firefox.
  8. aharris88

    valign not working in IE7

    nevermind. i just figured it out. i didnt have a full doctitle. i just put in <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> and it worked.
  9. aharris88

    valign not working in IE7

    I made a website and for some images that are png that border another image in a table I use valign="top" to make sure it's always at the top no mater what the height is depending on how much text is to the right. The page is at http://tipiwakan.110mb.com/ The code right around the area is...
  10. aharris88

    css z-indexing

    I'm have a popdown menu with css and I have an area with flash right below it. I need the menu to be on top of the flash, but right now it's behind it. you can see it at http://www.fbcstephenville.org/new/ I tried z-index. I didn't know what I was doing, but that didn't seem to work. The menu...
  11. aharris88

    xsl links

    Thanks, that works, but what if I want a more complicated link like: <a href="../Sermons/07/10-7-07.mp3" target="_blank" onClick="javascript:PlayerOpen('Sermons Online', this.href); return false">
  12. aharris88

    xsl links

    I am trying to take information from an xml document and display it in an xsl document. Everything works fine with these commands: <xsl:for-each select="sermons/sermon"> <xsl:value-of select="date"/> But how do a display a link in xsl if the url is stored in the xml document? I don't want to...

Part and Inventory Search

Back
Top