Click here to Skip to main content
15,892,927 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india2-Sep-09 1:24
Samarjeet Singh@india2-Sep-09 1:24 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
Abhishek Sur1-Sep-09 21:55
professionalAbhishek Sur1-Sep-09 21:55 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india1-Sep-09 22:49
Samarjeet Singh@india1-Sep-09 22:49 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Abhishek Sur2-Sep-09 21:33
professionalAbhishek Sur2-Sep-09 21:33 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india3-Sep-09 2:00
Samarjeet Singh@india3-Sep-09 2:00 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
igudipalli24-Jun-10 5:06
igudipalli24-Jun-10 5:06 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
igudipalli24-Jun-10 6:08
igudipalli24-Jun-10 6:08 
QuestionHelp in Java script Pin
AprNgp1-Sep-09 20:57
AprNgp1-Sep-09 20:57 
I have a gridview control, which contains multiple rows. Each row has a link-button and a detailsview control. Using the link-button, i want to show or hide the detailsview control.
Initially all the details view have their css property Display=None set. If the link button in any of the grid-view row is clicked, i want a java-script to make the details -view in that row visible (Display=Block)

So i wrote the following javascript:
<script language="javascript" type="text/javascript">     
      function ShowReplyBox(PMBox) {                 
myElement = document.getElementById(PMBox);         
if (!myElement)             
alert('element not found');         
myElement.style.display = "block";                     
}     
function HideReplyBox(PMBox) {        
 myElement = document.getElementById(PMBox)         
if (!myElement)            
 alert('element not found');         
myElement.style.display = "none";    
 } 
</script>


While showing the details-view control, it shows momentarily, and again become invisible automatically ...
What could be the problem ...

Apurv

“Never trust a computer you can’t throw out a window.”
(Steve Wozniak)

“There are only two industries that refer to their customers as ‘users’.”
(Edward Tufte)

AnswerRe: Help in Java script Pin
Christian Graus1-Sep-09 21:10
protectorChristian Graus1-Sep-09 21:10 
GeneralRe: Help in Java script Pin
AprNgp1-Sep-09 21:14
AprNgp1-Sep-09 21:14 
GeneralRe: Help in Java script Pin
Christian Graus1-Sep-09 21:19
protectorChristian Graus1-Sep-09 21:19 
AnswerRe: Help in Java script Pin
Abhishek Sur1-Sep-09 21:45
professionalAbhishek Sur1-Sep-09 21:45 
GeneralRe: Help in Java script Pin
Christian Graus1-Sep-09 21:59
protectorChristian Graus1-Sep-09 21:59 
GeneralRe: Help in Java script Pin
Abhishek Sur1-Sep-09 22:34
professionalAbhishek Sur1-Sep-09 22:34 
GeneralRe: Help in Java script Pin
Christian Graus2-Sep-09 0:19
protectorChristian Graus2-Sep-09 0:19 
GeneralRe: Help in Java script Pin
Abhishek Sur2-Sep-09 2:01
professionalAbhishek Sur2-Sep-09 2:01 
QuestionTo ensure that users come from page1 before going to page2 Pin
Desmond Lim1-Sep-09 20:49
Desmond Lim1-Sep-09 20:49 
AnswerRe: To ensure that users come from page1 before going to page2 Pin
Christian Graus1-Sep-09 20:51
protectorChristian Graus1-Sep-09 20:51 
GeneralRe: To ensure that users come from page1 before going to page2 Pin
Desmond Lim1-Sep-09 20:55
Desmond Lim1-Sep-09 20:55 
GeneralRe: To ensure that users come from page1 before going to page2 Pin
Christian Graus1-Sep-09 21:06
protectorChristian Graus1-Sep-09 21:06 
GeneralRe: To ensure that users come from page1 before going to page2 Pin
AprNgp1-Sep-09 20:59
AprNgp1-Sep-09 20:59 
GeneralRe: To ensure that users come from page1 before going to page2 Pin
Christian Graus1-Sep-09 21:06
protectorChristian Graus1-Sep-09 21:06 
GeneralRe: To ensure that users come from page1 before going to page2 Pin
AprNgp1-Sep-09 21:08
AprNgp1-Sep-09 21:08 
QuestionChanging password using membership provider Pin
Shahdat Hosain1-Sep-09 20:40
Shahdat Hosain1-Sep-09 20:40 
AnswerRe: Changing password using membership provider Pin
Christian Graus1-Sep-09 20:53
protectorChristian Graus1-Sep-09 20:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.