87,990
社区成员
发帖
与我相关
我的任务
分享
<ext:Store ID="Store1" OnRefreshData="Store1_RefershData" runat="server" AutoLoad="true">
<Proxy>
<ext:PageProxy/>
</Proxy>
<Reader>
<ext:JsonReader IDProperty="ID">
<Fields>
<ext:RecordField Name="ID" Mapping="ID" />
<ext:RecordField Name="Name" Mapping="Name"/>
<ext:RecordField Name="TypeName" Mapping="TechnologyType.Name"/>
<ext:RecordField Name="IsSmallUse" Mapping="IsSmallUse" />
<ext:RecordField Name="IsMediumUse" Mapping="IsMediumUse" />
<ext:RecordField Name="IsLargeUse" Mapping="IsLargeUse" />
<ext:RecordField Name="IsHeavyUse" Mapping="IsHeavyUse" />
<ext:RecordField Name="Remark" Mapping="Remark"/>
<ext:RecordField Name="CreatedOn" Mapping="CreatedOn" DateFormat="yyyy-MM-dd"/>
</Fields>
</ext:JsonReader>
</Reader>
</ext:Store>
<ext:TemplateColumn Sortable="false" Header="适用车型">
<Template runat="server">
<Html>
<tpl for=".">
{IsSmallUse},
{IsMediumUse},
{IsLargeUse},
{IsHeavyUse}
</tpl>
</Html>
</Template>
</ext:TemplateColumn>