Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Infinite loop of ISCObjectPool exception

$
0
0
Sorry, no reproduction for this one. I tried it again and it didn't happen a second time.

Server log: https://dl.dropboxusercontent.com/u/...server-log.txt

Infinite loop of "return of object already in pool" starts half way down the log. The original server log hit 78MB but I truncated it to 10,000 lines.

SmartClient version: v10.0p_2015-04-05/EVAL Development Only

Code:

<%@ taglib uri="isomorphic" prefix="isomorphic" %>
<!doctype html>
<HTML>
 <HEAD>
  <script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
  <isomorphic:loadISC skin="Graphite"/>
 </HEAD>
 <BODY>
 <SCRIPT>
    <isomorphic:loadDS ID="chemicals" />
    <isomorphic:loadDS ID="supplyItem"/>

    isc.DynamicForm.create({
      ID: "chemicalForm",
      colWidths: [100, 200],
      dataSource: "chemicals",
      useAllDataSourceFields: true,
      fields: [
        {type:"header", defaultValue:"Chemical"}
      ]
    });

    isc.IButton.create({
      ID: "saveChemicalFormButton",
      title: "Save",
      click: function() {
        chemicalForm.saveData();
      }
    });

    isc.VLayout.create({
      height: "100%",
      width: "100%",
      overflow: "hidden",
      autoDraw: true,
      layoutMargin: 10,
      members: [ chemicalForm, saveChemicalFormButton ],
      membersMargin: 10
    });

 </SCRIPT>
 </BODY>
</HTML>


Viewing all articles
Browse latest Browse all 4756

Trending Articles