Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $(function () {
  2. var url = $BaseUrl + "/abc/abc/ItemsList";
  3. $('.txt-editable').editable(url,CallBackFunction {
  4. onblur: function (value) {
  5. this.reset(value);
  6. $(this).html(value);
  7. return (value);
  8.  
  9. },
  10. width: 90,
  11. id: 'element_id',
  12. value: 'value'
  13. });
  14. });
  15.  
  16.  
  17. function CallBackFunction(){
  18.  
  19. // to call this function
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement