Changeset 965677
- Timestamp:
- 08/14/2014 10:55:39 AM (11 years ago)
- Location:
- wp-fjqgrid/trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-fjqgrid/trunk/index.php
r960595 r965677 4 4 Plugin URI: http://wordpress.org/extend/plugins/wpf-jqgrid/ 5 5 Description: jqGrid porting to wordpress. Use shortcode like <code>[wpf-jqgrid table='wpf_jqgrid_sample' idtable=1 caption='name to display' editable=true]</code> 6 Version: 0.1 46 Version: 0.15 7 7 Author: faina09 8 8 Author URI: http://profiles.wordpress.org/faina09 9 9 License: GPLv2 or later 10 10 */ 11 $VER = '0.1 4';11 $VER = '0.15'; 12 12 defined( 'ABSPATH' ) OR exit; 13 13 -
wp-fjqgrid/trunk/readme.txt
r960595 r965677 23 23 24 24 Info and samples at <a href="http://faina09.it/category/wp-plugins/wp-fjqgrid/">WPF-jqGrid developer's site</a> 25 26 WARNING: do to a plugin rename, the current plugin directory is wp-content\plugins\<strong>wp-fjqgrid</strong> while the plugin name and the shortcode has the '-' in a different position: <strong>wpf-jqgrid</strong>. 25 27 26 28 == Installation == … … 49 51 50 52 = Which are the know limitations or issues? = 53 * There is a column order issue with <strong>Theme Twenty Fourteen</strong> that I was unable to fix (if you can, please let me know!). Please use a different Theme. 51 54 * Your table MUST have ONE and ONLY ONE field set as primary key, if not the first field will be use as PK. 52 55 * The fields render and size are set to a default, possible but not easy to set them for each field 53 56 * No decode/pull down lists available 57 * No master/detail feature 54 58 * Must insert numbers with DOT decimal separator and NO thousand separator 55 59 * Datetime edit check is not supported in jqGrid … … 74 78 75 79 == Changelog == 80 = 0.15 = 81 * add German translation (thanks to Tobias) 82 * minor fixes and doc updates 76 83 = 0.14 = 77 84 * fix create table MySQL 5.6 -
wp-fjqgrid/trunk/wpf-jqgrid.php
r960595 r965677 140 140 if ( str_replace( 'index.php', 'wpf-jqgrid.php', $file ) == $this_plugin ) { 141 141 // the anchor tag and href to the URL we want. For a "Settings" link, this needs to be the url of your settings page 142 $settings_link = '<a href="' . get_bloginfo( 'wpurl' ) . '/wp-admin/options-general.php?page=' . $this->wpf_ name . '">Settings</a>';142 $settings_link = '<a href="' . get_bloginfo( 'wpurl' ) . '/wp-admin/options-general.php?page=' . $this->wpf_code . '">Settings</a>'; 143 143 // add the link to the list 144 144 array_unshift( $links, $settings_link ); … … 305 305 <td><textarea rows="3" cols="80" style="height: 100px; width: 60%;" name="<?php echo $this->wpf_code; ?>[frmtfield]"><?php echo $options['frmtfield']; ?></textarea></td> 306 306 </tr> 307 <tr style="background-color:#72969F; vertical-align: top"><th scope="row" ><?php _e( 'clean all on deactivate', $this->wpf_code ); ?></th>307 <tr style="background-color:#72969F; vertical-align: top"><th scope="row" style="color:#FFF; padding-left:10px"><?php _e( 'clean all on deactivate', $this->wpf_code ); ?></th> 308 308 <td><input type="checkbox" name="<?php echo $this->wpf_code; ?>[do_uninstall]" value="1" <?php checked( '1', $options['do_uninstall'] ); ?> /></td> 309 309 </tr> 310 <tr style="background-color:#72969F; vertical-align: top"><th scope="row" ><?php _e( 'tables to drop on deactivate (comma separated)', $this->wpf_code ); ?></th>310 <tr style="background-color:#72969F; vertical-align: top"><th scope="row" style="color:#FFF; padding-left:10px"><?php _e( 'tables to drop on deactivate (comma separated)', $this->wpf_code ); ?></th> 311 311 <td><input type="text" style="width:80%;" name="<?php echo $this->wpf_code; ?>[do_drop]" value="<?php echo $options['do_drop']; ?>"/></td> 312 312 </tr> 313 <tr style="background-color:#558c9a; vertical-align: top"><th scope="row" ><?php _e( 'execute create table', $this->wpf_code ); ?></th>313 <tr style="background-color:#558c9a; vertical-align: top"><th scope="row" style="color:#FFF; padding-left:10px"><?php _e( 'execute create table', $this->wpf_code ); ?></th> 314 314 <td><input type="checkbox" name="<?php echo $this->wpf_code; ?>[do_createtable]" value="1" <?php checked( '1', $options['do_createtable'] ); ?> /></td> 315 315 </tr> 316 <tr style="background-color:#558c9a; vertical-align: top"><th scope="row" ><?php _e( 'create sql table', $this->wpf_code ); ?></th>316 <tr style="background-color:#558c9a; vertical-align: top"><th scope="row" style="color:#FFF; padding-left:10px"><?php _e( 'create sql table', $this->wpf_code ); ?></th> 317 317 <td> 318 318 <textarea rows="3" cols="80" style="height: 100px; width: 60%;" name="<?php echo $this->wpf_code; ?>[createtable]"><?php echo $options['createtable']; ?></textarea></td> -
wp-fjqgrid/trunk/wpf_jqgrid_sample.sql
r847218 r965677 30 30 `ID` int(11) NOT NULL AUTO_INCREMENT, 31 31 `City` varchar(100) DEFAULT NULL, 32 `Temp_ °C` decimal(10,2) DEFAULT NULL,32 `Temp_C` decimal(10,2) DEFAULT NULL, 33 33 `DateTime` datetime DEFAULT NULL, 34 34 PRIMARY KEY (`ID`) … … 39 39 -- 40 40 41 INSERT INTO `wpf_jqgrid_sample` (`ID`, `City`, `Temp_ °C`, `DateTime`) VALUES41 INSERT INTO `wpf_jqgrid_sample` (`ID`, `City`, `Temp_C`, `DateTime`) VALUES 42 42 (1, 'Udine', '4.10', '2014-01-26 19:00:00'), 43 43 (2, 'Cividale', '2.70', '2014-01-26 19:23:00'),
Note: See TracChangeset
for help on using the changeset viewer.