Showing posts with label drop. Show all posts
Showing posts with label drop. Show all posts

Thursday, March 29, 2012

please check this link http://www.kerala.bsnl.co.in/newdqasp/newdq1.asp

http://www.kerala.bsnl.co.in/newdqasp/newdq1.asp

when the mouse is over the thariff menu the menu will be listed but the drop down list is just over the menu any solutions to solve this..

are you saying you want the popupmenu to appear slightly lower? It looks like when the mouse goes over the menu item a function call MM_ShowMenu is called and this takes coordinates for where to display the menu. Try changing

<A id=link14 onmouseout=MM_startTimeout();
onmouseover="MM_showMenu(window.mm_menu_0611164247_0,0,16,null,'link15')"
name=link15>TARIFF</A>

To

<A id=link14 onmouseout=MM_startTimeout();
onmouseover="MM_showMenu(window.mm_menu_0611164247_0,0,25,null,'link15')"
name=link15>TARIFF</A>

Not really sure what it will do as I'm unable to test it here but give it a go.


i wanted the menu to be on top of dropdown list insted of showing the dropdown list betwen the menu.


Hi,

I notice something abt the site... When u click the dropdownlist and dun select anything, then mouse to ur menu the dropdownlist still appear... Which dun look gd


what should i do to overcome this problem

Monday, March 26, 2012

Please Help - me

Hi there
I have a table which contains all the sub folders for my drop down menu...
when the mouse goes over the menu, the sub folders are displayed,
the problem is that the sub menu tables are displayed behind everything
else...
How can i change it to be displayed on Top'
thanks
AdamPC@dotnet.itags.org.hotmail.comUse the CSS style z-index.
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.
"ACaunter" <AdamPC@.hotmail.com> wrote in message
news:6489CE5A-EA20-41C2-BC4D-AE09A269795C@.microsoft.com...
> Hi there
> I have a table which contains all the sub folders for my drop down menu...
> when the mouse goes over the menu, the sub folders are displayed,
> the problem is that the sub menu tables are displayed behind everything
> else...
> How can i change it to be displayed on Top'
> thanks
> --
> AdamPC@.hotmail.com

Please Help - me

Hi there
I have a table which contains all the sub folders for my drop down menu...
when the mouse goes over the menu, the sub folders are displayed,
the problem is that the sub menu tables are displayed behind everything
else...

How can i change it to be displayed on Top??
thanks

--
AdamPC@dotnet.itags.org.hotmail.comUse the CSS style z-index.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"ACaunter" <AdamPC@.hotmail.com> wrote in message
news:6489CE5A-EA20-41C2-BC4D-AE09A269795C@.microsoft.com...
> Hi there
> I have a table which contains all the sub folders for my drop down menu...
> when the mouse goes over the menu, the sub folders are displayed,
> the problem is that the sub menu tables are displayed behind everything
> else...
> How can i change it to be displayed on Top??
> thanks
> --
> AdamPC@.hotmail.com

Saturday, March 24, 2012

Please Help DDL

I have code that populated a drop down list and with the users selection in the ddl it populates the text fields. This works fine with one exception

The first record in the Drop Down List doesn't populate at all... Please help....I should explain a little better

Here is a snippett from both pages the user selects the item in the drop down menu then they are rerouted to another page than takes that value and populates the textboxes

Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
Dim mystring As String = DropDownList1.SelectedItem.Text
'passing the variable to the next page
Response.Redirect("WebForm2.aspx?mystring=" & DropDownList1.SelectedValue)
End Sub

' this is the second page where it takes that variable and populates the textboxes
'then I am populating the texboxes based on the selectedtext in a fillbox() function

Sub fillBox()
Dim ds As New DataSet

Dim myCommand As OleDbDataAdapter
Dim smyString As String

'retreiving the variable passed from page 1 using the drop down list
smyString = Request.QueryString("mystring")

'code ot take out an apapostrophe
smyString = Replace(smyString, "'", "''")

sql = "Select * From SiteDocNew where [River/Site Name_en] ='" & smyString & "'"
myCommand = New OleDbDataAdapter(sql, conn)

'Fill command to fill the textboxes
myCommand.Fill(ds, "SiteDocNew")
txtLocationDesc.Text = ds.Tables("SiteDocNew").Rows(0).Item("Location & Access Description_en").ToString()
Is the 2nd page not working?
The second page is working with all other records with the exception of the first record on the drop down list.

And if I do click on the first record the second page does not even open...
Sorry I figured it out I just added a null line in the drop down list...