Utility Scripts for analysis : FilterCurvesByLength

 From:  Michael Gibson
8608.6 In reply to 8608.5 
Hi Marco, so unfortunately the slider control does not currently expose the min and max values as individual properties that can be changed after parsing, they are only initialized when the control is initialized. So yes you would need to create an entire slider at once with your desired value like you're doing there.

Bindings are also only initialized after the initial document parsing pass is complete - I'd guess what is happening is when the input control's binding is parsed the slider doesn't exist yet.

One thing you might try for your case here is to initialize the slider earlier - instead of triggering it in an onload="" handler, declare a <script></script> block at the bottom of the <body> which should then run the code contained in it before the document ready event triggers and so I'd think would be set up before binders are initialized.

Another thing you could do would be to take out the binder and instead handle the connection between the 2 controls by onvaluechange="" event handlers on each element.

- Michael