I recently updated to Mathematica 14 and InputField now behaves differently. I want to paste large amounts of data into an InputField. I want the input field to not expand when I puts large amount of data into it.
Sample Code
DynamicModule[{a},
(*initial input*)
a = "This is default text. Copy and paste it many time to see if the \
Input expands.";
(*input field to play with it.*)
Column@{
InputField[Dynamic@a, String, FieldSize -> {{5, 50}, {3, 3}}],
Dynamic[a]}
]
I hoped FieldSize might prevent the growth but it does not. I tried Scrollbar in case it was an undocumented option but it is not.