Sorting by Number in DVWPs
<xsl:sort select=”@JobFamilyRank” order=”ascending”/>
<xsl:sort select=”@JobFamilyRank” order=”ascending” data-type=”number”/>
<xsl:sort select=”@JobFamilyRank” order=”ascending”/>
<xsl:sort select=”@JobFamilyRank” order=”ascending” data-type=”number”/>
I’d tried several times to update the BIOS on my Dell Latitude D820 Laptop running Vista, but I always got errors. Since a new version of the BIOS (A08) had been released, I decided that it was time to get to the bottom of things. I found a post by E-Gizmo over on the Dell…
Over the last few days, I’ve been doing some more work with jQuery. It’s really a very cool abstraction on JavaScript, but it does take some getting used to. My latest challenge is to understand .animate. It’s pretty straightforward, but cross-browser issues can make it tricky. I’m having “special” trouble with opacity in Internet Explorer. …
This is something that’s happened to me in multiple tenants recently. When I delete a News Post which I’ve created in a Hub Site, the post never goes away in the News Web Part. It always seems to be a post we’ve created as some sort of point-proving demo, too. You know, with a title…
Over the break, I managed to get SPServices up and running on GitHub. You may wonder what that means and why it matters. When I started moving SPServices away from Codeplex, it was due to several things: Codeplex seems to be dying a whimpering death. Microsoft is clearly not maintaining it anymore, and its tech…
I have a question for you… In a DVWP is there a way to total a column? Absolutely. The most common approach would be to emit a table row in the dvt_1.body template (or equivalent) which uses the sum() function. An example would be something like this. Let’s assume that you have a column called…
As I’ve written in the past, there are several types of “dropdowns” in SharePoint forms. Briefly, there are: “Simple” dropdowns – These are plain, old HTML selects; the type of dropdown you are most familiar with on the Web. SharePoint renders one of these when there are fewer than 20 options. “Complex” dropdowns – SharePoint…