related to jquery

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

Sorry, but it is not clear where the issue occurs. Can you share a snippet of code that interact with Webix datatable, as above code works with HTML only.

return this.pull[t] this one attempt to get a record by its id, and it seems the record with such id doesn’t exist.

i solved it. sorry for inconvenience.