I try to change linkbutton text in handler to display status of operation. Text changed but opts.selected is locked as false after that block and cannot be changed anymore:
I create several datagrid with unuque id via javascript from <table id="dg"></table>. All datagrid markup is placed out of initial table tags. I cannot use $("#dg").find() to locate any html element inside datagrid.
I am using .form('submit') to sent data to server in background by timer. Current textbox input loses focus on .form('submit') when it is called by timer. Some investigation leads to $(target).find('.textbox-text:focus').blur(); row in jquery.form.js. Can I change this behavior without disable this row?
I have a big form that wrapped by `.form` with many fields . I want to post changed fields only. There is no standard method for that. I cannot modify form data for submit method.