Search
18504 results 2831-2840
Forum
- 6th Jul 2012can we pass parameter in server side pagination in ajax callk I got it thanks.
- 12th Jun 2012Using server side ajax request and having trouble getting aoColumnDefs to workI misspelled aoColumnDefs as aoColumnsDefs (I added an "s") Oops!
- 1st Jun 2012ajax row update with images in rowIs there a way to reload the data into the table and only update the fields of each row that are actually different? Yes - you would need to use fnUpdate and fnGetData and check the current value, then update the data if needed. Other options include making sure that the browser is caching the images correctly and thus doesn't need to reload them form the server, or using sprites so its already in memory. Allan
- 17th May 2012Multiple Tables on a page with Serverside ajax and show/hide extrasany ideas?
- 16th May 2012reloading ajax table after editIs there available any documentation for new DTEditor() that DTField array options? Those options aren't actually documented on the web-site yet - I want to add an ASP server-side version first, and then provide documentation in a way that will be useful for both of them. However, they are documented in the source files if you have a look at them. In particular, if you want to do custom validation have a look at the DTValidate class - it has functions in it which can be used to do input validation (it actually has an IP address option already - DTValidate::ip. These functions can then be used with the 'validator' option of the DTField class - for example: [code] new DTField( array( "name" => "ip", "dbField" => "ip", "validator" => "DTValidate::ip" ) ); [/code] One of the things I often do, if I don't directly want to add another static function to the validation class is just use a closure function for the "validator" in DTField: [code] new DTField( array( "name" => "ip", "dbField" => "ip", "validator" => function ( $val, $data, $field ) { return true; // or false depending on logic } ) ); [/code] That's useful for one off validation functions, but of course, adding functions to the DTValidate class is good for code reuse :-) Regards, Allan
- 15th May 2012How can customize the Processing dialog that is shown when AJAX source is usedAwesome plug-in Allan. Thanks for the hard work here. Just want to add a little note here regarding processing message, even if this tread is a bit old. This may help other in the future. I have found that we can put html code in the sProcessing string. With Firebug just check the css format to overwrite what is not necessary and store your html processing message in oLanguage table. Here is my example [code]"sProcessing": " "[/code] ajax-loader.gif is my waiting message aka company logo + progress bar and myWaitingMessage is a css definition to put the image at the correct place. and it works...
- 10th May 2012Using dataTables in Ajax JQuery TabsAllan, I'm sorry for asking so much of you - your tool is truly wonderful, unfortunately, I am just a designer and no programmer, so I am needing more than most in getting this to work to my needs. Please look at the example in the link (under the LMH tab) and see the issues I am having, such as the spacing and the other Datatables not working properly like the first one is. Thank you in advance. http://michael.benefitharbor.com/dev/Employer/JqueryScrollingTabs.htm
- 10th May 2012[Solved] Static Number Column with Ajax Source.Ended up fixing this a different way.
- 28th Mar 2012AJAX sort descending on loadHi Allan. What am I looking for in Firebug specifically?
- 28th Mar 2012reload ajax sourceHi John, To remove the "Processing..." display, just remove, or set to false the bProcessing in your init object. Allan