Show xml in div from javascript with collapsable nodes
http://www.levmuchnik.net/Content/ProgrammingTips/WEB/XMLDisplay/DisplayXMLFileWithJavascript.html
how to disable the minimize button of a popup window using javascript
http://msdn.microsoft.com/en-us/library/ms536759%28VS.85%29.aspx
http://www.eggheadcafe.com/community/aspnet/3/10016558/how-to-disable-the-minimi.aspx
<script type=”text/javascript”>
function fnOpen(){
var newlookup = window.showModalDialog(“http://www.yahoo.com”,
“”, “”,”status=0;help=0;dialogHeight=” + 400 + “;dialogWidth=” +600 )
}
</script>
<form name=”oForm”>
Dialog Height
<select name=”oHeight”>
<option>– Random –</option>
<option>150</option>
<option>200</option>
<option>250</option>
<option>300</option>
</select>
Create Modal Dialog Box
<input type=”button” value=”Push To Create” onclick=”fnOpen()”>
</form>
Regular expression to accept only numbers with spaces
To accept only numbers with spaces: ^([0-9]*)$
Regular expression to accept only numbers without spaces
To accept only numbers: ^([0-9]*)
Regular expression to accept only text with space in javascript
To accept only text with spaces: ^([a-zA-Z ]*)$
Note: there must be space after A-Z
we can specify both capital and smaller letter cases in one single short form :
example: /^[a-z ]+$/i;
The i makes it case-sensitive to match all cases. ^ and $ are start and end match characters.
Regular expression to accept only text without space in javascript
To accept only text: ^([a-zA-Z]*) Note: we can specify both capital and smaller letter cases
Key Pressed Javascript Key Codes
Key Pressed Javascript Key Code
backspace 8
tab 9
enter 13
shift 16
ctrl 17
alt 18
pause/break 19
caps lock 20
escape 27
page up 33
page down 34
end 35
home 36
left arrow 37
up arrow 38
right arrow 39
down arrow 40
insert 45
delete 46
0 48
1 49
2 50
3 51
4 52
5 53
6 54
7 55
8 56
9 57
a 65
b 66
c 67
d 68
e 69
f 70
g 71
h 72
i 73
j 74
k 75
l 76
m 77
n 78
o 79
p 80
q 81
r 82
s 83
t 84
u 85
v 86
w 87
x 88
y 89
z 90
left window key 91
right window key 92
select key 93
numpad 0 96
numpad 1 97
numpad 2 98
numpad 3 99
numpad 4 100
numpad 5 101
numpad 6 102
numpad 7 103
numpad 8 104
numpad 9 105
multiply 106
add 107
subtract 109
decimal point 110
divide 111
f1 112
f2 113
f3 114
f4 115
f5 116
f6 117
f7 118
f8 119
f9 120
f10 121
f11 122
f12 123
num lock 144
scroll lock 145
semi-colon 186
equal sign 187
comma 188
dash 189
period 190
forward slash 191
grave accent 192
open bracket 219
back slash 220
close braket 221
single quote 222
Decimal validation in javascript
http://lawrence.ecorp.net/inet/samples/regexp-validate2.php
Repalce new line and carriage return characters
Repalce new line and carriage return characters
Result=desc.replace(/[\n\r\t]/g,”")
Here desc is the string and “result” will contain the text after removing the new line and carriage return characters.
get all elements inside a Html Object in javasrcipt
var table = document.getElementById(gridID);
var DropDownBoxsCount = document.getElementById(gridID).getElementsByTagName(‘input’);
for (var k = 0; k < DropDownBoxsCount.length; k++) {
if (DropDownBoxsCount[k].type == “radio”) {
DropDownBoxsCount[k].checked = false;
}
}
-
Recent
- Microsoft.BizTalk.ExplorerOM.dll is different from version to version
- Using EXSLT in BizTalk
- For loop in xslt
- Reset Outlook Connection
- Validate incoming message in xml default pipeline
- Biztalk orchestration patterns
- Grouping in xslt
- why do we need to call pipeline from orchestration and how do we do it?
- BizTalk Aggregation Pattern for Large Batches
- Get Uniques values from a list through XSLT
- Virtual PC console not showing up
- Directly querying the BizTalk database for suspended messages
-
Links
-
Archives
- May 2012 (1)
- January 2012 (2)
- November 2011 (1)
- July 2011 (3)
- June 2011 (12)
- May 2011 (1)
- April 2011 (1)
- March 2011 (1)
- November 2010 (1)
- October 2010 (10)
- September 2010 (7)
- July 2010 (1)
-
Categories
-
RSS
Entries RSS
Comments RSS