Blogs
Systenics Website Relaunch
Our older website was starting to show age and unable to keep pace with styles. We had several internal discussions regarding a re-design but usually ended up shelving the plan since we were unable to identify and justify the reason for re-design if the outcome would just be a better design. At times we thought of just purchasing a template and updating the content and finish the process.
Latest Posts
Uncheck Radio Button in WPF
Recently I found myself in need of uncheck my selected Radio Button in WPF (Windows Presentation Framework). Unfortunately Radio Button has an unchecked event but it doesn’t fire. I thought of implementing uncheck onClick event, but even in this case it always givesChecked valuetrue after clicking on Radio Button. I started searching for examples in internet, but didn’t find an appropriate way to achieve this. One way I thought of styling the Checkbox to look like a Radio Button, but doing so is also had few issues. Then I thought of extending the Radio Button and use Dependency Property to achieve the same. This article describes the implementation of the Radio Button that supports uncheck and the way you can use it in your own applications. You can find the full implementation ofRadioButtonExtensionclass in the attached demo.
Continue readingCreate a Grid View with paging and sorting feature using ASP.NET MVC Razor and LINQ
Recently, I came across a requirement to create a Grid View with paging and column sorting feature. Since, I was using ASP.NET MVC there was no server side control such as Repeater, GridView or DataList which are available in ASP.NET. I googled but didn’t come across a good solution except few third-party paid ASP.NET MVC controls. So finally I decided to code my own Grid View with support for paging and column sorting with help from information available on blogs and forums. Even though I am showing the code in context of an example its extensible enough to reuse it elsewhere.
Continue readingUse jQuery Lazy Load with Knockout binding
This tutorial explains how to use jQuery lazy loading technique with Knockout binding.
Continue readingUse Lucene.Net in for faster data search
This tutorial explains how to use Lucene.Net to acheive faster search responses in ASP.NET or MVC or C# applications. You can use Lucene.Net library to create indexes and search to retrieve the data which can be stored by relevance or by a sort field.
Continue readingIntegrate Salesforce with C# or ASP.NET MVC Application
This tutorial explains the manual steps to authenticate Salesforce account using C# or ASP.NET MVC application. Even though the sample provided is C# Console application, we have implemented the same with RainWorx's AuctionWorx software (ASP.NET MVC application).
Continue readingSalesforce CRUD operations using C# in AuctionWorx (ASP.NET MVC application)
In this blog post, we have explained how we can perform CRUD operations with Salesforce custom objects. We have integrated Salesforce with RainWorx AuctionWorx software (ASP.NET MVC application). Refer our previous blog "Integrate Salesforce with C# or ASP.NET MVC Application", where we have shown how you can set up a project for Salesforce integration. Salesforce integration will allow better interaction between customer support team and bidders/buyers post bid/purchase process.
Continue reading