Quantcast
Channel: SharePoint 2013 - Development and Programming forum
Viewing all articles
Browse latest Browse all 7589

Logical operators are not working in JS file

$
0
0

Dear All,

            Everything is fine  I am able to fetching the data from SharePoint 2013 List using CAML query in my js file.

But when i try to get the data via dropdown conditions my code is executing in the else statement .Can aone help me what went wrong in my below code

alert('entered into SVV function');
var clientContext = new SP.ClientContext.get_current();
/*alert('Go Client Context');*/
var oList = clientContext.get_web().get_lists().getByTitle('Execution');
var drbregionvalue= document.getElementById("drbregion").value;
var drbfunctionsvalue= document.getElementById("drbfunctions").value;
var drbmonthvalue=document.getElementById("drbmonth").value;
var allvalue="ALL";

var camlQuery = new SP.CamlQuery();

if(drbfunctionsvalue!=allvalue && drbregionvalue!=allvalue)
{
alert('Your dropdown values for both are all');
camlQuery.set_viewXml("<View><Query><Where><And><Eq><FieldRef Name='Region'/><Value Type='Text'>" + drbregionvalue + "</Value></Eq><Eq><FieldRef Name='Title'/><Value Type='Text'>" + drbfunctionsvalue + "</Value></Eq></And></Where></Query></View>");
}
else
{
alert('Among 1 Dropdowns You selected all');

}



Viewing all articles
Browse latest Browse all 7589

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>