16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
$(document).ready(function()
|
|
{
|
|
$('#type').change(function(val)
|
|
{
|
|
var type = $('#type').val();
|
|
if(type.indexOf('Report') !== -1)
|
|
{
|
|
$('#dataset').closest('tr').hide();
|
|
}
|
|
else
|
|
{
|
|
$('#dataset').closest('tr').show();
|
|
}
|
|
})
|
|
});
|