Keyword

K2 Add new item window resize

More
14 years 4 months ago #87287 by Bernard R.
Replied by Bernard R. on topic K2 Add new item window resize
POSSIBLE FIX FOR SAVE AND CLOSE BUTTON.

Not sure if this would work with everyone. It worked like a charm on my site.

(REMEMBER TO BACKUP YOUR FORM.PHP FILE BEFORE PROCEEDING WITH THIS FIX)

I added the following line of code to line 36 on form.php (located: components/com_k2_views/item/tmpl)

parent.$('sbox-window').close();

Please Log in or Create an account to join the conversation.

More
14 years 4 months ago #87288 by Carlos Salas
Replied by Carlos Salas on topic K2 Add new item window resize
go to components/com_k2/views/item/tmpl/form.php

After string 35: "submitform( pressbutton );"
You can add:
36: parent.$('sbox-window').close(); /* To close modalbox */
37: alert( ' Send ! ' ); /* To view a message */

Info by BFL found here: community.getk2.org/forum/topics/close-modalbox-on-frontend


modernmagic said:I have discovered that if you login and click "My Page" and then click "Post a new item" the "K2 Add Item" screen appears on a popup and everything works fine.
This confirms that the issue/bug is only when you click "Add New Item" in the K2 login module.

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #87289 by Peter Clarke
Replied by Peter Clarke on topic K2 Add new item window resize
Hi All - not sure if this has been posted or not (too many posts to read!) but this helps in window resizing.

 

simon.getk2.org/tips-and-tricks/item/277-front-side-editor-iframe-adjustment

 

Cheers!

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #87290 by John Willis
Replied by John Willis on topic K2 Add new item window resize
As i work through this (increasingly long) thread i also am hopeful that the front end editing size will be fixed.  At the moment though, i tell my clients to pres F11 to get the browser tools out of the way.  Some have a lot of stuff up there, which makes their window even smaller than normal.

 

I love K2 and will continue working with it, and have faith that this will be addressed in the future.

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #87291 by Peter Clarke
Replied by Peter Clarke on topic K2 Add new item window resize
Hey John - did you click the link I posted above? If you are able to access the files via FTP it is really easy to do - and it works. I am not a "coder" or developer by any means - just a user and I was able to do it. Good luck!

John Willis said:
As i work through this (increasingly long) thread i also am hopeful that the front end editing size will be fixed.  At the moment though, i tell my clients to pres F11 to get the browser tools out of the way.  Some have a lot of stuff up there, which makes their window even smaller than normal.

 

I love K2 and will continue working with it, and have faith that this will be addressed in the future.

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #87292 by John Willis
Replied by John Willis on topic K2 Add new item window resize
Thanks Peter, I see two instances of this line in the components/com_k2/templates/user.php file.  The example mentions  href="/"> at the end of the lines,and i have this after the href="/">  Do i need to remove this part?

href="<?php echo $this->addLink; ?>"> <?php echo JText::_('Post a new item'); ?>

 

Please Log in or Create an account to join the conversation.

More
14 years 2 months ago #87293 by Peter Clarke
Replied by Peter Clarke on topic K2 Add new item window resize
HI John, just had to re-read the instructions. You only replace the red with the green text. So I am pretty sure you leave the "href" in tact. Make sure to keep an original copy of the file incase you need to go back to it!

 

Good Luck!

 

Peter

 

John Willis said:

Thanks Peter, I see two instances of this line in the components/com_k2/templates/user.php file.  The example mentions  href="/"> at the end of the lines,and i have this after the href="/">  Do i need to remove this part?

href="<?php echo $this->addLink; ?>"> <?php echo JText::_('Post a new item'); ?>

 

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87294 by Andy Connell
Replied by Andy Connell on topic K2 Add new item window resize
 

Carlos Salas said:

Hi Petri!
You can disable the lightbox by removing the class and the rel.

Before:
class="modal" rel="{handler:'iframe',size:{x:window.getSize().scrollSize.x-80, y: window.getSize().size.y-80}, onShow:$('sbox-window').setStyles({'padding': 0})}" h r e f=" < ?php echo $user->profile->addLink; ?> " > < ?php echo JText::_('Add new item'); ? >< /a>

After:
h r e f="< ? php echo $user->profile->addLink; ?> " >

