-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathRS203000.aspx
More file actions
57 lines (54 loc) · 2.79 KB
/
RS203000.aspx
File metadata and controls
57 lines (54 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<%@ Page Language="C#" MasterPageFile="~/MasterPages/FormTab.master" AutoEventWireup="true" ValidateRequest="false" CodeFile="RS203000.aspx.cs" Inherits="Page_RS203000" Title="Untitled Page" %>
<%@ MasterType VirtualPath="~/MasterPages/FormTab.master" %>
<asp:Content ID="cont1" ContentPlaceHolderID="phDS" Runat="Server">
<px:PXDataSource ID="ds" runat="server" Visible="True" Width="100%"
TypeName="PhoneRepairShop.RSSVRepairPriceMaint"
PrimaryView="RepairPrices"
>
<CallbackCommands>
</CallbackCommands>
</px:PXDataSource>
</asp:Content>
<asp:Content ID="cont2" ContentPlaceHolderID="phF" Runat="Server">
<px:PXFormView ID="form" runat="server" DataSourceID="ds" DataMember="RepairPrices" Width="100%" Height="" AllowAutoHide="false">
<Template>
<px:PXLayoutRule ControlSize="m" LabelsWidth="s" ID="PXLayoutRule1" runat="server" StartRow="True"></px:PXLayoutRule>
<px:PXSelector runat="server" ID="CstPXSelector3" DataField="ServiceID" />
<px:PXSelector runat="server" ID="CstPXSelector1" DataField="DeviceID" />
<px:PXLayoutRule ControlSize="m" LabelsWidth="sm" runat="server" ID="CstPXLayoutRule4" StartColumn="True" ></px:PXLayoutRule>
<px:PXNumberEdit runat="server" ID="CstPXNumberEdit2" DataField="Price" /></Template>
</px:PXFormView>
</asp:Content>
<asp:Content ID="cont3" ContentPlaceHolderID="phG" Runat="Server">
<px:PXTab ID="tab" runat="server" Width="100%" Height="150px" DataSourceID="ds" AllowAutoHide="false">
<Items>
<px:PXTabItem Text="Repair Items">
<Template>
<px:PXGrid SyncPosition="True" Width="100%" SkinID="Details" runat="server" ID="CstPXGrid5">
<Levels>
<px:PXGridLevel DataMember="RepairItems" >
<Columns>
<px:PXGridColumn CommitChanges="True" DataField="RepairItemType" Width="70" ></px:PXGridColumn>
<px:PXGridColumn Type="CheckBox" DataField="Required" Width="80" ></px:PXGridColumn>
<px:PXGridColumn DataField="InventoryID" Width="70" ></px:PXGridColumn>
<px:PXGridColumn DataField="InventoryID_description" Width="280" ></px:PXGridColumn>
<px:PXGridColumn DataField="BasePrice" Width="100" ></px:PXGridColumn>
<px:PXGridColumn Type="CheckBox" DataField="IsDefault" Width="80" ></px:PXGridColumn></Columns>
<%-- The added code --%>
<RowTemplate>
<px:PXSegmentMask runat="server" ID="CstPXSegmentMask6"
DataField="InventoryID" AutoRefresh="True" ></px:PXSegmentMask>
</RowTemplate>
<%-- The end of added code --%>
</px:PXGridLevel></Levels>
<AutoSize Enabled="True" ></AutoSize>
<Mode InitNewRow="True" ></Mode></px:PXGrid></Template>
</px:PXTabItem>
<px:PXTabItem Text="Tab item 2">
<Template>
</Template>
</px:PXTabItem>
</Items>
<AutoSize Container="Window" Enabled="True" MinHeight="150" />
</px:PXTab>
</asp:Content>