Search
Stack Connect
Click Fall
- 5,270 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
Tag Archives: jQuery
When and how much to mix technologies for a project?
The main idea behind using a technology is to harness the power of code re-usability and libraries that have already been worked on and trusted to be working and functional with minimal or no issues. The term “Technology” does not … Continue reading
Posted in Oracle, Oracle ADF, Oracle SQL, OSB, Weblogic
Tagged AngularJS, C, CMS, css, IDM, Java, jQuery, Oracle ADF, PHP, Selection, Technology
Leave a comment
Creating a re-organizable list of Items using Drag and Drop in Oracle ADF
Sometimes the requirement is to create a list of UI Items which can be rearranged using Drag and Drop in Oracle ADF, similar to the one in jQuery. Oracle ADF Drag and Drop doesn’t provide the ability to identify, where … Continue reading
Posted in Oracle ADF
Tagged ADF Utils, AF:Drag, Drag and Drop, Java, jQuery, JSF, Managed Bean, Oracle ADF
1 Comment
How to include a JavaScript file in another JavaScript file
There are two main ways to achieve this: 1 – You can load it with an Ajax call and then use eval. This is the most straightforward way, but it’s limited to your domain because of the JavaScript safety settings, … Continue reading
How to expand collapse (toggle) div layer using jQuery
Thanks to http://designgala.com/how-to-expand-collapse-toggle-div-layer-using-jquery In almost all of my projects, I have been using jQuery to toggle the layer. So, I thought of sharing how easy it is to expand div layer and collapse panel using jQuery. When user clicks on … Continue reading
How to get old Value with onchange() event in text box
You’ll need to store the old value manually. You could store it a lot of different ways. You could use a javascript object to store values for each textbox, or you could use a hidden field (I wouldn’t recommend it … Continue reading
Posted in Client Side Programming, HTML, JavaScript, jQuery
Tagged JavaScript, jQuery, onChange
2 Comments
How to replace in Javascript, when replacement string is a variable
How to replace in Javascript, when replacement string is a variable Very often we use replace method in javascript while replacing a string literal by another string literal.But what if we need to replace a string whose value is held … Continue reading
Posted in Client Side Programming, JavaScript, jQuery
Tagged JavaScript, jQuery, js, manipulation, Strings
Leave a comment