This way you will get a "normal" link to open in a same window or in a new tab.
Just remember remove the class="modal" because if you don't it will display a worst lightbox

P.S. I had to separate the code because it wont let me place a php code =/ sorry man

Greets.

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87295 by Andy Connell
Replied by Andy Connell on topic K2 Add new item window resize
Hi I cant get this to work either?I have removed code lines        <a class="modal" rel="{handler:'iframe',size:{x:990,y:650}}" href="<?php echo $this->item->editLink; ?>">                to read;                <a href="<?php echo $this->item->editLink; ?>">as suggested. Now when a user clicks to add/edit article in the front end. the front end editor opens up in a full width screen, that when you add your article and saveit is saved, and there is a message that says so, but the screen desont close down, and the cancel icon also doesnt close the screen down, you have to use your browsers back button to get back?Have I missed something out?Andy

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87296 by Hanny
Replied by Hanny on topic K2 Add new item window resize
By removing the 'iframe' code, all you're doing is making it appear in the existing window.

 

To resolve this bug - it will be something going on with the code behind the 'save' button.  I've read that the authors of this component have chosen not to fix this bug - which is unfortunate.  It's the single thing keeping me from being completely satisfied with this!

 

I personally don't know enough to go in tinkering around with the code behind the 'save' button - but was hoping these forums would provide some assistance.

 

So far, no luck.

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87297 by william white
Replied by william white on topic K2 Add new item window resize
If you use an override this may help

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87298 by Hanny
Replied by Hanny on topic K2 Add new item window resize
I have successfully done it.

If you add the following line of code to your item.php file it will close the window after the article is saved (the file is found in your_site\components\com_k2\views\item\tmpl\form.php)

 

Add this code at or around line 36 - after the line 'submitform( pressbutton );'

parent.$('sbox-window').close();

 

So it should now look like:

<?php endif; ?>submitform( pressbutton );parent.$('sbox-window').close();

 

I'm currently working on the javascript needed to refresh the page once the window closes so you'll see the 'Item Saved' text at the top of the screen.

 

If you do not change line 254 the article will be 'locked' on the backend - if you want the article to save without being locked you can change the text on line 254 to read:

<a class="toolbar" href="#" onclick="javascript: submitbutton('save'); return true;">

If you do this - the 'your item has been saved' text will not show - I'm working on resolving this

 

I hope this helps other people who were running into the same issue as me.

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87299 by Peter Clarke
Replied by Peter Clarke on topic K2 Add new item window resize
Thanks Hanny! Looking forward to the rest of your solution.

Please Log in or Create an account to join the conversation.

More
14 years 1 month ago #87300 by Hanny
Replied by Hanny on topic K2 Add new item window resize
Well, I'm at a stumbling block.

From my reading it looks as if we don't even need to include

parent.$('sbox-window').close();


to get the window to close.

All that needs to be done is the following:

 

window.parent.location.reload();


 

That will reload the page, and since the new item is opened in an Iframe, when the page is reloaded the iframe will go away automatically.

 

