Hi,
I have grid view when i click on row of grid it is working fine it expand and collapse. But if there is child node/row of any row and the click on that child row so it is not showing impact on first time.
Here is my javascript code of expand and collapse.
function ExpandFullMesage(lblShortMessage, lblFullMessage) {
//alert(lblFullMessage);
var lblshortmsg = document.getElementById(lblShortMessage);
var lblfullmsg = document.getElementById(lblFullMessage);
lblshortmsg.style.display = "none";
lblfullmsg.style.display = "block";
}
function CollapseFullMesage(lblShortMessage, lblFullMessage) {
//alert(lblFullMessage);
var lblshortmsg = document.getElementById(lblShortMessage);
var lblfullmsg = document.getEle ...
Go to the complete details ...