Click here to Skip to main content
15,913,486 members

Comments by PRAKASH9 (Top 58 by date)

PRAKASH9 19-Dec-18 4:48am View    
you have to debug like this
https://prnt.sc/lww7jw

I just think your code will be crashed from here

var btnModal = document.getElementById(_btnModal);

You have passed 'lnkView' argument like below

<asp:LinkButton ID="lnkView" CommandArgument='<%# Bind("userId") %>' OnClick="lnkView_Click" OnClientClick="return modal('modal','close','lnkView')" runat="server">Edit

but your LinkButton is inside gridview so id of that button changed and you cann't get in modal function. so i think your code will be crashed from
_btnModal
PRAKASH9 19-Dec-18 2:16am View    
Just write like below
AppendedElement.title = ToolTipText;
PRAKASH9 19-Dec-18 2:08am View    
Have you done with debug or not? Just hit F12 and put your debug point in debbuger tab inside modal function so you can easily identify where is your code crashed.
PRAKASH9 15-Dec-18 5:10am View    
whatever you have tried just paste here so i can find what's the problem with your code
PRAKASH9 15-Dec-18 1:35am View    
Have you tried google?