BUT, it needs to be added to the postback from the javascript (which exists somewhere, that's why 'Add Item' changes to 'Edit Item')

I'm just too new to javascript to know where to look or where to put it in order for it to work.

 

Wish the developers would chime in on this considering it's been such a huge stumbling block for so many...

Please Log in or Create an account to join the conversation.

More
14 years 2 weeks ago #87301 by Hanny
Replied by Hanny on topic K2 Add new item window resize
Okay, here's how it's done.

If you have users creating articles from the front end and you want the 'save' button to close the model box window that pops up when they add or edit an article - just follow the steps below to achieve this:

 

*Note: there are a few other fixes that work to close the box, but not refresh the page - this does both.

 

The key is passing an extra parameter through the URL that gets created when the user clicks "Save", then we just check to see if that parameter (which I will call 'step') exists - if it does, we refresh the page.

 

Lets follow along, first we must add this parameter to the URL created -

Open the item.php file located at:

Yoursite->administrator->components->com_k2->models->item.php

 

On or around line 646 - you will see some text that resembles:

case 'save':            default:                $msg = JText::_('Item Saved');                if ($front)                $link = 'index.php?option=com_k2&view=item&task=edit&cid='.$row->id.'&tmpl=component';                else                $link = 'index.php?option=com_k2&view=items';                break;


So what we need to do is add our parameter to that URL so it will look like this (remember I called the parameter 'step', and will be setting it =1) - the code will now look like this:

 

                if ($front)                $link = 'index.php?option=com_k2&view=item&task=edit&cid='.$row->id.'&step=1&tmpl=component';


 

Now when the user clicks 'save' the parameter 'step' is getting passed along, and when the form reloads to show the user their information they had entered, step=1!

 

So then we have to add the php to check for that - that's simple enough:

Open the form.php file located at:

Yoursite->components->com_k2->views->item->tmpl->form.php

 

In there you can see where the form actually begins (on or around line 249), what we want to do is just add a little bit of php that checks to see if our 'step' parameter is equal to 1.  If it is - we'll refresh the parent page using some javascript, that will automatically close the model box and cause the 'item saved' text to display to the user letting them know what happened.

The existing code looks like :

<form action="index.php" enctype="multipart/form-data" method="post" name="adminForm" id="adminForm">    <div class="k2Frontend">                    <table class="toolbar" cellpadding="2" cellspacing="4">


 

When finished it will look like this:

 

<form action="index.php" enctype="multipart/form-data" method="post" name="adminForm" id="adminForm">    <div class="k2Frontend">        <?php if (JRequest::getInt('step')=='1') { ?>        <script language="javascript">        window.parent.location.reload();        </script>        <?php        } ?>                    <table class="toolbar" cellpadding="2" cellspacing="4">


 

That checks to see if 'step' is =1.  If it is - it runs javascript to refresh the parent window - closing the box and refreshing the page automatically.

 

This ensures the easiest possible thing for the user (i.e. they don't have to click 'back' and 'refresh' which is extremely counter-intuitive) and gives the front end user a back-end experience.

 

I hope this helps people - it took me a LOT of chasing things in the wrong direction before I thought of this solution.

I'm pretty saddened the developers never helped with something that's affected so many people, but oh well - problem was solved!

 

Keep on, keepin' on!

 

 

 

 

 

 

 

 

 

 

 

 

 

Okay, here's how it's done.

If you have users creating articles from the front end and you want the 'save' button to close the model
box window that pops up when they add or edit an article - just follow
the steps below to achieve this:

 

*Note: there are a few other fixes that work to close the box, but not refresh the page - this does both.

 

The key is passing an extra parameter through the URL that gets created
when the user clicks "Save", then we just check to see if that parameter
(which I will call 'step') exists - if it does, we refresh the page.

 

Lets follow along, first we must add this parameter to the URL created -

Open the item.php file located at:

Yoursite->administrator->components->com_k2->models->item.php

 

On or around line 646 - you will see some text that resembles:

case 'save':             default:
                $msg = JText::_('Item Saved');
                if ($front)
                $link =
'index.php?option=com_k2&view=item&task=edit&cid='.$row->id.'&step=1&tmpl=component';
                else
                $link = 'index.php?option=com_k2&view=items';
                break;

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #87302 by juju
Replied by juju on topic K2 Add new item window resize
Thanks a lot men ! It works like a charm :)

But I still don't like the pop-up box, I prefer a lot the Joomla basic window, integrate in the website, for adding article...

 

Has anyone tried to do that ? : remplace the pop-up box system and have a display like in backend, I mean with window integrate in the website ?

 

Thanks a lot ;)

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #87303 by Andy Connell
Replied by Andy Connell on topic K2 Add new item window resize
Yes - Email me & I'll send you instructions! andy871@gmail.com

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #87304 by juju
Replied by juju on topic K2 Add new item window resize
I have a big problem, I don't know if it's due to the modification for the button save, but for each article I add, they are lock in back end. I had to unlock them with "Tools"->General Validation in backend.

 

For example, the user "Juju" add 4 articles, they are all locked. And when "Juju" logout, all article unlock itself.

 

Any idea ? It's really weird Oo ...

 

Thanks ;)

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #87305 by Andy Connell
Replied by Andy Connell on topic K2 Add new item window resize
Ive seen the answer to that in one of these discussions, maybe on the asksimon site - cant remember. I find it I'll update here.

Please Log in or Create an account to join the conversation.

More
14 years 1 week ago #87306 by Hanny
Replied by Hanny on topic K2 Add new item window resize
I thought it was a safety feature - so that if someone is logged in, their articles are 'locked' so they can't be edited/worked on while they may be working with them.

At least that was my understanding of what I saw.

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum