Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. $scope.lanesList = [
  2. {
  3. "sequence": "1",
  4. "lane": "Shipper City",
  5. "property1" : "has_sel"
  6. },
  7. {
  8. "sequence": "2",
  9. "lane": "Shipper State/Province",
  10. "property1" : "with_sel"
  11. },
  12. {
  13. "sequence": "3",
  14. "lane": "Shipper Country",
  15. "property1" : "no_sel"
  16. },
  17.  
  18. ];
  19.  
  20. $scope.laneFilterRows = [
  21. {
  22. "id": 1,
  23. "lane": "Shipper State/Province",
  24. "property1" : "has_sel",
  25. "assignment": "in",
  26. "lanerowval": "hbn",
  27. "oper": "OR"
  28. },
  29. {
  30. "id": 2,
  31. "lane": "Port of Loading",
  32. "property1" : "with_sel",
  33. "assignment": "<>",
  34. "lanerowval": "n",
  35. "oper": "AND"
  36. },
  37. {
  38. "id": 3,
  39. "lane": "Shipper Country",
  40. "property1" : "no_sel"
  41. "assignment": "<>",
  42. "lanerowval": "bn",
  43. "oper": "AND"
  44. }
  45. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement