C
cv
Hi, I am looking to find a way to change the label of the data displayed in
the dropdown on the Import Timesheet page. Currently it will show "My
Timesheet (9/1/2008 - 9/7/2008)", etc for every time sheet submitted. This
becomes can make it hard to find the timesheet you are looking for after you
have a long enough list. Preferably I would like to get the Timesheet Period
label in there instead so for example our TP standard is "FY2009-TP01
9/1/2008 - 9/7/2208". So instead of just looking at the dates it will also
provide the Timesheet Period info, hopefully also solving the sorting issue
for this dropdown.
I have looked into the Import.aspx page and narrowed it down to the
following code, but unsure where to proceed from here. Any help would be
much appreciated.
Thanks.
<wssuc:InputFormSection id="idFormSectionPeriod" runat="server"
Title="<%$ResourcesWA,STATUSING_IMPORT_SELECT_TIMESHEET_LABEL%>">
<Template_Description>
<asp:Literal runat="server"
text="<%$ResourcesWA,STATUSING_IMPORT_SELECT_TIMESHEET_DESC%>" />
</Template_Description>
<Template_InputFormControls>
<wssuc:InputFormControl runat="server">
<Template_Control>
<table align="center" width="100%" class="ms-stdtxt">
<tr><td><asp:label AssociatedControlID="mnuPeriods"
runat="server" text="<%$ResourcesWA,STATUSING_IMPORT_TIMESHEET_LBL%>"
/></tr>
<tr>
<td
style="padding-<%=PJUtility.SetAlignmentLeft(PJContext.Current)%>: 20px;">
<PWAWADropdown runat="Server"
AutoPostBack="true" id="mnuPeriods" />
</td>
</table>
</Template_Control>
</wssuc:InputFormControl>
</Template_InputFormControls>
</wssuc:InputFormSection>
the dropdown on the Import Timesheet page. Currently it will show "My
Timesheet (9/1/2008 - 9/7/2008)", etc for every time sheet submitted. This
becomes can make it hard to find the timesheet you are looking for after you
have a long enough list. Preferably I would like to get the Timesheet Period
label in there instead so for example our TP standard is "FY2009-TP01
9/1/2008 - 9/7/2208". So instead of just looking at the dates it will also
provide the Timesheet Period info, hopefully also solving the sorting issue
for this dropdown.
I have looked into the Import.aspx page and narrowed it down to the
following code, but unsure where to proceed from here. Any help would be
much appreciated.
Thanks.
<wssuc:InputFormSection id="idFormSectionPeriod" runat="server"
Title="<%$ResourcesWA,STATUSING_IMPORT_SELECT_TIMESHEET_LABEL%>">
<Template_Description>
<asp:Literal runat="server"
text="<%$ResourcesWA,STATUSING_IMPORT_SELECT_TIMESHEET_DESC%>" />
</Template_Description>
<Template_InputFormControls>
<wssuc:InputFormControl runat="server">
<Template_Control>
<table align="center" width="100%" class="ms-stdtxt">
<tr><td><asp:label AssociatedControlID="mnuPeriods"
runat="server" text="<%$ResourcesWA,STATUSING_IMPORT_TIMESHEET_LBL%>"
/></tr>
<tr>
<td
style="padding-<%=PJUtility.SetAlignmentLeft(PJContext.Current)%>: 20px;">
<PWAWADropdown runat="Server"
AutoPostBack="true" id="mnuPeriods" />
</td>
</table>
</Template_Control>
</wssuc:InputFormControl>
</Template_InputFormControls>
</wssuc:InputFormSection>