Format:
Recent snippets for: pushp
function getQueryStringParams( query ) {
var Params = {};
if ( ! query ) {return Params;}// return empty object
var Pairs = query.split(/[;&]/);
for ( var i = 0; i < Pairs.length; i++ ) {
var KeyVal = Pairs[i].split('=');
if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
var key = unescape( KeyVal[0] );
var val = unescape( KeyVal[1] );
val = val.replace(/\+/g, ' ');
275 Views
no comments
function findPos(obj) { var curleft = curtop = 0; if (obj.offsetParent) { curleft = obj.offsetLeft curtop = obj.offsetTop while (obj = obj.offsetParent) {
127 Views
no comments
public void BindDetails(KpiItem kpiItem) { if (kpiItem != null) { lblKpiText.Text = kpiItem.Name; imgStatus.ImageUrl = kpiItem.StatusImageUrl; imgTrend.ImageUrl = kpiItem.TrendImageUrl; var proxy = new OperationalKPIServiceClient(); //TODO: use actual minesitegroup id and metric id
185 Views
no comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
