Announcement

Collapse
No announcement yet.

EFS parameter window

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • EFS parameter window

    I have a parameter in an EFS which is too long to edit in the parameter window. Please see this image:



    Is there a way to edit this parameter or work around this?

    As you can see the parameter window is fully scrolled to the right and when I try and edit this parameter I can't get to the right hand side of it where the file's name is.

    Thanks
    Standing on the shoulders of giants.

  • #2
    Guy
    Have you tried selecting the parameter box and pressing the End key?
    Alex

    Comment


    • #3
      Hi Alex,

      Yes I have and that doesn't help and I think that I can see why now.

      The underlying cell in the window has been expanded to the full length required by the horizontal scroll bar does not appear to be tied to correct part of the window to scroll the cell.

      Try this parameter in one of your functions:

      var ParamT = new FunctionParameter( "test", FunctionParameter.STRING);
      with( ParamT ) {
      setDefault("This is a very long function parameter that runs right the way to the end of the input cell and perhaps even off the page into ...");
      setName("TestParam");
      }
      Standing on the shoulders of giants.

      Comment


      • #4
        Guy
        FWIW I am seeing the same issue. The only workaround I can think of is to write those options in full only in main() and then call them using a shorter name in Edit Studies
        Alex

        Comment

        Working...
        X