Source: collapsible-subtable-toggler.js

  1. (function ($, rf) {
  2. rf.ui = rf.ui || {};
  3. /**
  4. * Backing object for rich:collapsibleSubTableToggler
  5. *
  6. * @memberOf! RichFaces.ui
  7. * @constructs RichFaces.ui.CollapsibleSubTableToggler
  8. *
  9. * @param id
  10. * @param options
  11. */
  12. rf.ui.CollapsibleSubTableToggler = function(id, options) {
  13. this.id = id;
  14. this.eventName = options.eventName;
  15. this.expandedControl = options.expandedControl;
  16. this.collapsedControl = options.collapsedControl;
  17. this.forId = options.forId;
  18. this.element = $(document.getElementById(this.id));
  19. if (this.element && this.eventName) {
  20. this.element.on(this.eventName, $.proxy(this.switchState, this));
  21. }
  22. };
  23. $.extend(rf.ui.CollapsibleSubTableToggler.prototype, (function () {
  24. var getElementById = function(id) {
  25. return $(document.getElementById(id))
  26. }
  27. return {
  28. switchState: function(e) {
  29. var subtable = rf.component(this.forId);
  30. if (subtable) {
  31. var mode = subtable.getMode();
  32. if (rf.ui.CollapsibleSubTable.MODE_CLNT == mode) {
  33. this.toggleControl(subtable.isExpanded());
  34. }
  35. subtable.setOption(this.id);
  36. subtable.switchState(e);
  37. }
  38. },
  39. toggleControl: function(collapse) {
  40. var expandedControl = getElementById(this.expandedControl);
  41. var collapsedControl = getElementById(this.collapsedControl);
  42. if (collapse) {
  43. expandedControl.hide();
  44. collapsedControl.show();
  45. } else {
  46. collapsedControl.hide();
  47. expandedControl.show();
  48. }
  49. }
  50. };
  51. })());
  52. })(RichFaces.jQuery, window.RichFaces);