kirchi

Stories kicked by kirchi

Code Generation Using Custom Item Template, Custom Template Wizard and(blog.devarchive.net)

submitted by kirchikirchi(240) 1 year, 6 months ago

Shows how to use VS Item Templates, VS Item Templates CUstom Wizard and T4 Engine together to simplify generation of new Business objects and SQL scripts. read more...

add a comment |category: |Views: 9

tags: another

Creating a Time UUID (GUID) in .NET(www.coderjournal.com)

submitted by melzie215melzie215(35) 2 years, 1 month ago

Since we’re going to want to display lists of entries in chronological order we’ll make sure each Columns name is a time UUID and set the ColumnFamilys CompareWith to TimeUUIDType. This will sort the Columns by time satisfying our “chronological order” requirement. So doing stuff like “get the latest 10 entries tagged ‘foo’” is going to be a super efficient operation. read more...

add a comment |category: |Views: 87

tags: another

Extending the Visual-Studio Context-Menu(sharpregion.com)

submitted by AdrianAisembergAdrianAisemberg(2004) 3 years, 5 months ago

We can add features to the Visual-Studio context menu, without installing addins. Here is an example showing how to add "Explore" and "Execute" commands to any item in the Solution Explorer. read more...

add a comment |category: |Views: 385

tags: another

Simplify Inline Editing using GridView, GridViewControlEmbedder - ASP.(blog.devarchive.net)

submitted by kirchikirchi(240) 3 years, 5 months ago

Extender simplifies inline editing for GridView, now it supports two modes- "TextBox" and "ComboBox" - editing text values for each cell, or using "select" element for picking up one value from several available. read more...

add a comment |category: |Views: 258

tags: another

Code generation using MS codename "Oslo", T4 VS and VS Custom Tool(blog.devarchive.net)

submitted by kirchikirchi(240) 3 years, 6 months ago

This post shows how you can create your own language using M Grammar from Oslo SDK, create T4 templates that will generate code artifacts by parsing the output data graph created by M Grammar language parser and finally how to use Visual Studio Custom tool to make possible the generation of multiply artifacts for single DSL file and placing them under that file in Visual Studio files hierarchy. read more...

add a comment |category: |Views: 114

tags: another

DSL Tools, Software Factories and Oslo - Model-driven .NET(startbigthinksmall.wordpress.com)

submitted by lcorneliussenlcorneliussen(490) 3 years, 8 months ago

Suddenly, at least it seams so, Microsoft is excited about modeling. At least they joined OMG! Here the summarized current state as well as a lot of links to articles, people and webcasts arround dsl, software factories and codename "Oslo". read more...

add a comment |category: |Views: 46

tags: another

Auto Generate References for Controls in Residing in Naming Containers(blog.devarchive.net)

submitted by kirchikirchi(240) 3 years, 9 months ago

Generate properties allowing you to reference controls inside naming containers on ASP.NET page or UserControl. read more...

add a comment |category: |Views: 7

tags: another

Localize text in JavaScript files in ASP.NET(blog.madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 3 years, 9 months ago

Shows a very simple and powerful way of serving .js files with the right localized text strings. read more...

add a comment |category: |Views: 481

tags: another

Loading and Executing JavaScript Files From JavaScript, ASP.NET AJAX (blog.devarchive.net)

submitted by kirchikirchi(240) 4 years ago

Quite often we need to load js files dynamically right from javascript. With ASP.NET AJAX it is simple. ASP.NET AJAX library has internal ScriptLoader class that can be used to load js files, specify callbacks that will be invoked when script is downloaded and ready, and execute functions inside newly loaded files. read more...

add a comment |category: |Views: 5

tags: another

Cross Browser GridView Fixed Header Extender, ASP.NET AJAX (blog.devarchive.net)

submitted by kirchikirchi(240) 4 years ago

I have created ASP.NET AJAX Extender control. It extends GridView control fixing it's header on the top while adding vertical scroll bar to it's contents. The control also supports maintaining scroll position inside grid between postbacks. The control works fine inside or outside of UpdatePanel. read more...

add a comment |category: |Views: 786

tags: another

Using AjaxRepeater Control, ASP.NET AJAX (blog.devarchive.net)

submitted by kirchikirchi(240) 4 years ago

Recently after reading blog post Ajax Templates by Nikhil Kothari I really liked the idea, the source code is great, and the control is huge help for AJAX development. In this blog post I want to share what I learned after investigating sample more carefully, and in what scenarios I feel this control is doing it's job quite well. read more...

add a comment |category: |Views: 48

tags: another

Using AjaxRepeater Control, ASP.NET AJAX (blog.devarchive.net)

submitted by kirchikirchi(240) 4 years ago

Recently after reading blog post Ajax Templates by Nikhil Kothari I really liked the idea, the source code is great, and the control is huge help for AJAX development. In this blog post I want to share what I learned after investigating sample more carefully, and in what scenarios I feel this control is doing it's job quite well. read more...

add a comment |category: |Views: 0

tags: another

Fast web page loading by defering and combining multiple javascripts (codeproject.com)

submitted by oazabiroazabir(1805) 4 years ago

A web page can load a lot faster and feel faster if the Javascripts files referenced on the page can be loaded after the visible content has been loaded and multiple Javascripts files can be batched into one download. This handy technique combines external javascripts references into one script tag and serves multiple javascripts using a Http Handler. read more...

1 comment |category: |Views: 15

tags: another

JSON Services in ASP.NET Ajax(javicrespotech.blogspot.com)

submitted by fintz69fintz69(700) 4 years ago

In this post Javi discusses the use of JSON services int the context of a client centric development approach, and then he moves on from the theoretical point of view and explains with some samples how to to implement JSON services using the different mechanisms that ASP.NET provides: Page Methods, Web Services and WCF Services. read more...

add a comment |category: |Views: 61

tags: another

Using #region Directive With JavaScript Files in Visual Studio (blog.devarchive.net)

submitted by kirchikirchi(240) 4 years, 1 month ago

Nice macros, found on MS forums, allowing to limited support of //#region directive for JS files - similar to one in C# and VB.NET. read more...

add a comment |category: |Views: 127

tags: another

Ajax Templates(nikhilk.net)

submitted by NikhilKothariNikhilKothari(1190) 4 years, 1 month ago

A prototype for an Ajax templating solution, combined with an Ajax-friendly server-side solution based on asp.net server controls. read more...

add a comment |category: |Views: 38

tags: another