7
Answers

How to create pop for when click textbox asp.net c#?

Raja

Raja

8y
292
1
I have bind the data table in repeater inside the repeater many textbox is available
now i want to show the text box value to pop up window 
ex:
c sharp corner forums
 in the above value is want to shown in text box because many textbox have more then values than text box length so it is hided. i give the multi line textbox also but if the multiline textbox  is expanded design is affected. so i want to display the value to pop up window.
How to do it?
 
I tried: below script
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
 
But the script is shows only first textbox value another text box value is not shown when click the other textboxes 
Answers (7)
0
Raja

Raja

NA 1.7k 45.4k 8y
 
 
 
 
Css Code
 
 
.top-nav ul li
{

list-style:none;
}
.top-nav ul li a {
display:block;
outline: none;
color: black;
text-decoration: none;
font-size: 1.3em;
padding: 1em;
text-align: right;
background: #333b3e;

}
.top-nav ul li a.black{
background: white;

}
.top-nav ul li a.black1
{
background: white;

}
.top-nav ul li a.black2
{
background:white;
}
.top-nav ul li a.black3
{
background:white;
}
.top-nav ul li a.black4
{
background:white;
}
.top-nav ul li a.black5
{
background:white;
}

.top-nav ul li a:hover,.top-nav ul li.active a {
width: 91%;
padding-left: 0px;
background: gray;
}
.top-nav ul li.active a
{
width: 91%;
padding-left: 0px;
background: #23aeac;
}
 
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 8y
Please provide code for design of you menu. Secondly do you want to implement in server side or client?