2012-03-31 1 views

답변

1

새 저장소 개체를 만들고 페이지 컨트롤 컬렉션에 추가 할 수 있습니다. 다음 샘플에서는 간단한 시나리오를 보여줍니다. 이 도움이

<%@ Page Language="C#" %> 

<%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %> 

<script runat="server"> 
    protected void Page_Load(object sender, EventArgs e) 
    { 
     if (!X.IsAjaxRequest) 
     { 
      // Create a new Store object 
      var store = new Store { 
       // Configure your Properties 
      }; 

      // Add Store to the Page. 
      this.Form.Controls.Add(store); 
     } 
    } 
</script> 

<!DOCTYPE html> 
<html> 
<head runat="server"> 
    <title>Ext.NET Examples</title> 
</head> 
<body> 
<form runat="server"> 
    <ext:ResourceManager runat="server" /> 

</form> 
</body> 
</html> 

희망.

+0

이 저장소는 런타임에 생성된다는 것을 알 수 있습니다. 런타임에이 저장소를 채울 방법을 알고 싶습니다. – RKh

+0

Ext.NET Examples Explorer (http://examples.ext.net/)에는 수십 개의 GridPanel + Store 샘플이 있습니다. 그들은 모두 상점을 채우는 방법을 보여줍니다. 나는 그 샘플 중 몇 가지를 통해 작업 할 것을 제안한다. –