| Author |
Comment/Response |
Mel
|
07/16/12 11:23am
I did not use Manipulate to create the InputField as I want to control where to put the InputFields.
However I find that my input fields fail to update when I deploy them. I must evaluate the cell on start up of the notebook if I want to change the input field, however with input fields created through Manipulate it works.
What can I do to fix this?
Thanks!
This is basically the gist of what I want to do.
surfA[f1_] :=
Plot3D[f1, {x, -10, 10}, {y, -10, 10},
PlotStyle -> Directive[Orange, Opacity[0.5]],
PlotRange -> { -3, 9}, ImageSize -> 350];
Manipulate[
Grid[{{InputField[Dynamic[Z1] , ImageSize -> 100,
Background -> LightBlue ], Show[surfA[Z1]]}}],
SaveDefinitions -> True, ContinuousAction -> True]
URL: , |
|