Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default mouseover effect

    I want to create a mouseover effect which colors the row when the
    mousepointer goes over a row. I use this code in the itemDataBound event

    If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType =
    ListItemType.AlternatingItem Then
    e.Item.Attributes.Add("onMouseOver",
    "this.style.backgroundColor='Silver'")
    e.Item.Attributes.Add("onmouseout",
    "this.style.backgroundColor='white'")
    e.Item.Style("cursor") = "hand"
    End If

    The code works fine. But when I attach a stylesheet (css) to the page, the
    mouseover won't work anymore. It seems that the stylesheet 'overrules' all
    other attributes. Any idea how to solve this ?

    Bart
    Bart Guest

  2. Similar Questions and Discussions

    1. Spry detail region effect on mouseOver?
      I've built a page using the conventional Spry detail region method (URL below if you're interested). BUT instead of having the detail region change...
    2. Mouseover for Images in DW8
      I use the mouseover feature of DW8 on an XP Pro platform to create mouseovers of thumbnails that change a larger image on the page to an...
    3. mouseOver not rollOver
      On Flash 5, I want to go to the previous frame when the pointer is over the button. With rollover, it goes one frame at a time as I have to roll...
    4. mouseOver?
      Hi I would like a movieclip to move when I the mouse is over (just a couple of pixels) and then move back again when the mouse is moved away. I...
    5. MouseOver effect?
      Hi, Is the mouseover effect created on http://www.phpfreaks.com/tutorial_index.php (mouseover the tutorial descriptions) possible to do using...
  3. #2

    Default RE: mouseover effect

    Hi bart all my pages have stylesheets attached to it, but my color change
    still works. Style sheet does not cause any problems. Maybe you are
    overlooking something else?
    HTHs...

    "Bart" wrote:
    > I want to create a mouseover effect which colors the row when the
    > mousepointer goes over a row. I use this code in the itemDataBound event
    >
    > If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType =
    > ListItemType.AlternatingItem Then
    > e.Item.Attributes.Add("onMouseOver",
    > "this.style.backgroundColor='Silver'")
    > e.Item.Attributes.Add("onmouseout",
    > "this.style.backgroundColor='white'")
    > e.Item.Style("cursor") = "hand"
    > End If
    >
    > The code works fine. But when I attach a stylesheet (css) to the page, the
    > mouseover won't work anymore. It seems that the stylesheet 'overrules' all
    > other attributes. Any idea how to solve this ?
    >
    > Bart
    R. Thomas, aka Xtreme.Net Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139