Hi,
I'm needing that one record from DB, for example: Company name, be as edit as on click on edit button.
Regards!
C3media
Hello,
I don't understand the statement.
Please explain further along with screenshot
You can email me at [email protected]
Hi Abu,
I want to do a custom jquery function when I edit a row. I want do the an alert
for example when I edit a row some coloums will hide according to dropdown slection
Is there any way?
Hello,
You can connect onchange event with dropdown and call custom JS function in which you can hide / show certain form fields.
e.g. if dropdown value = 1, hide row with field colname.
$col["editoptions"]["onchange"] = "function(){ if (this.value == 1) $('tr_colname').hide(); }";
Where 'colname' is the column name $col["name"]='colname';