Forum Activity for @ultrajam

SteveX
@ultrajam
02/26/15 05:01:16PM
2,589 posts

What is a chapter (jrDocs)?


Jamroom Developers

I guess it's a section, just noticed it in the last jrDocs update.

Quote: - New: Top level chapter section is now sortable so the order of chapters can be re-arranged

Is it a new term?
updated by @ultrajam: 04/13/15 03:17:06PM
SteveX
@ultrajam
02/26/15 04:24:14PM
2,589 posts

Success/Notice css


Jamroom Developers

Warning: It's trivial!

When you disable a module and the page reloads, you are shown a success message and a notice message simultaneously. They are slightly different sizes, and once you see it (please don't try this at home), it can feel a bit odd.

The blue message should have a little more padding imo.
trivial-widths-difference.png trivial-widths-difference.png - 27KB

updated by @ultrajam: 04/06/15 10:24:27AM
SteveX
@ultrajam
02/26/15 12:27:33PM
2,589 posts

ldap authentication


Jamroom Developers

Thanks Brian, much appreciated, I'm sure that will help.
SteveX
@ultrajam
02/26/15 09:18:26AM
2,589 posts

ldap authentication


Jamroom Developers

I'm interested in authenticating visitors to the site with ldap and active directory.

Are there jamroom triggers in place which might help cope with that?

Has anyone already made a module to handle anything similar?
updated by @ultrajam: 04/06/15 06:59:55AM
SteveX
@ultrajam
02/26/15 07:07:04AM
2,589 posts

Modifying create button url


Jamroom Developers

OK, thank you Brian :)
SteveX
@ultrajam
02/26/15 06:51:11AM
2,589 posts

Modifying create button url


Jamroom Developers

Yes, I need to pass the category of the current item into the new item.
SteveX
@ultrajam
02/26/15 06:09:05AM
2,589 posts

Modifying create button url


Jamroom Developers

In my module I need to add a parameter to the url jrCore_item_index_buttons create button.

So I try to "overwrite" the create button by registering the button like this:
    $_tmp = array(
        'title'  => 'create',
        'icon'   => 'plus',
        'active' => 'on',
        'group'  => 'owner'
    );
    jrCore_register_module_feature('jrCore', 'item_index_button', 'myModule', 'myModule_item_create_button', $_tmp);

And I have the myModule_item_create_button function, so the button appears in the page, BUT it appears in addition to the original create button, not instead of.

Is there any way to add to the create button url?

Thanks!
updated by @ultrajam: 04/13/15 06:58:28AM
SteveX
@ultrajam
02/24/15 03:44:00PM
2,589 posts

Need A Little Help With Video Title In A Template


Using Jamroom

<div class="block_config">
    buttons are here
</div>
Copy the whole block_config div from your original template - that div should close and you need the button code in there.
SteveX
@ultrajam
02/24/15 10:52:25AM
2,589 posts

Need A Little Help With Video Title In A Template


Using Jamroom

It is the column constraining the width of the heading on your /drilling-ahead/video/albums/accident page.

So change the col-lg-3 to col-lg-8 and get rid of the last column (so that your grid still adds up to 12). You don't need to use "last" with bootstrap 3.

Also, you can remove the container div - bootstrap 3 is quite happy with rows within rows. That will give you extra space as well - the container is adding a second set of padding there. But since you need somewhere to put your buttons from the removed last column, try changing that class="container" to class="controls-enabler" and then add the buttons div class="block_config" before your first column. You will need an extra rule there for controls-enabler (it isn't part of bootstrap), probably something like this:
.controls-enabler {
	position:relative;
	clear:both;
	overflow:visible;
}

So it would end up something like this:
<li data-id="81">
	<div class="item">
		<div class="controls-enabler">
			<div class="block_config">
				buttons are here
			</div>
			<div class="row">
				<div class="col-lg-1">
					<div class="p5">
						2
					</div>
				</div>
				<div class="col-lg-8">
					<div class="p5">
						<h3>Title Here</h3>
					</div>
				</div>
				<div class="col-lg-3">
					<div class="p5">
						<span style="display:inline-block;vertical-align:middle;">
							<ul class="star-rating">
								...
							</ul>
						</span>
					</div>
				</div>
			</div>
		</div>
	</div>
</li>

updated by @ultrajam: 02/24/15 10:53:04AM
  112