gwythaint
Forum Replies Created
-
Forum: Plugins
In reply to: [DB Toolkit] Problems Importing .CSV file into tableThe semicolon delimiter fields could be changed to commas with this two line changes in this version of data_form/class.php
Forum: Plugins
In reply to: [DB Toolkit] Linking tables automatically without dropdownI think, if you want might want to use triggers
to “auto-populate” table B after inserting a row into table A using fields from the fields of the new row in table A.In this case, this type of action is out-of-scope of what DB-Toolkit is designed for.
Forum: Plugins
In reply to: [DB Toolkit] db-toolkit developmentI’m back on this technology for a few weeks…
Forum: Plugins
In reply to: [DB Toolkit] Updates and Dev Blogrockin
Forum: Plugins
In reply to: [DB Toolkit] db-toolkit developmentI fully agree with rainbat. I can help with both money and coding. Let’s just get some framework together. I’m anxious to integrate my fixes to into 0.3.2.26
Forum: Plugins
In reply to: [DB Toolkit] db-toolkit developmentfor those of us who are complete noobs at this
No, I shall not. Nothing personal, but my time is best spent improving the code.
I’ll let Desertsnowman decide how to get the changes in your hands. (hint hint)David, git hub is still “ancient”.. and doesn’t resemble the current code at all.
https://github.com/Desertsnowman/DB-ToolkitWhat was this yesterday?
“fixing loaders [David Cramer]”We could talk more, if you could give me your contact information.
Forum: Plugins
In reply to: [DB Toolkit] db-toolkit developmentThis fix to datepicker applies to a problem where different versions of jqueryui interfere with each other. I found it works with WP 3.5 and db-toolkit 0.3.2.026
ymac:db-toolkit david$ svn diff -r 4:HEAD libs/functions.php
Index: libs/functions.php
===================================================================
— libs/functions.php (revision 4)
+++ libs/functions.php (revision 9)
@@ -488,7 +488,6 @@wp_register_script(‘data_report’, WP_PLUGIN_URL . ‘/db-toolkit/data_form/javascript.php’, false, false, true);
wp_register_script(‘data_form’, WP_PLUGIN_URL . ‘/db-toolkit/data_report/javascript.php’, false, false, true);
– //wp_register_script(‘jquery-ui’);// , WP_PLUGIN_URL . ‘/db-toolkit/jqueryui/jquery-ui.min.js’);
wp_register_script(‘jquery-multiselect’, WP_PLUGIN_URL . ‘/db-toolkit/libs/ui.dropdownchecklist-min.js’, false, false, true);
wp_register_script(‘jquery-validate’, WP_PLUGIN_URL . ‘/db-toolkit/libs/jquery.validationEngine.js’);@@ -497,6 +496,7 @@
wp_enqueue_script(“jquery-ui-dialog”);
wp_enqueue_script(“jquery-ui-sortable”);
wp_enqueue_script(“jquery-ui-tabs”);
+ wp_enqueue_script(‘jquery-ui-datepicker’); // use the wordpress distribution of jquery-ui-datepicker
wp_enqueue_script(‘jquery-multiselect’);
wp_enqueue_script(‘data_report’);
wp_enqueue_script(‘data_form’);Forum: Plugins
In reply to: [DB Toolkit] db-toolkit developmentI think I’ll put the current version on Github as well. That way you can help fix things and push pull request on changes.
That’s what I’m talking about. My changes relative to 0.3.2.26 would be more productive.