Forum Activity for @blindmime

blindmime
@blindmime
03/04/15 11:04:46AM
772 posts

moving data from one module to another


Design and Skin Customization

I have a custom aparna-generated module which consists of a long bid form. My customer fills this in when bidding a project. When the project is approved, each approved item in the form then becomes a task in another custom module.

Currently they are filling the tasks in manually week to week. I would like to automate this by moving the data from the fields in the bid module over to task module, keeping the bid form. There are additional things to set up to facilitate this for the client, such as they want the bid module data displayed in tab or cascading menus together with the task data. Each bid item is organized into categories (tabs) with a button to click to enter it as a task.

This is beyond my jamroom comfort zone, but maybe if I had something similar to look at, at least in terms of moving data from one module to the other, I could possibly figure it out. Barring that I could pay someone to at least get me started or even do the smart work depending on the cost.

Let me know your thoughts, please.

updated by @blindmime: 04/12/15 05:30:26AM
blindmime
@blindmime
03/04/15 10:44:30AM
772 posts

Date drop down showing date when not entered


Design and Skin Customization

Is there a way to have date dropdown menu fields NOT show a date when there hasn't been a date entered?
updated by @blindmime: 04/23/15 05:20:24PM
blindmime
@blindmime
03/01/15 08:32:00PM
772 posts

multiple image uploads on image form field


Using Jamroom

No photos are displayed if I change it 'value'.
blindmime
@blindmime
02/28/15 04:23:43PM
772 posts

multiple image uploads on image form field


Using Jamroom

This is in the update section:
    // Form init
    $_tmp = array(
        'submit_value' => 9,
        'cancel'       => jrCore_is_profile_referrer(),
        'values'       => $_rt
    );
    jrCore_form_create($_tmp);

If I add this to the update section, one photo is displayed:
// Task Photo
    $_tmp = array(
        'name'     => 'task_photo',
        'label'    => 1,
        'help'     => 5,
        'text'     => 'select photos to upload',
        'type'     => 'image',
        'multiple' => true,
        'required' => false,
	 'value'    => true
       
    );
    jrCore_form_field_create($_tmp);

If I don't add that at all, multiple photos are displayed (but I don't get the multiple upload function). Apparently, the form designer image field can already display multiple images. Evidently my module code above is missing something it needs to do that?
updated by @blindmime: 02/28/15 04:24:29PM
blindmime
@blindmime
02/28/15 09:46:35AM
772 posts

multiple image uploads on image form field


Using Jamroom

I have a custom aparna-generated module with an image field create in form designer. I've added the code above to its index.php file and it's allowing multiple images in my custom module, but it doesn't display any images in the update form. In testing, I uploaded multiple images and it works as expected, but no images are displayed upon viewing the update form. I know they uploaded and are in the datastore successfully, because if I go back to original index.php file, the multiple images show in the update form. How do I get the images to display in the update form with the multiple image upload enabled?
blindmime
@blindmime
02/11/15 10:51:09AM
772 posts

Share your Performance Check Results


Announcements

My Arvixe shared sites are around 325. Bluehost is around 650. I have bluehost sites on both regular shared and "pro" shared and the scores are roughly the same for both. I can't get video to process on either of these hosts, by the way. It's not a big issue for me; just mentioning it.

I got 1246 on a shared host jbservers website which seems really odd to me. I've actually considered this host to be much slower than all my other sites. Today it was acting OK, though I wouldn't say any speedier than the other shared hosts. Maybe they've made some changes in the last month or so?
blindmime
@blindmime
02/06/15 09:18:27AM
772 posts

invalid upload extension in IE


Using Jamroom

A client is unable to upload images via Internet Explorer. The error returned is an invalid extension (). I've confirmed that the images are jpg files and I can upload them fine. She can also upload them using Chrome. Just wondering if there might be a solution (besides not using IE, that is).
updated by @blindmime: 03/11/15 06:11:51AM
blindmime
@blindmime
02/06/15 09:12:26AM
772 posts

multiple image uploads on image form field


Using Jamroom

Awesome -- thanks, Paul!
blindmime
@blindmime
02/06/15 06:36:53AM
772 posts

multiple image uploads on image form field


Using Jamroom

It's an Aparna-generated custom module.
blindmime
@blindmime
02/05/15 11:37:50AM
772 posts

multiple image uploads on image form field


Using Jamroom

I would like to have an Image upload field on a form take multiple images. (and then I need to display them, of course)

How might I go about this?
updated by @blindmime: 04/14/15 01:29:38AM
  41