Oracle Apex- Interactive Grid- Reset Button












0















In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.










share|improve this question





























    0















    In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.










    share|improve this question



























      0












      0








      0








      In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.










      share|improve this question
















      In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.







      oracle-apex oracle-apex-5 oracle-apex-5.1






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 12 '18 at 17:01







      Praveen Kumar K

















      asked Nov 12 '18 at 15:38









      Praveen Kumar KPraveen Kumar K

      213




      213
























          2 Answers
          2






          active

          oldest

          votes


















          2














          I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below

          function(config) {
          var $ = apex.jQuery,
          toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
          lastToolbarGroup = toolbarData[toolbarData.length - 1],
          createButton = {
          type: "BUTTON",
          icon: "a-Icon icon-ig-reset",
          iconOnly: true,
          action: "reset-report"
          };
          lastToolbarGroup.controls.pop();
          lastToolbarGroup.controls.push(createButton);
          config.toolbarData = toolbarData;
          config.initialSelection = false;
          return config;
          }





          share|improve this answer
























          • This way is better.

            – romeuBraga
            Nov 12 '18 at 19:49



















          1














          I do not think I understood your question ... :) but...



          I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.



          $('button[data-action=reset-report] > span.a-Button-label').remove()


          Or CSS



          button[data-action=reset-report] > span.a-Button-label {
          display: none;
          }





          share|improve this answer
























          • Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

            – Praveen Kumar K
            Nov 12 '18 at 17:53











          • Ah yes, in this case it makes sense.

            – romeuBraga
            Nov 12 '18 at 18:00











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265438%2foracle-apex-interactive-grid-reset-button%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below

          function(config) {
          var $ = apex.jQuery,
          toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
          lastToolbarGroup = toolbarData[toolbarData.length - 1],
          createButton = {
          type: "BUTTON",
          icon: "a-Icon icon-ig-reset",
          iconOnly: true,
          action: "reset-report"
          };
          lastToolbarGroup.controls.pop();
          lastToolbarGroup.controls.push(createButton);
          config.toolbarData = toolbarData;
          config.initialSelection = false;
          return config;
          }





          share|improve this answer
























          • This way is better.

            – romeuBraga
            Nov 12 '18 at 19:49
















          2














          I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below

          function(config) {
          var $ = apex.jQuery,
          toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
          lastToolbarGroup = toolbarData[toolbarData.length - 1],
          createButton = {
          type: "BUTTON",
          icon: "a-Icon icon-ig-reset",
          iconOnly: true,
          action: "reset-report"
          };
          lastToolbarGroup.controls.pop();
          lastToolbarGroup.controls.push(createButton);
          config.toolbarData = toolbarData;
          config.initialSelection = false;
          return config;
          }





          share|improve this answer
























          • This way is better.

            – romeuBraga
            Nov 12 '18 at 19:49














          2












          2








          2







          I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below

          function(config) {
          var $ = apex.jQuery,
          toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
          lastToolbarGroup = toolbarData[toolbarData.length - 1],
          createButton = {
          type: "BUTTON",
          icon: "a-Icon icon-ig-reset",
          iconOnly: true,
          action: "reset-report"
          };
          lastToolbarGroup.controls.pop();
          lastToolbarGroup.controls.push(createButton);
          config.toolbarData = toolbarData;
          config.initialSelection = false;
          return config;
          }





          share|improve this answer













          I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below

          function(config) {
          var $ = apex.jQuery,
          toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
          lastToolbarGroup = toolbarData[toolbarData.length - 1],
          createButton = {
          type: "BUTTON",
          icon: "a-Icon icon-ig-reset",
          iconOnly: true,
          action: "reset-report"
          };
          lastToolbarGroup.controls.pop();
          lastToolbarGroup.controls.push(createButton);
          config.toolbarData = toolbarData;
          config.initialSelection = false;
          return config;
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 12 '18 at 18:02









          Praveen Kumar KPraveen Kumar K

          213




          213













          • This way is better.

            – romeuBraga
            Nov 12 '18 at 19:49



















          • This way is better.

            – romeuBraga
            Nov 12 '18 at 19:49

















          This way is better.

          – romeuBraga
          Nov 12 '18 at 19:49





          This way is better.

          – romeuBraga
          Nov 12 '18 at 19:49













          1














          I do not think I understood your question ... :) but...



          I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.



          $('button[data-action=reset-report] > span.a-Button-label').remove()


          Or CSS



          button[data-action=reset-report] > span.a-Button-label {
          display: none;
          }





          share|improve this answer
























          • Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

            – Praveen Kumar K
            Nov 12 '18 at 17:53











          • Ah yes, in this case it makes sense.

            – romeuBraga
            Nov 12 '18 at 18:00
















          1














          I do not think I understood your question ... :) but...



          I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.



          $('button[data-action=reset-report] > span.a-Button-label').remove()


          Or CSS



          button[data-action=reset-report] > span.a-Button-label {
          display: none;
          }





          share|improve this answer
























          • Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

            – Praveen Kumar K
            Nov 12 '18 at 17:53











          • Ah yes, in this case it makes sense.

            – romeuBraga
            Nov 12 '18 at 18:00














          1












          1








          1







          I do not think I understood your question ... :) but...



          I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.



          $('button[data-action=reset-report] > span.a-Button-label').remove()


          Or CSS



          button[data-action=reset-report] > span.a-Button-label {
          display: none;
          }





          share|improve this answer













          I do not think I understood your question ... :) but...



          I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.



          $('button[data-action=reset-report] > span.a-Button-label').remove()


          Or CSS



          button[data-action=reset-report] > span.a-Button-label {
          display: none;
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 12 '18 at 17:23









          romeuBragaromeuBraga

          1,2291215




          1,2291215













          • Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

            – Praveen Kumar K
            Nov 12 '18 at 17:53











          • Ah yes, in this case it makes sense.

            – romeuBraga
            Nov 12 '18 at 18:00



















          • Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

            – Praveen Kumar K
            Nov 12 '18 at 17:53











          • Ah yes, in this case it makes sense.

            – romeuBraga
            Nov 12 '18 at 18:00

















          Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

          – Praveen Kumar K
          Nov 12 '18 at 17:53





          Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions

          – Praveen Kumar K
          Nov 12 '18 at 17:53













          Ah yes, in this case it makes sense.

          – romeuBraga
          Nov 12 '18 at 18:00





          Ah yes, in this case it makes sense.

          – romeuBraga
          Nov 12 '18 at 18:00


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265438%2foracle-apex-interactive-grid-reset-button%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Full-time equivalent

          Bicuculline

          さくらももこ