Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Summary row is editable

    If I double click on the summary row, it can be edited.

    Screen shot and example in attachment.

    Regards,

    Daniele
    Attached Files

    #2
    Hi there, I'm working right now in a fix for that..

    I have a temporary solution: ONCE you get compiled the java proyect, go to your app on the browser, look up the ID of the div containing all sumary child divs, then add a css rule to your page.

    For example:
    Code:
    #isc_2R{
      	pointer-events: none;
    }
    If isomorphic give me a glue about how to set id or get id for that div, or how to set style to div would be easier to get a final solution
    Attached Files

    Comment


      #3
      For now this will be my solution.. I think won't help you but can give you an idea about how to fix it..
      As gwt autogenerates the div ids, you will always get a random id, so in my case with jquery can solved it EASY.
      Code:
      gwt..
      grid.setId("ps1");
      
      Javascript..
      $("[eventproxy='ps1_summaryRow']").css("pointer-events","none");
      
      $("[eventproxy='<YOUR GRID ID>_summaryRow']").css("pointer-events","none");

      Comment


        #4
        We've made a change to fix this one in the framework. Please try the next nightly build dated Sep 5 or above on the 9.0p or 9.1d branches

        Regards
        Isomorphic Software

        Comment


          #5
          The fix works.

          Regards,

          Daniele

          Comment

          Working...
          X