Subversion Repositories DevTools

Rev

Rev 5116 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5116 Rev 5117
Line 90... Line 90...
90
 
90
 
91
 
91
 
92
//  Configure the Summary Table
92
//  Configure the Summary Table
93
function populateContent(sdktag_id)
93
function populateContent(sdktag_id)
94
{
94
{
95
    $('#sdk_content').DataTable({
95
    table = $('#sdk_content').DataTable({
96
        deferRender: true,
96
        deferRender: true,
97
        dom: "frtiS",
97
        dom: "frtiS",
98
        sScrollY: $( document ).height() - 300,
98
        sScrollY: $( document ).height() - 300,
99
        scrollCollapse: true,
99
        scrollCollapse: true,
100
        processing: true,
100
        processing: true,
Line 163... Line 163...
163
          pv_id : $(this).data('pvid'), 
163
          pv_id : $(this).data('pvid'), 
164
          sdkpkg_state : this.checked ? 'E' : '-' 
164
          sdkpkg_state : this.checked ? 'E' : '-' 
165
        });
165
        });
166
    });
166
    });
167
 
167
 
-
 
168
// Single click on row - Highlight selected row
-
 
169
$('#sdk_content').on( 'click', 'tbody tr', function () {
-
 
170
    if ( $(this).hasClass('selected') ) {
-
 
171
        $(this).removeClass('selected');
-
 
172
    }
-
 
173
    else {
-
 
174
        table.$('tr.selected').removeClass('selected');
-
 
175
        $(this).addClass('selected');
-
 
176
    }
-
 
177
} );
-
 
178
 
-
 
179
 
168
//  Populate the Reference Project
180
//  Populate the Reference Project
169
//      sdk_id  - Select this entry if possible
181
//      sdk_id  - Select this entry if possible
170
function populateSdkNames(sdk_id) {
182
function populateSdkNames(sdk_id) {
171
    getAjaxData (
183
    getAjaxData (
172
        "sdk_opr_json.asp",
184
        "sdk_opr_json.asp",
Line 300... Line 312...
300
  <!-- Section Header ---->
312
  <!-- Section Header ---->
301
</div>
313
</div>
302
 
314
 
303
<!-- Section Body ---->
315
<!-- Section Body ---->
304
<div class="rounded_box">
316
<div class="rounded_box">
305
  <table id=sdk_content class="full_table" >
317
  <table id=sdk_content class="full_table display" >
306
      <thead>
318
      <thead>
307
      <tr class="body_col form_align">
319
      <tr class="body_col form_align">
308
        <th width="1%"> PV_ID
320
        <th width="1%"> PV_ID
309
        <th width="10%"> Package Name
321
        <th width="10%"> Package Name
310
        <th> Package Version
322
        <th> Package Version