Why autogrow does not work after autopostback?
This is the code I use for autogrow.
- $(document).ready(function(){
- $('.expanding').autogrow();
- });
- <asp:TextBox ID="txtNotes" runat="server" CssClass="expanding" Text='<%# Bind("notes") %>' TextMode="MultiLine" Width="96%" />
- .expanding
- {
- line-height: 20px;
- width: 400px;
- }
The problem is after RadioButtonList control autopostback happened, the autogrow no longer works. Any suggestion?