BoldSignEffortlessly integrate e-signatures into your app with the BoldSign API. Create a sandbox account!
Last week Syncfusion released its first e-book in The Succinctly series; jQuery Succinctly by Cody Lindley. It was written to express the concepts essential to intermediate and advanced jQuery development. The e-book contains 100 jQuery samples that demonstrate how to use jQuery to manipulate the DOM, work with jQuery effects, and handle events. Our VP, Daniel Jebaraj, recommends rewriting sample 31 from the e-book with just the DOM. See the sample below and try it for yourself.
Nesting selector filters
Selector filters can be nested. This enables you to wield filters in a very concise and powerful manner. Below is an example of how you can nest filters to perform complex filtering.
Sample: sample31.html
<!DOCTYPE html>
<html lang="en">
<body>
<div>javascript</div>
<div><span class="jQuery">jQuery</span></div>
<div>javascript</div>
<div><span class="jQuery">jQuery</span></div>
<div>javascript</div>
<div><span class="jQuery">jQuery</span></div>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script> (function ($) {
// Select all div's, remove all div's that have a child element with class="jQuery".
alert($('div:not(:has(.jQuery))').text()); // Alerts combined text of all div's.
// Select all div's, remove all div's that are odd in the set (count starts at 0).
alert($('div:not(:odd)').text()); // Alerts combined text of all div's.
})(jQuery); </script>
</body>
</html>
Note: You can also nest and stack filters—e.g. $('p').filter(':not(:first):not(:last)')
Not all grids are created equal. Our data sheet, What You Need to Know when Selecting a Grid, explains each grid type and how to choose the right one. Details include:
Syncfusion’s BI controls added support for ActivePivot visualization with our latest release. QuartetFS' ActivePivot is one of the leading OLAP server products offering a greatly optimized in-memory computation engine with a high-performance view of transactional data. ActivePivot's visualization is usually done from within ActivePivot’s Web site; however, many Syncfusion customers would like to integrate ActivePivot visualization into their own Web (ASP.NET, ASP.NET.MVC, Silverlight) and Windows (Windows Forms, WPF) applications.
This white paper discusses the integration and details: