This is a discussion on What is mean by xajax. within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; hi... can anybody know about xajax. How this differ with ajax. Thanks in advance... Kathir......
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Kathir, Xajax xajax is an open source PHP class library that allows you to easily create powerful, web-based, Ajax applications using HTML, CSS, JavaScript, and PHP. Applications developed with xajax can asynchronously call server-side PHP functions and update content without reloading the page. Why should I use xajax instead of another Ajax library for PHP? You should choose whatever library will best meet the needs of your project. xajax offers the following features that, together, make it unique and powerful: xajax's unique XML response / javascript message-pump system does the work for you, automatically handling the data returned from your functions and updating your content or state according to the instructions you return from your PHP functions. Because xajax does the work, you don't have to write javascript callback handler functions. xajax is object oriented to maintain tighter relationships between the code and data, and to keep the xajax code separate from other code. Because it is object oriented, you can add your own custom functionality to xajax by extending the xajaxResponse class and using the addScript() method. xajax works in Firefox, Mozilla, probably other Mozilla based browsers, Internet Explorer, and Safari. In addition to updating element values and innerHTML, xajax can be used to update styles, css classes, checkbox and radio button selection, or nearly any other element attribute. xajax supports passing single and multidimensional arrays and associative arrays from javascript to PHP as parameters to your xajax functions. Additionally, if you pass a javascript object into an xajax function, the PHP function will receive an associative array representing the properties of the object. xajax provides easy asynchronous Form processing. By using the xajax.getFormValues() javascript method, you can easily submit an array representing the values in a form as a parameter to a xajax asynchronous function: xajax_processForm(xajax.getFormValues('formId');. It even works with complex input names like "checkbox[][]" and "name[first]" to produce multidimensional and associative arrays, just as if you had submitted the form and used the PHP $_GET array Using xajax you can dynamically send additional javascript to your application to be run in response to a request as well as dynamically update element attributes. xajax automatically compares the data returned from the PHP functions to the data that is already in the attribute of the element you have marked for change. The attribute is only updated with the new data if it will actually change what is already in the attribute. This eliminates the flicker often observed in applications that update content at a regular time interval with data which may or may not differ from extant content. Each function registered to be accessible through xajax can have a different request type. All functions default to use POST unless GET is explicitly set. This is to encourage careful consideration of when to use GET requests If no request URI is specified, xajax tries to autodetect the URL of the script. The xajax autodetection algorithm is sophisticated enough that, on most servers, it will work under a secure https:// protocol as well as http:// and with nonstandard ports. xajax encodes all of its requests and responses in UTF-8 so that it can support a wider range of characters and languages. xajax has been successfully tested with various unicode characters including Spanish, Russian, Arabic, and Hebrew Nearly all of the javascript generated by xajax is included into your web application through dynamic external javascript. When you view the source of your application in your browser, the markup will be not cluttered by JavaScript function definitions. xajax can be used with the Smarty templating system by creating a variable in smarty that contains the xajax javascript: $smarty->assign('xajax_javascript', $xajax->getJavascript()); Then you can use {$xajax_javascript}in your header template to use xajax on your site. Ref below url for your reference: xajax PHP Class Library - The easiest way to develop asynchronous Ajax applications with PHP Ajax Tutorial : Ajax Help for newbies » Ajax Resources Thanks V.Vadivelan |
| |||
| In modern trend we are using lot of new web technology like Ajax, Asynchronous JavaScript and XML (Ajax) is a Web technique that combines JavaScript, Document Object Model (DOM), and XMLHttpRequest technologies to provide dynamic interactions between a client and a server. Various PHP class libraries are available for using Ajax with PHP, among them Xajax, an open source object-oriented PHP class library Thanks Ragav |
| |||
| Quote:
do i need to go for a different Library class..?
__________________ J Suresh Kumar Google Hacks ![]() |
![]() |
| Thread Tools | |
| Display Modes | |
| |