I am using 2 module,(1st - angular js , 2nd - webix). when I am selecting any cell(from Datatable [webix]) , and using that selected value in angular js module, and setting that value in angular module, it’s working fine but end of function i m writting function like this…
Setvalue = function(title){
var a= title;
if(a=="" || a== undefined){
$("#Price"+productId).val("$0.00");
}
else{
$("#Price"+productId).val(a);
}
webix.js [" return this.pull[t] "] Price is undefined
(#Price) is id for price feild. will u please suggest …about this error