Click here to Skip to main content
15,895,192 members

Comments by Sormita (Top 8 by date)

Sormita 6-Apr-15 0:27am View    
Can you please provide some links about XML to XSLT transformation? I have never worked in XSLT before.
Sormita 29-Jan-15 7:38am View    
I dont understand why then the alert inside document.ready is not getting fired when the user control is getting loaded. Following is my jquery code:
<script src="~/Scripts/jquery-1.11.2.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript" src="~/Scripts/jquery-1.11.2.js">

$(document).ready(function () {
alert("In Jquery");
$("[id*=RadioButtonListYesNo]").change(function () {
alert("In Jquery");
var res = $('input[type="radio"]:checked').val();

if (res == '1') {
$("#divFAFMQues").css("visibility", "hidden");
$("#divFAFM").css("visibility", "hidden");
}
else {

$("#divFAFMQues").css("visibility", "visible");
$("#divFAFM").css("visibility", "visible");
}
});
});
</script>
Sormita 29-Jan-15 7:21am View    
Should this function reside under document.ready function in jquery block?
Sormita 29-Jan-15 7:02am View    
I already tried to use document.ready function, but it is also not getting invoked. Can you please help check the root cause as to why jquery block is not getting executed?
Sormita 7-Nov-14 12:03pm View    
thanks maciej for the solution, my problem is when the information is not there in the table, there is no record at all, so i cannot check for null value.I tried to use UNION but i am getting some undesirable results with that. So finally i am fetching things separately and handling the rest of the logic at front end.