Search
19011 results 701-710
Forum
- 4th Jun 2014PHP validation for a field only in create windows from and not in edit windows formI validate a field in the creation windows form for required field and so unique: Field::inst( 'barcode' ) ->validator( function($val, $data, $opts) { global $db; if ( empty($val) ) { return "Codice a Barre obbligatorio"; }else{ $checkdup = $db ->select( 'listino', 'id', array( 'barcode' => mysql_real_escape_string($val) )) ->count(); if($checkdup !== 0){ return "Codice a Barre esistente"; } } return true; } ), the problem that in edit windows form I should not validate the field, is possible? sorry for my english, I hope I explained
- 2nd Jun 2014Create Custom CellRegarding http://datatables.net/reference/option/columns.createdCell How do you multiple if statements, For example if Celldata > 1 and Celldata < 5 .. Is that possible Can this also be done with row functions?
- 2nd Jun 2014How to create data table scrolling?Hi All, I know that scrolling is possible in data table but it can be possible with scrolling as per my requirement. Requirement : data table must show an initial list of 10 records and if the user scrolls down, refresh to show the next 10 and so on. i don't want pagination but instead i want scrolling with above requirement. Is it possible with data table?
- 14th May 2014Values columnfilter create select use AjaxHello, I'm wanting to do something like this example: http://www.datatables.net/examples/api/multi_filter_select.html, but I want to load only a few columns via Ajax and others with fixed data. How Do I? Can I still use the code: .columnFilter({ aoColumns: [ { type: "select", values: [ 'Gecko', 'Trident', 'KHTML', 'Misc', 'Presto', 'Webkit', 'Tasman'] }, { type: "text" }, null, { type: "number" }, { type: "select" } ] });
- 8th Aug 2013How to generate the column number if we create a new row in Inline Editing?Hi Allan, 1)In Inline Editing, if we select "Add new row" a new row is displaying with empty text fields, How to auto generate the number for the first field dynamically.. For Example if I select Add new row it should come as 1,---,---, 2)How to save the records with save button at bottom into a json file Thanks in advance
- 24th Jul 2013Create a Asp.net web server control using datatable.are there any eazy way to careat server control using data table.
- 11th Mar 2013Need to Create and display DataTable on onchangeevent of the listBoxHow can i hook up the datatable to the onchange event of the listbox and how can i make the ajax call on every OnChange event of the ListBox so that i can display new data depending upon the value selected in the listbox.
- 1st Mar 2013Master child tables - Create child from databasein this example is created a fixed table. How
- 13th Nov 2012How to create a fixed table size, but with dynamic no. of columns?Hello, Is it possible to have a fixed table size e.g. 1000px, with the 1st column (Header & Labels) and the last column (Total) fixed and then I have the scrollable area of the table in between, but, instead of having 3-4 columns as in the examples provided on this website, I have 10, 15, 20, 30 or more columns without affecting the size of the table? i.e. irrespective of the no. of columns, the scrollable area doesn't stretch the table size to the right. Thanks in advance. Best regards, Yogesh.
- 16th Oct 2012SOLVED -Dynamically create multiple tables from JSONP?example of how one creates multiple tables on a