Hello Sir,
I have a girdview, in that i have textbox and dropdownlist.
I want to validate that control on client side with checkbox if checkbox is checked then check the textbox is empty and dropdownlist also.
I done that validation but whenever checkbox is checked and textbox not empty then also alert msg is showing..
Please help me.
the code is :--
on button click....
function Validate() {
var chkBoxList = document.getElementById('<%=gv_Toppers.ClientID %>');
var chkBoxCount = chkBoxList.getElementsByTagName("input");
for (var i = 0; i
if (chkBoxCount[i].checked) {
var txtMarks = document.getElementById('txtMarks');
var ddlRank = document.getElementById('ddlRank');
if(txtMarks=="" || txtMarks== null)
{
alert("Please Enter Student Marks!!!");
return false;
}
if (ddlRank.value == "0" || ddlRank.value == "Select Rank") {
alert("Please Select Student Rank!!!");
return false;
}
}
}
}
2 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ravi Kiran ChanduriPosted Dec 12, 2017, 7:30 AM
Midhun TpPosted Dec 12, 2017, 5:01 AM