Forum Activity for @blindmime

blindmime
@blindmime
02/26/14 12:04:18PM
772 posts

aparna module template - jquery text insert


Using Jamroom

Would you mind explaining this a little further, or point me to docs? Would it be possible to use jrCore_page_custom and write the HTML page for the form, laying it out exactly how I want using the variables I've created via the form designer?

Customer is being really nit-picky about how the form looks, of course.
blindmime
@blindmime
02/26/14 08:19:56AM
772 posts

module form auto-save


Using Jamroom

I'm wondering if it's possible and how I might go about have the Update form of an Aparna-created module auto-save. I have a long checklist aa user will be filling out "in the field" and I'm afraid the info may get lost before it's saved.
updated by @blindmime: 04/05/14 12:02:52AM
blindmime
@blindmime
02/26/14 08:15:45AM
772 posts

aparna module template - jquery text insert


Using Jamroom

I can't tell exactly which Aparna-created module template produces the page with the form.

Also, I'd like to insert some headings at various points throughout the form, using jquery. I'm still a novice with jquery, having only done a few things with it. I'm guessing I could probably use the .before insert function -- correct?
updated by @blindmime: 03/29/14 12:05:27AM
blindmime
@blindmime
02/26/14 04:47:28AM
772 posts

integrity check hanging


Using Jamroom

It's very nice. Let's you easily make your own module, configure your own form, grant access to specific quotas where it shows with other modules, and then output submitted information where you wish on your site.
blindmime
@blindmime
02/25/14 10:18:50AM
772 posts

integrity check hanging


Using Jamroom

Thanks, it seems to be working now.
blindmime
@blindmime
02/24/14 11:37:37PM
772 posts

integrity check hanging


Using Jamroom

Aparna is also creating the wrong name in all the created module's php files and tpl files.

Only the language file appears to be unscathed.
blindmime
@blindmime
02/24/14 10:14:17PM
772 posts

integrity check hanging


Using Jamroom

Aparna doesn't clone a module of your choice, unlike the skin cloning function, it simply makes a basic module you can start with. There's a field to enter a module name, the help text says to begin the name with two characters then a name with standard naming convention. Like xxModuleName. However, when creating the include.php file, it ignores "xx" and uses "jr" thereby causing a reference error when Jamroom expects "xxModuleName" there.

The error which needs fixing seems identical to the error in the skin cloning function which was addressed recently. Brian and Michael should recall this.
blindmime
@blindmime
02/24/14 03:45:34PM
772 posts

integrity check hanging


Using Jamroom

Find and replacing the correct name fixed the issue.
blindmime
@blindmime
02/24/14 03:42:25PM
772 posts

integrity check hanging


Using Jamroom

It looks like we have a similar naming error in my module's include.php file as we did with the skin cloning issue we were having a day or two ago.

The include.php file for agBidSheet has this:

/**
* meta
*/
function jrBidSheet_meta() {
$x = 'anrapArj';
$_tmp = array(
'name' => 'BidSheet',
'url' => 'bidsheet',
'version' => '1.0.1',
'developer' => 'The Jamroom Network, ©' . strftime('%Y'),
'description' => 'A module created by '.strrev($x),
'category' => 'tools'
);
return $_tmp;
}

/**
* init
*/
function jrBidSheet_init()
{
// Allow admin to customize our forms
jrCore_register_module_feature('jrCore','designer_form','jrBidSheet','create');
jrCore_register_module_feature('jrCore','designer_form','jrBidSheet','update');

// Core support
jrCore_register_module_feature('jrCore','quota_support','jrBidSheet','on');
jrCore_register_module_feature('jrCore','pending_support','jrBidSheet','on');

etc.
blindmime
@blindmime
02/24/14 03:19:30PM
772 posts

integrity check hanging


Using Jamroom

I'm seeing a bunch of these:
[24-Feb-2014 20:22:54 Europe/Dublin] PHP Fatal error: Call to undefined function agBidSheet_meta() in modules/jrCore/lib/module.php on line 197

agBidSheet is the module I created via aparna

I see a couple of these:

[24-Feb-2014 20:43:23 Europe/Dublin] PHP Warning: Unterminated comment starting line 2 in skins/jrBlank-release-1.0.1/lang/en-US.php on line 2
  67