Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/29/11 10:53:02 (13 years ago)
Author:
msammer
Message:

#1446 Changed RunCollectionTable for using it in the MVC-pluginhost. Changes for using real Run-objects in the table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Query/RunCollectionTable.ascx

    r5977 r6076  
    1 <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="RunCollectionTable.ascx.cs" Inherits="HLWebOKBQueryPlugin.Views.Query.RunCollectionTable" %>
     1<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
    22
    3 <asp:GridView ID="GridRunCollection" runat="server" AutoGenerateColumns="False"
    4                 OnRowCommand="GridRunCollection_RowCommand"
    5                 OnSelectedIndexChanged="GridRunCollection_SelectedIndexChanged">
    6     <SelectedRowStyle BackColor="Aqua" />
    7     <Columns>
    8         <asp:BoundField />
    9         <asp:CommandField ShowSelectButton="true" SelectText="Details" />
    10         <asp:BoundField HeaderText="Abs.DifferenceBestKnown2Best" />
    11         <asp:BoundField HeaderText="Algorithm Name" DataField="AlgorithmName" />
    12         <asp:BoundField HeaderText="Algorithm Type" DataField="AlgorithmAlgorithmClass" />
    13         <asp:BoundField HeaderText="Analyser" />
    14     </Columns>
    15 </asp:GridView>
     3<div id="RunCollectionTable" style="overflow: auto; width: 100%">
     4    <form id="frmRunCollectionTable" runat="server" method="post">
    165
    17 <asp:TextBox ID="txtTest" runat="server" />
    18 <asp:TextBox ID="txtTest2" runat="server" />
     6        <asp:GridView ID="GridRunCollection" runat="server" DataSourceID="dsQueryRuns">
     7            <SelectedRowStyle BackColor="Aqua" />
     8            <Columns>
     9                <asp:BoundField />
     10                <asp:CommandField ShowSelectButton="true" SelectText="Details" />
     11            </Columns>
     12        </asp:GridView>
     13        <asp:ObjectDataSource ID="dsQueryRuns" runat="server"
     14                    SelectMethod="getTestRuns"
     15                    TypeName="HLWebPluginHost.Models.QueryModel">
     16        </asp:ObjectDataSource>
     17
     18    </form>
     19</div>
Note: See TracChangeset for help on using the changeset viewer.