Search
Stack Connect
Click Fall
- 5,913 hits
Me!
Vineet Verma
Developer/Blogger/Gamer/Lazy Couch Potato...:P Need PDF Books: Knowledge Base
Tags
- ADF
- ADF Utils
- AF:Drag
- Algorithms
- Ant
- application
- Calendar
- Certification
- Classes
- Code
- Code Eval Solution
- Composer
- css
- csv
- Date Overlap
- DOM
- Drag and Drop
- Dumps
- EMAIL VALIDATION
- Error Handling
- Exam
- GIT
- HTTPS
- In Clause
- Installation
- Interview
- Java
- JavaScript
- JAXB
- JBO Logger
- jQuery
- js
- JSF
- LDAP
- Logging
- Managed Bean
- MongoDB
- number padding
- OpenCart
- Open Source
- Oracle
- Oracle ADF
- Oracle Service Bus
- Oracle SQL
- Oracle WebCenter Portal
- Oracle WebLogic Server
- OSB
- PHP
- PHPMailer
- PL/SQL
- Popup
- Portal
- Portal Builder
- Programmatic
- Programmatic View Object
- Puzzles
- Python
- repository
- Scopes
- Search
- Server
- sorting
- SQL
- Strings
- submodule
- Util
- Utils
- View Criteria
- Web Center
- WebCenter
- Weblogic
- Weblogic Server
- Web Service
- WebServices
Topic Cloud
AJAX Best Practices Clear Case Client Side Programming CSS Design Pattern Hibernate HTML Interview Puzzles J2EE Java JavaScript JDBC jQuery JSP Oracle Oracle ADF Oracle PL/SQL Oracle SQL PHP Server Side Programming Spring Struts Struts 2 Uncategorized VB script WebCenter Portal Weblogic Web Services WSDLFB Page
Category Archives: AJAX
How to make ajax call in spring framework
Write a server side method, with a mapping something as follows: @RequestMapping(“/getKids.html”) public @ResponseBody String getChildren(@RequestParam(value = “ocn”) String ocn, HttpServletRequest request, HttpServletResponse response) { return ocn.toUpperCase(); } Here @ResponseBody tells the framework to return value of the method to … Continue reading
How to download a file using AJAX
I struggled for half of my day finding this. Actually in our project, there is a CART. The requirement is when we click on downloadCart button, it should download the contents of the cart and clear the cart as well. … Continue reading
Posted in AJAX
Leave a comment
JSON, AJAX and jQuery
Today I was working on JSON.1) Requirement was to get the data from a server in a JSON object. Store it into request object.2) And on an HTML page, it was required to fire an AJAX request, get the data … Continue reading
Posted in AJAX, JSON
Leave a comment