Login Required. Sign up now -- its free!

Projects tagged ‘databinding’


[30 total ]

21 Users
   

qooxdoo is a comprehensive and innovative Ajax application framework. Leveraging object-oriented JavaScript allows developers to build impressive cross-browser applications. No HTML, CSS nor DOM ... [More] knowledge is needed. It includes a platform-independent development tool chain, a state-of-the-art GUI toolkit and an advanced client-server communication layer. It is Open Source under an LGPL/EPL dual license. [Less]
Created over 3 years ago.

8 Users
   

Smart GWT is a GWT based framework that allows you to not only utilize its comprehensive widget library for your application UI, but also tie these widgets in with your server-side for data ... [More] management. Smart GWT is based on the powerful and mature SmartClient library. Smart GWT is compatible with GWT 1.5.3 , GWT 1.6.4 and GWT 1.7.x Release Announcements Sept 24th 2009 : Smart GWT 1.3 has been released. Read the Release Notes. Release announcement here. Aug 9th 2009 : Smart GWT 1.2 has been released. May 29th 2009 : Smart GWT 1.1 Release announcement here Feb 10th 2009 : Smart GWT 1.0b2 Release announcement here Nov 17th 2008 : Smart GWT 1.0b1 Introduction and Release announcement here. It is strongly recommended that you read this introduction to Smart GWT as it goes over the design of Smart GWT and key features. [Less]
Created about 1 year ago.

5 Users

Jackson is a Streaming, Fast, Conformant, Open Source JSON processor (parser, generator, data binder). Jackson supports all typical access methods to JSON content, including: * Ultra-high ... [More] performance streaming (incremental) parser * Convenient Tree Model * Fast Data binding to both basic Java List/Map/String/Boolean/Number structures but also full zero-configuration Java bean binding (or configurable binding to any POJOs) -- all with no pre-processing or bytecode injection [Less]
Created about 1 year ago.

3 Users

Description will follow. Read the team blog for initial information about mixins (extensibility for C# and VB.NET classes) and re-linq (a library for creating LINQ providers).
Created 10 months ago.

1 Users

Overview.NET Assemblies that integrate and expands on various advanced solutions for DataBinding, Reflection, UI Wrapping and more. Fuel your .NET applications with RAD techniques and ready-to-use ... [More] code that picks up where the .NET framework left off. DevFuel.Core.dll FeaturesGeneric Tuple class for use in Collections "Lookup" Properties system. I.e. A DataRow uses its foreign key relationship to determine what values a field can have (in a PropertyGrid) Support for sorting and filtering collections of standard objects (As opposed to only DataRow objects) in DataGridView controls XML helper routines Validate (with or without error/warning logging) XML using an XSD file Transform XML using an XSLT scripts (with or without warning/error logging) ClickOnce deployment support classes Hash and symmetric encryption support classes/wrappers CredUI PInvoke Wrapper Threading Task object for use with asynchronous UI System.Version matching class for verifying and matching version strings of the form "A.B.C.D" DevFuel.Core.V3_5.dll Features.NET Framework v3.5 Support Advanced strongly-typed Data Support through extension methods DataTable Merging Generalized TableAdapter handling of Fill, Update, Transactions, etc. DataRow "wrappers" for customizable use of DataRows in a PropertyGrid control or other data binding scenario. DevFuel.Core.UI.dll FeaturesAn augmentation of the System.Windows.Forms Namespace UITypeEditors for PropertyGrid designer support Lookup Property Support (DataTable and DataRelation awareness) Open file dialog editor for string type Save file dialog editor for string type Generic Modal Dialog editor using ellipsis button and launching designer generated form Generic drop down style editor displaying designer generated UserControl Double-buffered TableLayoutPanel ExceptionBox for displaying exceptions in a user-friendly format (better than MessageBox) InputBox for collecting user input in a customizable way MessagesBox for displaying multiple messages in a coherent manner PropertyGridBox to allow display and edit of the public properties of any object in a dialog PropertyGridEx to workaround some of the shortcomings of the PropertyGrid control ReportViewer to nicely display XML+XSLT=HTML style reports (Beats Crystal Reports all to heck!) RichTextBox to add formatting enhancements and time-savers TaskProgressBox for displaying the progress and status of asynchronous tasks Theming support for assemblies called from native applications DevFuel.Core.Net.dll FeaturesAn augmentation of the System.Net namespace PInvoke wrapper for Querying Network Adapter details (Such as MAC address) DevFuel.NAnt.Tasks.dll FeaturesCustom NAnt Tasks Google Code Upload VersionFile task to read and optionally increment a file containing a version of the form "A.B.C.D" YuiCompressor task to utilize a .NET port of the YUI Compressor to minify CSS and Javascript files to reduce size Custom NAnt Functions file::read-all-text(path) to allow for templating files using filtersets file::read-all-xml-escaped-text(path) which does the same as the previous function, but uses XML escaping to sanitize any special XML characters in the file [Less]
Created 12 months ago.

0 Users

a sax based xml marshaller - unmarshaller
Created 8 months ago.

0 Users

Silverlight Library ia a collection of useful classes to help Silverlight 2.0 developers.
Created 10 months ago.

0 Users

In real life you need just one framework for binding and validation, this project is integration of those two things. There is no new under the Sun, but there is no simple and lightweight way to ... [More] get binding and validation was before. I hope this project will be helpful for you as well. The main force for this project is my other web projects that uses it as library. [Less]
Created 7 months ago.

0 Users

Property Expression project consists of several parts united by a common idea. The idea is to use the lambda expression (Linq.Expressions) to obtain full information about property of a object. The ... [More] first part of the project implements Dataflow Architecture for .NET languages. This part is a framework for spreadsheet style calculations. This framework provides automatic recalculation of dependent values. The second and the third parts of the project implement an infrastructure for strongly typed data binding for WPF and ASP.NET. [Less]
Created 12 months ago.

0 Users

EasyProp helps you replace repetetive code like: public class Foo : INotifyPropertyChanged { public string Bar { get{ return _bar; } set { if (_bar != ... [More] value) { _bar = value; OnNotifyPropertyChanged(new PropertyChangedEventArgs("Bar")); } } } ...repeat for every property }... with: [BeforePropertySetFilter(typeof(DoNothingIfValueNotChanged))] [AfterPropertySetFilter(typeof(NotifyPropertyChanged))] public class Foo : INotifyPropertyChanged { public virtual string Bar { get; set; } ... }There are other filters available, and you can write your own: [BeforePropertySetFilter(typeof(DoNothingIfValueNotChanged))] [AfterPropertySetFilter(typeof(MarkObjectAsDirty))] public class Foo { public virtual bool IsDirty { get; set; } public virtual string Bar { get; set; } }Just mark your properties as virtual, and let EasyProp build your objects: EasyPropBuilder easyPropBuilder = new EasyPropBuilder(); Foo myFoo = easyPropBuilder.Build();EasyProp uses Castle DynamicProxy internally to do the property intercepting. It's merged into EasyProp binaries, so you only need to reference EasyProp.dll. These blog posts were helpful for the development of EasyProp: http://serialseb.blogspot.com/2008/05/implementing-inotifypropertychanged.html http://hendryluk.wordpress.com/2008/05/28/roll_your_own_cop_part_i_mixins/ Thanks to Frank Quednau, EasyProp 1.1 handles databinding in WPF properly. [Less]
Created 12 months ago.