• Home
  • About
  • Contact

JK Stack

  • Home
  • JAVA/J2EE
    • CORE JAVA
    • JSP
  • Hibernate
  • STRUTS 2.X
  • JQUERY
    • JQUERY WITH ASP
    • JSON
  • MYSQL
  • SHAREPOINT
  • .NET PLATEFORM
    • ASP .NET
    • c#
  • SAP
Home / Archive for 2013
ResourceManager.GetString() Vs SPUtility.GetLocalizedString() in
sharePoint.

ResourceManager.GetString() Vs SPUtility.GetLocalizedString() in sharePoint.

1
In a sharePoint application we can retrieve resource file data from two methods. 1. ResourceManager.GetString(): Which is the API provided...
READ MORE +
LinQ to SharePoint 2010 Limitations and Advantages

LinQ to SharePoint 2010 Limitations and Advantages

1
LinQ to Sharepoint 2010 Limitations and Advantages :- Advantages : 1. Ease of Use: Might not be the case for Developer with SP 2007 experie...
READ MORE +
How to get last letter of a string in ABAP SAP

How to get last letter of a string in ABAP SAP

2
How to get last letter of a string in ABAP SAP In this post, we will  learn how to get last letter of a string in ABAP SAP. 1. get the len...
READ MORE +
How to get decimal and integer part from a decimal number in ABAP SAP?

How to get decimal and integer part from a decimal number in ABAP SAP?

0
Today, we will learn how to get decimal and integer part from a decimal number in ABAP SAP. you can use standard macros to find the integer...
READ MORE +
How To Configure SAP Gateway For External Web Services Defined In ERP
System?

How To Configure SAP Gateway For External Web Services Defined In ERP System?

0
To Configure SAP Gateway  For External Web Services Defined In ERP System, you need to follow these steps: 1. Prepare connection between SAP...
READ MORE +
How To Activate the Service in SAP Gateway System?

How To Activate the Service in SAP Gateway System?

2
Here are the steps to activate the service in SAP Gateway system: 1. Go to transaction SPRO. 2. Follow the IMG Path- SAP Customizing Implem...
READ MORE +
How To Connect SAP Systems Using RFC Connection?

How To Connect SAP Systems Using RFC Connection?

0
Today, we will learn to To Connect SAP Systems Using RFC Connection,  you need to follow these steps: 1. Go to Transaction SPRO . 2. Follow ...
READ MORE +
How To Use Resource Bundle To Retrieve The Message From Properties File
In Struts 2?

How To Use Resource Bundle To Retrieve The Message From Properties File In Struts 2?

1
First we  have to understand the Struts 2 resource bundle search order before go ahead. Resource Bundle To Retrieve The Message From Propert...
READ MORE +
How To Add Line Break To JQuery UI Tooltip?

How To Add Line Break To JQuery UI Tooltip?

1
If you want to know how to add   JQuery UI tooltip , then you can refer my previous post link: http://www.jkstack.com/2013/08/how-to-add-arr...
READ MORE +
How To Add Arrow Or Pointer With JQuery UI Tooltip?

How To Add Arrow Or Pointer With JQuery UI Tooltip?

1
For using JQuery UI tooltip, you need to include JQuery UI library in your page.You can download latest version of JQuery library from here...
READ MORE +
How to parse a JSONArray of JSONObjects in JAVA?

How to parse a JSONArray of JSONObjects in JAVA?

5
In last tutorial we discussed , how to create  JSONArray of JSONObjects and pass with Ajax call in JSP.If you want to refer then visit this...
READ MORE +
How To Create JSON Array Object With Ajax In JSP?

How To Create JSON Array Object With Ajax In JSP?

2
If you want to know about JSON (mean how to create and what is the structure of JSON Oject ) then follow these links: 1.   http://www.jkstac...
READ MORE +
How To Create Or Get Values From Array Object Using JSON in Javascript?

How To Create Or Get Values From Array Object Using JSON in Javascript?

