How to alternate table row color with nth indicator

rss

Posted by davidnarramore - Mar 9 ’15 at 01:58

I am trying to use the nth indicator on my spforms table. I started a new list with only title, first name, last name, subject columns. I opend spforms and on the display form added a table. In the table CSS layout, css class field I typed "tbl-altRows" in the CSS form I pasted the code below, but the  tr:nth-child(even) doesn't appear to work. Can you help?

.fd_table {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 12px;
border: 0px !important;
border-collapse:collapse;
/* width: 800px; */
}

.fd_table td {
padding:4px;
}

.fd_table tr {
/* background: #b8d1f3; */
background: #b8d1f3;
}

/*  Define the background color for all the ODD background rows  */
.fd_table tr:nth-child(odd){
background: #b8d1f3;
}

/*  Define the background color for all the EVEN background rows  */
.fd_table tr:nth-child(even){
background: #dae5f4;
}

.fd_field {
padding: 10px 0;
height: 100%;
}

.fd_title {
float: left;
width: 25% !important;
padding-right: 10px;
white-space: normal !important;
text-align: right;
color: [#000];
}

.fd_control {
float: left;
text-align: left;
width: 65% !important;
border-radius: 10px;
}

input[type=text] {
width: 200px;
}

.rte-field .ms-rtestate-field p,
.rte-field p.ms-rteElement-P {
margin: 0px 0px 0px 0px;
}

 

This is the page code:

<%@ Register TagPrefix="WpNs0" Namespace="FormsDesigner.Sharepoint" Assembly="FormsDesigner.Sharepoint, Version=2.0.0.0, Culture=neutral, PublicKeyToken=1c140246cb6fd531"%>
<%@ Page language="C#" MasterPageFile="~masterurl/default.master"    Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,Microsoft.SharePoint,Version=14.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" meta:webpartpageexpansion="full" meta:progid="SharePoint.WebPartPage.Document"  %>
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<asp:Content ContentPlaceHolderId="PlaceHolderPageTitle" runat="server">
<SharePoint:ListFormPageTitle runat="server"/>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderPageTitleInTitleArea" runat="server">
<span class="die">
<SharePoint:ListProperty Property="LinkTitle" runat="server" id="ID_LinkTitle"/>
: </span>
<SharePoint:ListItemProperty id="ID_ItemProperty" maxlength="40" runat="server"/>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderPageImage" runat="server">
<img src="/_layouts/images/blank.gif" width='1' height='1' alt="" />
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server" >
<SharePoint:UIVersionedContent UIVersion="4" runat="server">
<ContentTemplate>
<div class="ms-quicklaunchouter">
<div class="ms-quickLaunch">
<Sharepoint:UIVersionedContent runat="server" UIVersion="4">
<ContentTemplate>
<h2 style="display:inline;" class="ms-hidden"><SharePoint:EncodedLiteral runat="server" text="<%$Resources:wss,quiklnch_pagetitle%>" EncodeMethod="HtmlEncode"/></h2>
</ContentTemplate>
</SharePoint:UIVersionedContent>
<SharePoint:UIVersionedContent UIVersion="3" runat="server">
<ContentTemplate>
<h3 class="ms-standardheader"><label class="ms-hidden"><SharePoint:EncodedLiteral runat="server" text="<%$Resources:wss,quiklnch_pagetitle%>" EncodeMethod="HtmlEncode"/></label>
<Sharepoint:SPSecurityTrimmedControl runat="server" PermissionsString="ViewFormPages">
<div class="ms-quicklaunchheader"><SharePoint:SPLinkButton id="idNavLinkViewAll" runat="server" NavigateUrl="~site/_layouts/viewlsts.aspx" Text="<%$Resources:wss,quiklnch_allcontent%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"/></div>
</SharePoint:SPSecurityTrimmedControl>
</h3>
</ContentTemplate>
</SharePoint:UIVersionedContent>
<Sharepoint:SPNavigationManager
id="QuickLaunchNavigationManager"
runat="server"
QuickLaunchControlId="QuickLaunchMenu"
ContainedControl="QuickLaunch"
EnableViewState="false"
CssClass="ms-quicklaunch-navmgr"
>
<div>
<SharePoint:DelegateControl runat="server" ControlId="QuickLaunchDataSource">
<Template_Controls>
<asp:SiteMapDataSource SiteMapProvider="SPNavigationProvider" ShowStartingNode="False" id="QuickLaunchSiteMap" StartingNodeUrl="sid:1025" runat="server" />
</Template_Controls>
</SharePoint:DelegateControl>
<SharePoint:UIVersionedContent UIVersion="3" runat="server">
<ContentTemplate>
<SharePoint:AspMenu id="QuickLaunchMenu" runat="server" DataSourceId="QuickLaunchSiteMap" Orientation="Vertical" StaticDisplayLevels="2" ItemWrap="true" MaximumDynamicDisplayLevels="0" StaticSubMenuIndent="0" SkipLinkText="" CssClass="s4-die">
<LevelMenuItemStyles>
<asp:menuitemstyle CssClass="ms-navheader" />
<asp:menuitemstyle CssClass="ms-navitem" />
</LevelMenuItemStyles>
<LevelSubMenuStyles>
<asp:submenustyle CssClass="ms-navSubMenu1" />
<asp:submenustyle CssClass="ms-navSubMenu2" />
</LevelSubMenuStyles>
<LevelSelectedStyles>
<asp:menuitemstyle CssClass="ms-selectednavheader" />
<asp:menuitemstyle CssClass="ms-selectednav" />
</LevelSelectedStyles>
</SharePoint:AspMenu>
</ContentTemplate>
</SharePoint:UIVersionedContent>
<SharePoint:UIVersionedContent UIVersion="4" runat="server">
<ContentTemplate>
<SharePoint:AspMenu id="V4QuickLaunchMenu" runat="server" EnableViewState="false" DataSourceId="QuickLaunchSiteMap" UseSimpleRendering="true" Orientation="Vertical" StaticDisplayLevels="2" MaximumDynamicDisplayLevels="0" SkipLinkText="" CssClass="s4-ql" />
</ContentTemplate>
</SharePoint:UIVersionedContent>
</div>
</Sharepoint:SPNavigationManager>
<Sharepoint:UIVersionedContent runat="server" UIVersion="3">
<ContentTemplate>
<Sharepoint:SPNavigationManager
id="TreeViewNavigationManager"
runat="server"
ContainedControl="TreeView"
>
<table class="ms-navSubMenu1" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<table class="ms-navheader" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td nowrap="nowrap" id="idSiteHierarchy">
<SharePoint:SPLinkButton runat="server" NavigateUrl="~site/_layouts/viewlsts.aspx" id="idNavLinkSiteHierarchy" Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="ms-treeviewouter">
<SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">
<Template_Controls>
<SharePoint:SPHierarchyDataSourceControl
runat="server"
id="TreeViewDataSource"
RootContextObject="Web"
IncludeDiscussionFolders="true"
/>
<SharePoint:SPRememberScroll runat="server" id="TreeViewRememberScroll" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;height: 400px;width: 150px; ">
<Sharepoint:SPTreeView
id="WebTreeView"
runat="server"
ShowLines="false"
DataSourceId="TreeViewDataSource"
ExpandDepth="0"
SelectedNodeStyle-CssClass="ms-tvselected"
NodeStyle-CssClass="ms-navitem"
NodeStyle-HorizontalPadding="2"
SkipLinkText=""
NodeIndent="12"
ExpandImageUrl="/_layouts/images/tvplus.gif"
CollapseImageUrl="/_layouts/images/tvminus.gif"
NoExpandImageUrl="/_layouts/images/tvblank.gif"
>
</Sharepoint:SPTreeView>
</Sharepoint:SPRememberScroll>
</Template_Controls>
</SharePoint:DelegateControl>
</div>
</Sharepoint:SPNavigationManager>
</ContentTemplate>
</SharePoint:UIVersionedContent>
<Sharepoint:UIVersionedContent runat="server" UIVersion="4">
<ContentTemplate>
<Sharepoint:SPNavigationManager
id="TreeViewNavigationManagerV4"
runat="server"
ContainedControl="TreeView"
CssClass="s4-treeView"
>
<SharePoint:SPLinkButton runat="server" NavigateUrl="~site/_layouts/viewlsts.aspx" id="idNavLinkSiteHierarchyV4" Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>" CssClass="s4-qlheader" />
<div class="ms-treeviewouter">
<SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">
<Template_Controls>
<SharePoint:SPHierarchyDataSourceControl
runat="server"
id="TreeViewDataSourceV4"
RootContextObject="Web"
IncludeDiscussionFolders="true"
/>
<SharePoint:SPRememberScroll runat="server" id="TreeViewRememberScrollV4" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;height: 400px;width: 155px; ">
<Sharepoint:SPTreeView
id="WebTreeViewV4"
runat="server"
ShowLines="false"
DataSourceId="TreeViewDataSourceV4"
ExpandDepth="0"
SelectedNodeStyle-CssClass="ms-tvselected"
NodeStyle-CssClass="ms-navitem"
SkipLinkText=""
NodeIndent="12"
ExpandImageUrl="/_layouts/images/tvclosed.png"
ExpandImageUrlRtl="/_layouts/images/tvclosedrtl.png"
CollapseImageUrl="/_layouts/images/tvopen.png"
CollapseImageUrlRtl="/_layouts/images/tvopenrtl.png"
NoExpandImageUrl="/_layouts/images/tvblank.gif"
>
</Sharepoint:SPTreeView>
</Sharepoint:SPRememberScroll>
</Template_Controls>
</SharePoint:DelegateControl>
</div>
</Sharepoint:SPNavigationManager>
</ContentTemplate>
</SharePoint:UIVersionedContent>
<SharePoint:UIVersionedContent UIVersion="3" runat="server" id="PlaceHolderQuickLaunchBottomV3">
<ContentTemplate>
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="s4-die">
<tbody>
<tr><td>
<table class="ms-recyclebin" width="100%" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr><td nowrap="nowrap">
<SharePoint:SPLinkButton runat="server" NavigateUrl="~site/_layouts/recyclebin.aspx" id="v3idNavLinkRecycleBin" ImageUrl="/_layouts/images/recycbin.gif" Text="<%$Resources:wss,StsDefault_RecycleBin%>" PermissionsString="DeleteListItems" />
</td></tr>
</table>
</td></tr>
</table>
</ContentTemplate>
</SharePoint:UIVersionedContent>
<SharePoint:UIVersionedContent UIVersion="4" runat="server" id="PlaceHolderQuickLaunchBottomV4">
<ContentTemplate>
<ul class="s4-specialNavLinkList">
<li>
<SharePoint:ClusteredSPLinkButton
runat="server"
NavigateUrl="~site/_layouts/recyclebin.aspx"
ImageClass="s4-specialNavIcon"
ImageUrl="/_layouts/images/fgimg.png"
ImageWidth=16
ImageHeight=16
OffsetX=0
OffsetY=428
id="idNavLinkRecycleBin"
Text="<%$Resources:wss,StsDefault_RecycleBin%>"
CssClass="s4-rcycl"
PermissionsString="DeleteListItems" />
</li>
<li>
<SharePoint:ClusteredSPLinkButton
id="idNavLinkViewAllV4"
runat="server"
PermissionsString="ViewFormPages"
NavigateUrl="~site/_layouts/viewlsts.aspx"
ImageClass="s4-specialNavIcon"
ImageUrl="/_layouts/images/fgimg.png"
ImageWidth=16
ImageHeight=16
OffsetX=0
OffsetY=0
Text="<%$Resources:wss,quiklnch_allcontent_short%>"
accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"/>
</li>
</ul>
</ContentTemplate>
</SharePoint:UIVersionedContent>
</div>
</div>
</ContentTemplate>
</SharePoint:UIVersionedContent>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
<SharePoint:UIVersionedContent UIVersion="4" runat="server">
<ContentTemplate>
<div style="padding-left:5px">
</ContentTemplate>
</SharePoint:UIVersionedContent>
<table cellpadding="0" cellspacing="0" id="onetIDListForm" style="width:100%">
<tr>
<td>
<WebPartPages:WebPartZone runat="server" FrameType="None" ID="Main" Title="loc:Main"><ZoneTemplate>
<WpNs0:FDDataFormWebPart runat="server" Description="" ListDisplayName="" PartOrder="2" Default="FALSE" HelpLink="" AllowRemove="True" IsVisible="True" AllowHide="True" UseSQLDataSourcePaging="True" ExportControlledProperties="True" IsIncludedFilter="" DataSourceID="" Title="FormsDesigner" ViewFlag="8" NoDefaultStyle="TRUE" AllowConnect="True" DisplayName="Forms Designer" PageType="PAGE_DISPLAYFORM" FrameState="Normal" PageSize="-1" PartImageLarge="" AsyncRefresh="False" ExportMode="All" Dir="Default" DetailLink="" ShowWithSampleData="False" ListId="a0daebca-4290-420e-beeb-247b6985c9c1" ListName="{A0DAEBCA-4290-420E-BEEB-247B6985C9C1}" FrameType="None" PartImageSmall="" IsIncluded="True" SuppressWebPartChrome="False" AllowEdit="True" HideRibbonTab="False" EnableOriginalValue="False" ChromeType="None" AutoRefresh="False" AutoRefreshInterval="60" AllowMinimize="True" ViewContentTypeId="" InitialAsyncDataFetch="False" MissingAssembly="Cannot import this Web Part." HelpMode="Modeless" ListUrl="" ID="g_054c32dd_3277_48af_9fb5_f7dd33444612" ConnectionID="00000000-0000-0000-0000-000000000000" AllowZoneChange="True" ShowToolbar="False" ManualRefresh="False" __MarkupType="vsattributemarkup" __WebPartId="{054C32DD-3277-48AF-9FB5-F7DD33444612}" __AllowXSLTEditing="true" WebPart="true" Height="" Width=""><ParameterBindings>
<ParameterBinding Name="ListItemId" Location="QueryString(ID)" DefaultValue="0"/>
<ParameterBinding Name="weburl" Location="None" DefaultValue="/ticketing/JeTSProjects"/>
<ParameterBinding Name="ListID" Location="None" DefaultValue="a0daebca-4290-420e-beeb-247b6985c9c1"/>
<ParameterBinding Name="dvt_apos" Location="Postback;Connection"/>
<ParameterBinding Name="ManualRefresh" Location="WPProperty[ManualRefresh]"/>
<ParameterBinding Name="UserID" Location="CAMLVariable" DefaultValue="CurrentUserName"/>
<ParameterBinding Name="Today" Location="CAMLVariable" DefaultValue="CurrentDate"/>
<ParameterBinding Name="siteurl" Location="None" DefaultValue=""/>
</ParameterBindings>
<DataFields>
@ID,ID</DataFields>
<Xsl>
<xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal">
<xsl:output method="html" indent="no" />
<xsl:decimal-format NaN="" />
<xsl:param name="dvt_apos">&apos;</xsl:param>
<xsl:param name="ManualRefresh"></xsl:param>
<xsl:param name="siteurl"></xsl:param>
<xsl:variable name="dvt_1_automode">0</xsl:variable>
<xsl:template match="/" xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:SharePoint="Microsoft.SharePoint.WebControls">
<xsl:choose>
<xsl:when test="($ManualRefresh = 'True')">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<xsl:call-template name="dvt_1" />
</td>
<td width="1%" class="ms-vb" valign="top">
<img src="/_layouts/images/staticrefresh.gif" id="ManualRefresh" border="0" onclick="javascript: {ddwrt:GenFireServerEvent('__cancel')}" alt="Click here to refresh the dataview." />
</td>
</tr>
</table>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="dvt_1" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="dvt_1">
<xsl:variable name="dvt_StyleName">ListForm</xsl:variable>
<xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row" />
<xsl:variable name="dvt_RowCount" select="count($Rows)" />
<xsl:variable name="dvt_IsEmpty" select="$dvt_RowCount = 0" />
<xsl:choose>
<xsl:when test="$dvt_IsEmpty">
<xsl:call-template name="dvt_1.empty" />
</xsl:when>
<xsl:otherwise>
<table border="0" width="100%">
<xsl:call-template name="dvt_1.body">
<xsl:with-param name="Rows" select="$Rows" />
</xsl:call-template>
</table>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="dvt_1.body">
<xsl:param name="Rows" />
<tr>
<td class="ms-toolbar" nowrap="nowrap">
<SharePoint:FormToolBar runat="server" ControlMode="Display" />
</td>
</tr>
<xsl:for-each select="$Rows">
<xsl:call-template name="dvt_1.rowview" />
</xsl:for-each>
<xsl:call-template name="DefaultCommandsPanel" />
</xsl:template>
<xsl:template name="dvt_1.rowview">
<tr>
<td>
<table border="0" cellspacing="0" width="100%">
<tr>
<td colspan="2">
<SharePoint:CssRegistration Name="forms.css" runat="server" />
<SharePoint:CssRegistration runat="server" Name="{$siteurl}/style library/FormsDesigner/Form.css?rev=2_8_12" />
<SharePoint:ScriptLink ID="jquery" runat="server" Name="~sitecollection/style library/FormsDesigner/JQuery/jquery-1.7.1.min.js" OnDemand="false" />
<SharePoint:ScriptLink ID="jqueryui" runat="server" Name="~sitecollection/style library/FormsDesigner/JQuery/jquery-ui-1.8.17.custom.min.js" OnDemand="false" />
<SharePoint:ScriptLink ID="jquerycookie" runat="server" Name="~sitecollection/style library/FormsDesigner/JQuery/jquery.cookie.js" OnDemand="false" />
<SharePoint:ScriptLink ID="formsdesigner" runat="server" Name="~sitecollection/style library/FormsDesigner/form.min.js?rev=2_8_12" OnDemand="false" />
<xsl:call-template name="FormsDesignerTemplate" />
</td>
</tr>
<xsl:if test="$dvt_1_automode = '1'" ddwrt:cf_ignore="1">
<tr>
<td colspan="99" class="ms-vb">
<span ddwrt:amkeyfield="ID" ddwrt:amkeyvalue="ddwrt:EscapeDelims(string(@ID))" ddwrt:ammode="view"></span>
</td>
</tr>
</xsl:if>
</table>
</td>
</tr>
</xsl:template>
<xsl:template name="dvt_1.empty">
<xsl:variable name="dvt_ViewEmptyText">Empty Result.</xsl:variable>
<table border="0" width="100%">
<tr>
<td class="ms-vb">
<xsl:value-of select="$dvt_ViewEmptyText" />
</td>
</tr>
</table>
</xsl:template>
<xsl:template name="FormsDesignerTemplate">
<div id="fd_form" formType="Display" redirectOnSubmitUrl="" redirectOnCancelUrl="" ddwrt:connection="{ddwrt:GenFireConnection(concat('*@ID=',@ID),'')}" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:FormsDesigner="FormsDesigner.Sharepoint">
<script language="javascript" type="text/javascript">//
var fd_tabcontrol_ids = [];
var fd_accordion_ids = [];
var fd_relateditems_webparts = [];
var fd_signature_ids = [];

(function($) {
fd.showLoading();
$(document).ready(function() {
fdInitForm($);
fd.hideLoading();

});
})($fd_jQuery)
//</script>
<style type="text/css">/**/
.fd_table {
font-family: &quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif;
font-size: 12px;
border: 0px !important;
border-collapse:collapse;
}

.fd_table td {
padding:4px;
}

.fd_table tr {
/* background: #b8d1f3; */
background: #b8d1f3;
}

/*  Define the background color for all the ODD background rows  */
.fd_table tr:nth-child(odd){
background: #b8d1f3;
}

/*  Define the background color for all the EVEN background rows  */
.fd_table tr:nth-child(even){
background: #dae5f4;
}

.fd_field {
padding: 10px 0;
height: 100%;
}

.fd_title {
float: left;
width: 25% !important;
padding-right: 10px;
white-space: normal !important;
text-align: right;
color: [#000];
}

.fd_control {
float: left;
text-align: left;
width: 65% !important;
border-radius: 10px;
}

input[type=text] {
width: 200px;
}

.rte-field .ms-rtestate-field p,
.rte-field p.ms-rteElement-P {
margin: 0px 0px 0px 0px;
}
/**/</style>
<table style="width:100%;" class="fd_table ">
<!---->
<tr>
<td>
<div class="fd_field " fd_name="Title" style="">
<div class="fd_title" style="width: 150px; float: left; white-space: nowrap; ">Title<span class="ms-formvalidation"> *</span><!----></div>
<div class="fd_control" fd_type="Text" style="margin-left: 160px;" fd_readonly="False"><SharePoint:FormField id="TitleField" runat="server" ControlMode="Display" FieldName="Title" /><SharePoint:FieldDescription runat="server" FieldName="Title" ControlMode="Display" /><!----></div>
</div>
</td>
</tr>
<tr>
<td>
<div class="fd_field " fd_name="First_x0020_Name" style="">
<div class="fd_title" style="width: 150px; float: left; white-space: nowrap; ">First Name<!----></div>
<div class="fd_control" fd_type="Text" style="margin-left: 160px;" fd_readonly="False"><SharePoint:FormField id="First_x0020_NameField" runat="server" ControlMode="Display" FieldName="First_x0020_Name" /><SharePoint:FieldDescription runat="server" FieldName="First_x0020_Name" ControlMode="Display" /><!----></div>
</div>
</td>
</tr>
<tr>
<td>
<div class="fd_field " fd_name="Last_x0020_Name" style="">
<div class="fd_title" style="width: 150px; float: left; white-space: nowrap; ">Last Name<!----></div>
<div class="fd_control" fd_type="Text" style="margin-left: 160px;" fd_readonly="False"><SharePoint:FormField id="Last_x0020_NameField" runat="server" ControlMode="Display" FieldName="Last_x0020_Name" /><SharePoint:FieldDescription runat="server" FieldName="Last_x0020_Name" ControlMode="Display" /><!----></div>
</div>
</td>
</tr>
<tr>
<td>
<div class="fd_field " fd_name="Subject_x0020_of_x0020_Discussio" style="">
<div class="fd_title" style="width: 150px; float: left; white-space: nowrap; ">Subject of Discussion<!----></div>
<div class="fd_control" fd_type="Text" style="margin-left: 160px;" fd_readonly="False"><SharePoint:FormField id="Subject_x0020_of_x0020_DiscussioField" runat="server" ControlMode="Display" FieldName="Subject_x0020_of_x0020_Discussio" /><SharePoint:FieldDescription runat="server" FieldName="Subject_x0020_of_x0020_Discussio" ControlMode="Display" /><!----></div>
</div>
</td>
</tr>
</table>
</div>
</xsl:template>
<xsl:template name="DefaultCommandsPanel">
<tr>
<td class="ms-toolbar" nowrap="nowrap">
<table width="100%">
<tr>
<td class="ms-descriptiontext" nowrap="nowrap" width="100%">
<SharePoint:CreatedModifiedInfo ControlMode="Display" runat="server" />
</td>
<td class="ms-toolbar fd_cancel_td" nowrap="nowrap" align="right">
<SharePoint:GoBackButton runat="server" ControlMode="Display" />
</td>
</tr>
</table>
</td>
</tr>
</xsl:template>
</xsl:stylesheet></Xsl>
<DataSources>
<SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" SelectCommand="&lt;View&gt;&lt;/View&gt;" UseInternalName="True" UseServerDataFormat="True"><SelectParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="/ticketing/JeTSProjects" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="a0daebca-4290-420e-beeb-247b6985c9c1" Name="ListID"></WebPartPages:DataFormParameter>
</SelectParameters><UpdateParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="/ticketing/JeTSProjects" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="a0daebca-4290-420e-beeb-247b6985c9c1" Name="ListID"></WebPartPages:DataFormParameter>
</UpdateParameters><InsertParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="/ticketing/JeTSProjects" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="a0daebca-4290-420e-beeb-247b6985c9c1" Name="ListID"></WebPartPages:DataFormParameter>
</InsertParameters><DeleteParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="/ticketing/JeTSProjects" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="a0daebca-4290-420e-beeb-247b6985c9c1" Name="ListID"></WebPartPages:DataFormParameter>
</DeleteParameters>
</SharePoint:SPDataSource>
</DataSources>
</WpNs0:FDDataFormWebPart>

</ZoneTemplate></WebPartPages:WebPartZone>
<img src="/_layouts/images/blank.gif" width='590' height='1' alt="" />
</td>
</tr>
</table>
<SharePoint:UIVersionedContent UIVersion="4" runat="server">
<ContentTemplate>
</div>
</ContentTemplate>
</SharePoint:UIVersionedContent>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderAdditionalPageHead" runat="server">
<SharePoint:UIVersionedContent UIVersion="4" runat="server"><ContentTemplate>
<SharePoint:CssRegistration Name="forms.css" runat="server"/>
</ContentTemplate></SharePoint:UIVersionedContent>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderTitleLeftBorder" runat="server">
<table cellpadding="0" height="100%" width="100%" cellspacing="0">
<tr><td class="ms-areaseparatorleft"><img src="/_layouts/images/blank.gif" width='1' height='1' alt="" /></td></tr>
</table>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderTitleAreaClass" runat="server">
<script type="text/javascript" id="onetidPageTitleAreaFrameScript">
if (document.getElementById("onetidPageTitleAreaFrame") != null)
{
document.getElementById("onetidPageTitleAreaFrame").className="ms-areaseparator";
}
</script>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderBodyAreaClass" runat="server">
<style type="text/css">
.ms-bodyareaframe {
padding: 8px;
border: none;
}
</style>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderBodyLeftBorder" runat="server">
<div class='ms-areaseparatorleft'><img src="/_layouts/images/blank.gif" width='8' height='100%' alt="" /></div>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderTitleRightMargin" runat="server">
<div class='ms-areaseparatorright'><img src="/_layouts/images/blank.gif" width='8' height='100%' alt="" /></div>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderBodyRightMargin" runat="server">
<div class='ms-areaseparatorright'><img src="/_layouts/images/blank.gif" width='8' height='100%' alt="" /></div>
</asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderTitleAreaSeparator" runat="server"/>

 

  • Dmitry Kozlov
    Dmitry Kozlov
    Admin
    Member for: 9 years 6 months 10 days
    #1 by Dmitry Kozlov Mar 10 ’15 at 11:07

    Hi,

    Internet Explorer opens SharePoint 2010 pages in IE8 mode by default. It doesn't support :nth-child selectors:

    http://www.w3schools.com/cssref/sel_nth-child.asp

  • wernereegranad75
    Member
    Member for: 1 year 11 months 9 days
    #2 by wernereegranad75 Apr 22 ’21 at 02:14

    Hey David, this is an amazing guide on how to alternate table row color with nth indicator. This will be a great help for everyone who is working on the table command and it will surely lessen their time on switching to different toolset. gacha club is the new trending gacha game right now and you can download the game to see it yourself how amazing this game is, there are different game modes to try too! Read more about this games distribution on their official website

  • DavidRoss
    Member
    Member for: 1 year 4 months 12 days
    #3 by DavidRoss Nov 18 ’21 at 12:19

    It is always important to different opinions on the subject to sort things out and make the right decision. If you are looking for a reliable service, examine a my math genius review. I’ve been using this writing helper for a while already and they’ve never let me down.

  • Smithjoara
    Member
    Member for: 10 months 6 days
    #4 by Smithjoara Jun 11 ’22 at 05:35

    I was looking of your posts on this site and I consider this site is genuinely instructive! Keep setting up..

    DMD vs DDS

  • Smithjoara
    Member
    Member for: 10 months 6 days
    #5 by Smithjoara Jun 12 ’22 at 02:42

    Hey what a brilliant info I have come across and believe me I have PlayStation 5 been searching out for this similar kind of post for past a week and hardly came across this

  • Smithjoara
    Member
    Member for: 10 months 6 days
    #6 by Smithjoara Jun 12 ’22 at 02:43

    This is a great inspiring article.I am pretty much pleased with your good work.You put really very helpful information.  PlayStation 5

  • khansajjad5632
    Member
    Member for: 9 months
    #7 by khansajjad5632 Jun 30 ’22 at 07:43

    You can download and install the microsoft365.com/setup Support and Recovery Assistant to help with Microsoft 365 installation issues on a PC. For more information, see About the Microsoft Support and Recovery Assistant. If you're having an installation issue such as Office taking long to install, try Need help? for a list of common issues. Troubleshoot activation failures. As an Office 365 for business user, you can download Microsoft Support and Recovery Assistant to help you fix activation issues. Select the download button and install the Microsoft Support and Recovery Assistant. The Microsoft Support and Recovery Assistant runs on Windows PCs and can help you identify and fix activation issues with Microsoft 365. If Office still won't activate after you run the Microsoft Support and Recovery Assistant, you can Fix Unlicensed Product errors yourself. Follow the prompts to troubleshoot your Office activation issue. If microsoft365.com/setup still won't activate after you run the Microsoft Support and Recovery Assistant, you can Fix Unlicensed Product errors yourself. If you've tried the earlier troubleshooting steps and Office is still unlicensed, you can troubleshoot activation failures yourself.

    Plex is like a gift from God for people who have a really hard time managing their media storage and want to access it from different devices. In this era, everyone has their choices of movies, TV shows, and other forms of entertainment, with the amazingly wide options in our hands, it seldom gets too complicated to manage these files. plex tv code offers an effective solution to this problem, it provides options to you so that you can access your media files from any compatible device without the need of transferring these files every time you want to use them. To access all these data you need to set up a Plex server and then use the Plex client on your TV, Smartphone devices. This article is about how to connect your Plex client to your plex account. On smartphones, it is easy to connect but for a TV you need to complete extra steps. This article will guide you to connect plex to your TV using plex.tv/link. According to Plex’s official website, it is like a portal where Plex enables you to find and access all your media, this may include anything from your personal files, podcasts, web shows, and news, to streaming music all in a single place, which could be browsed and accessed from any device with valid entry to your plex.tv link code server.

    Enter ij.start.canon in the address bar and press the Enter key. Choose the preferred Language and Region from the drop-down menu. Then, click the Setup option on the Welcome page. Select the Canon printer model from the list or enter the name in the search bar. So, How To Connect Canon Printer to WiFi? To connect your Canon printer to a WiFi network and print through a wireless connection, you will first have to connect your computer to the wifi connection and then establish a wireless connection between the printer and the computer. Launch the web browser application and click on the address bar. Enter ij.start.canon in the address bar and press the Enter key. Choose the preferred Language and Region from the drop-down menu. Then, click the ij.start.canon Setup option on the Welcome page. Select the Canon printer model from the list or enter the name in the search bar.

    With all these choices, it might just be time for you to ditch your cable provider. Whether you choose Hulu + Live TV, FuboTV, or any of the other first-rate services listed above, one thing is for sure: you’ll be able to stay up-to-date on all the latest news without relying on a costly cable subscription on Foxnews.com/connect . We know how much you love Fox News, but what else do you like to watch? Tell us about yourself via our FindMyBundle wizard, and we’ll pair you with the perfect streaming service in minutes. Or, if you’d rather shop around, check out our Marketplace for deals and up-to-date comparisons. No matter what you choose, MyBundle.TV can help you say goodbye to cable without saying goodbye to Foxnews.com/connect & Friends.

    Go to xfinity.com/authorize from another device (like a mobile phone, tablet or desktop - not from your Roku). From the web browser, enter the six-digit code provided from the Roku device. Enter your Xfinity ID and password, then select Sign In. You'll see a Success!

  • devstringx
    devstringx
    Member
    Member for: 8 months 27 days
    #8 by devstringx Jul 4 ’22 at 05:02
    Devstringx Technologies has become one of the top custom software development company in Noida,  India, the USA, and DE. The continuous and accumulated efforts of the members and team managed to bring the company to the heights of success. Over the years, Devstringx Technologies is indulged in providing IT-related services like mobile app development services, Product development, Software testing, Test Automations, etc. Devstringx has always considered customer satisfaction as its priority. This feature helped us to maintain purer relationships with our clients. Hundreds of clients have chosen and recommended Devstringx for executing fine-quality projects for various multinational brands and companies. The highly committed and devoted personnel of Devstringx Technologies has always played their responsibilities with utmost determination. For access to our services or to know more about Devstingx Technologies, kindly visit our website.
  • jonemartin
    Member
    Member for: 8 months 15 days
    #9 by jonemartin Jul 15 ’22 at 11:52

    I enjoy reading your blog. Your interesting post.

  • peter0900
    Member
    Member for: 4 months 22 days
    #10 by peter0900 Nov 9 ’22 at 02:40

    Select the table, click Design, uncheck the Rows box, and then check the Columns box to switch the shading from rows to columns.

     

    Professional Paver Contractors in Cape Coral FL.

Displaying 1 to 10 of 16 messages
Previous12