CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Select
$(document).ready(function () {
            $('.AutoSelect').focus(function () { $(this).select() });
            $('.AutoSelect').mouseup(function (e) {
        e.preventDefault();
});
by Davide Orazio Montersino   March 27, 2012 @ 12:50am
23 Views
no comments
 
 
ALTER PROCEDURE [dbo].[pr_OrderItem_history] (
@PipCode    varchar(50),
@BarCode    varchar(150),
@Status     Char(10)
)
AS
BEGIN
select 
PID.PO_ItemID,
by Guru   September 24, 2011 @ 2:25am
Tags: CASE, Select, tsql
81 Views
no comments
 
Produto    
    
Disco rigido  Samsung SATA 2 1TB 5400RPM                        R$ 183,00
Disco rigido  Samsung SATA 2 320GB P/NOTE 5400RPM               R$ 146,00
DVD-RW LG GH22NS50 SATA                                         R$ 50,00
DVD-RW LG SECURDISC IDE - Preto                                 R$ 70,00
Fone de Ouvido Philips - SHP2700/00                             R$ 83,00
Fonte Coletek ATX LC-8220BS2 200W 20+4 SATA                     R$ 38,00
Fonte Kmex ATX PX-300RMF 200W 20+4 SATA                         R$ 37,00
Fonte Kmex ATX PX-350RNF 230W 20+4 SATA                         R$ 39,00
by Thiago Pedro   September 07, 2010 @ 2:55pm
320 Views
no comments
 
// ===================================================================
// Author: Matt Kruse <matt@mattkruse.com>
// WWW: http://www.mattkruse.com/
//
// NOTICE: You may use this code for any purpose, commercial or
// private, without any further permission from the author. You may
// remove this notice from your final code if you wish, however it is
// appreciated by the author if at least my web site address is kept.
//
// You may *NOT* re-distribute this code in any way except through its
382 Views
no comments
 
C#
var _Offspring = _Context.Users   
        .SelectMany(x => x.Offspring).Distinct();
by Jerry Nixon   March 05, 2010 @ 8:44am
662 Views
no comments
 
C#
    protected void ASPxButton1_Click(object sender, EventArgs e)
    {
        object key = ASPxGridView1.GetRowValues(2, "CategoryID");
        ASPxGridView1.Selection.SelectRowByKey(key);
 
    }
by Mehul Harry   January 06, 2010 @ 11:49am
479 Views
no comments
 
function copyToClipboard(e) {
    $('#CodeDisplay').editable();
    $('#_contenteditor')
     .focus()
     .select()
     .keydown(function(e) {
        // capture Ctl-C, Ctl-X, ESC to remove editable
        if (e.which == 99 || e.which == 120 || e.which == 27) {                
            // have to delay so text doesn't go away before copy operation
            setTimeout( function() { $("#CodeDisplay").editable("cleanup") },500);
by Rick Strahl   December 17, 2009 @ 3:40pm
446 Views
no comments
 
C#
 
function setWards(o) {
    $.getJSON('/Home/GetWards/?cbd_id=' + o.value, null, function(data) {
        $('#ward').empty();
        $.each(data, function(i, item) {                   
            $('<option/>').attr('value', item.ID).html(item.Name).appendTo('#ward');
        });
    });
}
by Paul   September 29, 2009 @ 3:55pm
301 Views
no comments
 
C#
private void GetResourceSet()
{
    this.ResourceSet = Request.Form[this.lstResourceSet.UniqueID];
    if (ResourceSet == null)
        this.ResourceSet = Request.QueryString["ResourceSet"];
    if (this.ResourceSet == null)
        this.ResourceSet = ViewState["ResourceSet"] as string;
 
    if (this.ResourceSet == null)
        this.ResourceSet = "";
by Rick Strahl   September 22, 2009 @ 1:17pm
532 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate