Ask Your Question
1

Interact: getting a slider to change its range

asked 12 years ago

anonymous user

Anonymous

How would I get a slider to change its range when the stuff in the input box before it is changed?

Making two interacts somehow doesn't seem to work...

Preview: (hide)

Comments

1

I understand that "sliders that depend on sliders" is a feature that is coming soon. You can see a sample at: http://interact.sagemath.org/node/15. But, it's not in the standard Sage distribution yet.

calc314 gravatar imagecalc314 ( 12 years ago )

2 Answers

Sort by » oldest newest most voted
3

answered 8 years ago

Since this functionality has yet to appear explicitly, one solution is to nest interacts. Here's a slider that depends on a slider (live example):

@interact
def _( n=slider(1,10) ):

  @interact
  def _( m=slider(0,n,default=n/2) ):

        show( 'n=', n )
        show( 'm=', m )

And here's a slider that depends on an input box as per the original question (live example):

@interact
def _( n=input_box(10) ):

  @interact
  def _( m=slider(0,n,default=n/2) ):

        show( 'n=', n )
        show( 'm=', m )
Preview: (hide)
link
0

answered 3 years ago

rrogers gravatar image

An alternative; if yon't mind getting your hands dirt (i.e. side effects)
The return is a tuple (master, secondary, secondary limit) The last is just for debugging. An alternative is to not allow the "illegal" selection.

@interact
def myfunc(x=(0,10)): 
    #sage_interactive(myfunc1, y=(0,floor(x/2)))
    pass
@interact
def myfunc1(y=(0,10)):
    return y

def get_value():
    gg=myfunc.widget.children[0].value
    #print('gg= ',gg,' floor= ',floor(gg/2))
    myfunc1.widget.children[0].max=floor(gg/2)
    return myfunc.widget.children[0].value,myfunc1.widget.children[0].value, myfunc1.widget.children[0].max

I left some debugging junk in.
Tip: The secret is to use
f.?
f.children?
f.widget.children?
Often!

`

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 1,535 times

Last updated: Nov 10 '21