0
Today, i am going to  tell  how to use array Object Using JSON in Javascript. In below example, an object ( JSONObject ) is created containi...
READ MORE +

How To Create Or Get Values Of JSON Object in JavaScript Example?

1
JavaScript is a general purpose programming language that was introduced as the page scripting language for Netscape Navigator. JSON or Java...
READ MORE +
How To Change Second Dropdownlist Value Based On First Dropdownlist
Selection?

How To Change Second Dropdownlist Value Based On First Dropdownlist Selection?

1
Today, i am going to explain you, how to change second dropdownlist value when user change the first dropdownlist  value. We can achieve  it...
READ MORE +
How TO Use OR Condition (in Criteria Query) In Hibernate?

How TO Use OR Condition (in Criteria Query) In Hibernate?

0
Suppose you want to fetch a mobile list from mobileList table where mobile status is either 1 or 5 (in status column of  mobileList   tabl...
READ MORE +
How To Prevent User From Entering A Non-number In Textbox Using Jquery?

How To Prevent User From Entering A Non-number In Textbox Using Jquery?

1
Today we will learn, How To Prevent User From Entering A Non-number In Textbox Using Jquery. Suppose you have requirement to validate mobile...
READ MORE +
How To Use Regular Expression To Validate File Path (Folder Location)
In JavaScript and JQuery?

How To Use Regular Expression To Validate File Path (Folder Location) In JavaScript and JQuery?

1
Today we will learn, How To Use Regular Expression To Validate File Path (Folder Location). Suppose you want to validate a folder location l...
READ MORE +
Struts 2 Download file example- How to configure the file name
dynamically?

Struts 2 Download file example- How to configure the file name dynamically?

1
In this tutorial, i am going to show you how to download file in struts 2 using custom result type configured in struts.xml. jsp page code ...
READ MORE +
What Is The Difference Between getSession (true) and getSession (false)
In Java?

What Is The Difference Between getSession (true) and getSession (false) In Java?

2
As we know, HTTP is a stateless protocol  so series of interactions are difficult to maintain between client and server. That’s why we  use ...
READ MORE +
How To Use Conditional Expression ( ? : ) or Ternary Operator In JAVA?

How To Use Conditional Expression ( ? : ) or Ternary Operator In JAVA?

0
Conditional Expression (operator)   is also known as the ternary operator . This operator consists of three operands and is used to evalua...
READ MORE +
How to use containsKey ('Key') method over a map in JSP using Struts 2 ?

How to use containsKey ('Key') method over a map in JSP using Struts 2 ?

0
Struts 2 makes extensive use of OGNL in order to retrieve the values of elements. OGNL stands for Object Graph Navigation Language. As the n...
READ MORE +
How you can fetch the value from the map based on key without iterating
over it in Struts 2?

How you can fetch the value from the map based on key without iterating over it in Struts 2?

0
Struts 2 makes extensive use of OGNL in order to retrieve the values of elements. OGNL stands for Object Graph Navigation Language . As the ...
READ MORE +
How to declare a variable and assign a value to it in Struts2?

How to declare a variable and assign a value to it in Struts2?

0
By using Struts 2 Set  tag, we can  assign a value to a variable in a specified scope (application, session, request, page, or action), the ...
READ MORE +
How To Do Cloning Java Object Using Serialization (Java Object
Serialization ) With Example?

How To Do Cloning Java Object Using Serialization (Java Object Serialization ) With Example?

0
In this tutorial , i am going to tell you about java object cloning ( Cloning Java Object ) using Serialization .The purpose of java seriali...
READ MORE +
How To Pre-populate Datepicker Textbox With Today's Date Using JQuery?

How To Pre-populate Datepicker Textbox With Today's Date Using JQuery?

1
Suppose we have a textbox and we want to add a datepicker in it. We can do this easily with the help of JQuery. Here is the working code: ...
READ MORE +
How To Find The Exact Error When Using $.ajax In JQuery?

How To Find The Exact Error When Using $.ajax In JQuery?

0
We can find the exact error while using ajax() method of JQuery with the help of  responseText property of the request parameter . Here is...
READ MORE +
How To Check Key Of Iterator Starts With ( using startsWith('') ) Some
Sequence In Jsp Using Struts 2?

How To Check Key Of Iterator Starts With ( using startsWith('') ) Some Sequence In Jsp Using Struts 2?

0
Suppose we are iterating some list or map on jsp and we need to check key starts With some Sequence  then we can do this using startsWith...
READ MORE +
How To Find Child Div Id onClick Of Parent Div ?

How To Find Child Div Id onClick Of Parent Div ?

0
We can get child div id onClick of parent div easily by using find() and attr() function of JQuery. Here is the example: HTML code: < di...
READ MORE +
How To Get Or Find The Elements Values With Same Class Name In JQuery?

How To Get Or Find The Elements Values With Same Class Name In JQuery?

0
Suppose  we have a div with same class name multiple times or  one time only, and we want to get the values of the elements of that div. We...
READ MORE +
How To Select A Radio Button Using JQuery (Dynamically) ?

How To Select A Radio Button Using JQuery (Dynamically) ?

1
It is very simple to select a radio using JQuery dynamically. Here are the example: < input type = "radio" name = "sex...
READ MORE +
Partial page refresh in Struts 2 using JQuery (AJAX)

Partial page refresh in Struts 2 using JQuery (AJAX)

11
It is very hot question among the newbie. So here i am going to give example of partial page refresh using JQuery (AJAX)  in Struts 2 . Here...
READ MORE +
Subscribe to: Posts ( Atom )

Follow Us On Facebook

  • Popular Post
  • Video
  • Category

Popular Posts

  • How to solve Mysql error 1452 - Cannot add or update a child row: a foreign key constraint fails ?
    Suppose you have two table one is child table (profile) and second is parent table (login) .You can get this error  when setting a foreign ...
  • How to Remove Subscribe to: Post Comments (Atom) from the Blogger?
    How to Remove Subscribe to: Post Comments (Atom) from the Blogger?
    In many Blogger templates there is a Subscribe to: Post (Atom) link, so that the blog visitors can subscribe to the Atom feeds . Moreover i...
  • How to call Private Methods Publicly in Java using Reflection API?
    There is a common question people ask, can we invoke private methods of a class publicly ? YES we can call private methods of a class in ano...
  • How to solve The JSP specification requires that an attribute name is preceded by whitespace ERROR?
    Today when i deployed my application in  Tomcat 7 ,and click on home link , I got this error message. org.apache.jasper.JasperException: /h...
  • How to get last letter of a string in ABAP SAP
    How to get last letter of a string in ABAP SAP In this post, we will  learn how to get last letter of a string in ABAP SAP. 1. get the len...

Labels

  • .Net Plateform
  • ASP .Net
  • Blogger Tips
  • C#
  • C3P0 connection pooling
  • Facebook
  • Google
  • Hibernate
  • JAVA
  • JAVA Apache classes
  • JQuery
  • JQuery with ASP
  • JSON
  • JSP
  • Miscellaneous
  • MYSQL
  • SAP
  • SharePoint
  • struts 2.x
  • struts2-jquery Plugin
  • Tomcat
  • WCF
  • Web Services
  • Xuggler
  • YouTube
Powered by Blogger.

Tags

  • .Net Plateform
  • ASP .Net
  • Blogger Tips
  • C#
  • C3P0 connection pooling
  • Facebook
  • Google
  • Hibernate
  • JAVA
  • JAVA Apache classes
  • JQuery
  • JQuery with ASP
  • JSON
  • JSP
  • Miscellaneous
  • MYSQL
  • SAP
  • SharePoint
  • struts 2.x
  • struts2-jquery Plugin
  • Tomcat
  • WCF
  • Web Services
  • Xuggler
  • YouTube

Blog Archive

  • ►  2014 (25)
    • ►  February (11)
    • ►  January (14)
  • ▼  2013 (52)
    • ▼  December (2)
      • ResourceManager.GetString() Vs SPUtility.GetLocali...
      • LinQ to SharePoint 2010 Limitations and Advantages
    • ►  September (5)
      • How to get last letter of a string in ABAP SAP
      • How to get decimal and integer part from a decimal...
      • How To Configure SAP Gateway For External Web Serv...
      • How To Activate the Service in SAP Gateway System?
      • How To Connect SAP Systems Using RFC Connection?
    • ►  August (5)
      • How To Use Resource Bundle To Retrieve The Message...
      • How To Add Line Break To JQuery UI Tooltip?
      • How To Add Arrow Or Pointer With JQuery UI Tooltip?
      • How to parse a JSONArray of JSONObjects in JAVA?
      • How To Create JSON Array Object With Ajax In JSP?
    • ►  July (6)
      • How To Create Or Get Values From Array Object Usin...
      • How To Create Or Get Values Of JSON Object in Java...
      • How To Change Second Dropdownlist Value Based On F...
      • How TO Use OR Condition (in Criteria Query) In Hib...
      • How To Prevent User From Entering A Non-number In ...
      • How To Use Regular Expression To Validate File Pat...
    • ►  June (7)
      • Struts 2 Download file example- How to configure t...
      • What Is The Difference Between getSession (true) a...
      • How To Use Conditional Expression ( ? : ) or Terna...
      • How to use containsKey ('Key') method over a map i...
      • How you can fetch the value from the map based on ...
      • How to declare a variable and assign a value to it...
      • How To Do Cloning Java Object Using Serialization ...
    • ►  May (7)
      • How To Pre-populate Datepicker Textbox With Today'...
      • How To Find The Exact Error When Using $.ajax In J...
      • How To Check Key Of Iterator Starts With ( using s...
      • How To Find Child Div Id onClick Of Parent Div ?
      • How To Get Or Find The Elements Values With Same C...
      • How To Select A Radio Button Using JQuery (Dynamic...
      • Partial page refresh in Struts 2 using JQuery (AJAX)
    • ►  April (1)
    • ►  March (4)
    • ►  February (6)
    • ►  January (9)
  • ►  2012 (15)
    • ►  December (15)

Pages

  • Home

Random Posts

Recent Posts

Popular Posts

  • How to solve Mysql error 1452 - Cannot add or update a child row: a foreign key constraint fails ?
    Suppose you have two table one is child table (profile) and second is parent table (login) .You can get this error  when setting a foreign ...
  • How to Remove Subscribe to: Post Comments (Atom) from the Blogger?
    How to Remove Subscribe to: Post Comments (Atom) from the Blogger?
    In many Blogger templates there is a Subscribe to: Post (Atom) link, so that the blog visitors can subscribe to the Atom feeds . Moreover i...
  • How to call Private Methods Publicly in Java using Reflection API?
    There is a common question people ask, can we invoke private methods of a class publicly ? YES we can call private methods of a class in ano...
  • How to solve The JSP specification requires that an attribute name is preceded by whitespace ERROR?
    Today when i deployed my application in  Tomcat 7 ,and click on home link , I got this error message. org.apache.jasper.JasperException: /h...
  • How to get last letter of a string in ABAP SAP
    How to get last letter of a string in ABAP SAP In this post, we will  learn how to get last letter of a string in ABAP SAP. 1. get the len...

Labels

  • .Net Plateform
  • ASP .Net
  • Blogger Tips
  • C#
  • C3P0 connection pooling
  • Facebook
  • Google
  • Hibernate
  • JAVA
  • JAVA Apache classes
  • JQuery
  • JQuery with ASP
  • JSON
  • JSP
  • Miscellaneous
  • MYSQL
  • SAP
  • SharePoint
  • struts 2.x
  • struts2-jquery Plugin
  • Tomcat
  • WCF
  • Web Services
  • Xuggler
  • YouTube
Created By Sora Templates & Free Blogger Templates | Distributed By Gooyaabi Templates
  • Home
  • About
  • Contact
  • Privacy Policy