| 12345678910111213141516171819202122232425 |
- $(document).ready(function()
- {
- if(mode == 'edit')
- {
- $('tr.edit').show();
- $('tr.view').hide();
- }
- else
- {
- $('tr.edit').hide();
- $('tr.view').show();
- }
- $('.singleEdit').click(function()
- {
- if($('tr.edit').is(':visible')) return false;
- $(this).parents('tr').next('tr.edit').show();
- $(this).parents('tr').next('tr.edit').children('td.singleSave').show();
- $(this).parents('tr').hide();
- })
- /* expand active tree. */
- $('.tree li.active .hitarea').click();
- })
|