$ - jquery
$("#id") - element whose id is "id"
$("id") - all elements whose id = "id"
$(".id") - all elements with class name "id"
.html() - gets the elements innerHTML
.html(string) - sets the elements inner html
.val() - gets the elements value
.val(value) - sets the elements value
\\ - escape character in jquery
October 29, 2010
Validate Decimal onKeyup in JS
//OnKeyup
function VD(txt)
{
if (txt.value.split('.').length > 2)
{
txt.value = txt.value.substr(0, txt.value.length-1);
}
}
Note: http://asquare.net/javascript/tests/KeyCode.html
// OnKeyPress
function ValidateDecimal(event) {
var keynum;
if(window.event) // IE
{
keynum = event.keyCode;
if (!((keynum >= 48 && keynum <= 57) || keynum == 46 || keynum == 37 || keynum == 39 || keynum == 8 || keynum == 9)) {
return false; }
}
else if(event.which) // Netscape/Firefox/Opera
{
keynum = event.which;
if (!((keynum >= 48 && keynum <= 57) || keynum == 0 || keynum == 9)) {
return false; }
}
}
function VD(txt)
{
if (txt.value.split('.').length > 2)
{
txt.value = txt.value.substr(0, txt.value.length-1);
}
}
Note: http://asquare.net/javascript/tests/KeyCode.html
// OnKeyPress
function ValidateDecimal(event) {
var keynum;
if(window.event) // IE
{
keynum = event.keyCode;
if (!((keynum >= 48 && keynum <= 57) || keynum == 46 || keynum == 37 || keynum == 39 || keynum == 8 || keynum == 9)) {
return false; }
}
else if(event.which) // Netscape/Firefox/Opera
{
keynum = event.which;
if (!((keynum >= 48 && keynum <= 57) || keynum == 0 || keynum == 9)) {
return false; }
}
}
October 19, 2010
How to Find out when moss trial expires
http://msmvps.com/blogs/shane/archive/2007/04/21/how-do-i-find-out-when-my-moss-trial-expires.aspx
October 12, 2010
AD Admin Tools on Windows 7
http://www.symantec.com/connect/blogs/installing-admin-tools-ad-users-computers-etc-windows-7
October 08, 2010
I love the looks of you - Porter,Cole
I love the looks of you and the lure of you
The sweet of you, and the pure of you
The eyes, the arms, and that mouth of you
The east, west, north and that south of you
I'd love to gain complete control of you
Handle even the heart and soul of you
'Casue I love all of you
The sweet of you, and the pure of you
The eyes, the arms, and that mouth of you
The east, west, north and that south of you
I'd love to gain complete control of you
Handle even the heart and soul of you
'Casue I love all of you
October 07, 2010
Sharepoint 2010 User Profile and My Sites Synchronization
Error: An error Occured in the claim providers
http://www.mstechblogs.com/sharepoint/an-error-has-occurred-in-the-claim-providers-sharepoint2010/
Problems with AD Synchronization:
Configure Alternate Access Mappings
Manage Service Applications --> User Profile Service Applications --> Configure Synchornization Connections --> Create Connection -->Auto Discover Controller name --> ForestName: DOMAIN.COm
MySiteSettings --> Setup my Sites -->
Take out /my
Start Profile Synchronization
http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/062ccf35-13ce-489b-8a8b-fd8a280bb9a1
Program Files\Microsoft Office Servers\14.0\Synchronization Service\UIShell\miisclient
http://www.mstechblogs.com/sharepoint/an-error-has-occurred-in-the-claim-providers-sharepoint2010/
Problems with AD Synchronization:
Configure Alternate Access Mappings
Manage Service Applications --> User Profile Service Applications --> Configure Synchornization Connections --> Create Connection -->Auto Discover Controller name --> ForestName: DOMAIN.COm
MySiteSettings --> Setup my Sites -->
Take out /my
Start Profile Synchronization
http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/062ccf35-13ce-489b-8a8b-fd8a280bb9a1
Program Files\Microsoft Office Servers\14.0\Synchronization Service\UIShell\miisclient
October 05, 2010
Infopath Form Services - SharePoint Custom Lists
http://blogs.msdn.com/b/infopath/archive/2007/03/26/submitting-to-a-sharepoint-list.aspx
http://msdn.microsoft.com/en-us/library/cc162745(office.12).aspx#ip2007SubmitDataSPList_CleaningUptheLayoutoftheForm
http://blog.completesharepoint.net/post/2009/08/16/Integrating-Custom-ASPNET-ASPX-form-into-Sharepoint-InfoPath-Form-Service-Programmatically.aspx
http://msdn.microsoft.com/en-us/library/cc162745(office.12).aspx#ip2007SubmitDataSPList_CleaningUptheLayoutoftheForm
http://blog.completesharepoint.net/post/2009/08/16/Integrating-Custom-ASPNET-ASPX-form-into-Sharepoint-InfoPath-Form-Service-Programmatically.aspx
October 01, 2010
OnBase Document Management
http://www.indiana.edu/~onbase/
http://www.lbmctech.com/blog/?p=21
http://www.hyland.com/downloads/flashdemo/index.html
http://www.lbmctech.com/blog/?p=21
http://www.hyland.com/downloads/flashdemo/index.html
Subscribe to:
Posts (Atom)
SonarQube with Jenkins Setup using Docker Images
https://funnelgarden.com/sonarqube-jenkins-docker/ https://medium.com/@hakdogan/an-end-to-end-tutorial-to-continuous-integration-and-con...
-
The competitive examination for the Indian Forest Service is conducted by Union Public Service Commission (UPSC). IFS exam is conducted ann...
-
Happy New Year. May this year is the year for your dreams, passions, everything you believe, your wishes, your desires, your thoughts, your ...
-
Azure Mobile App Service provides services that allow you to support mobile apps across multiple platforms. It does not provide hosting ser...