- Posts: 3
COMMUNITY FORUM
K2 Add new item window resize
- Bernard R.
-
- Offline
- New Member
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.
- Carlos Salas
-
- Offline
- Junior Member
- Posts: 22
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.
- Peter Clarke
-
- Offline
- New Member
- Posts: 4
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.
- John Willis
-
- Offline
- New Member
- Posts: 9
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.
- Peter Clarke
-
- Offline
- New Member
- Posts: 4
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.
- John Willis
-
- Offline
- New Member
- Posts: 9
href="<?php echo $this->addLink; ?>"> <?php echo JText::_('Post a new item'); ?>
Please Log in or Create an account to join the conversation.
- Peter Clarke
-
- Offline
- New Member
- Posts: 4
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.
- Andy Connell
-
- Offline
- Senior Member
- Posts: 54
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.
- Andy Connell
-
- Offline
- Senior Member
- Posts: 54
Please Log in or Create an account to join the conversation.
- Hanny
-
- Offline
- Senior Member
- Posts: 48
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.
- william white
-
- Offline
- Platinum Member
- Posts: 3722
Please Log in or Create an account to join the conversation.
- Hanny
-
- Offline
- Senior Member
- Posts: 48
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.
- Peter Clarke
-
- Offline
- New Member
- Posts: 4
Please Log in or Create an account to join the conversation.
- Hanny
-
- Offline
- Senior Member
- Posts: 48
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.
- Hanny
-
- Offline
- Senior Member
- Posts: 48
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.
- juju
-
- Offline
- Premium Member
- Posts: 119
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.
- Andy Connell
-
- Offline
- Senior Member
- Posts: 54
Please Log in or Create an account to join the conversation.
- juju
-
- Offline
- Premium Member
- Posts: 119
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.
- Andy Connell
-
- Offline
- Senior Member
- Posts: 54
Please Log in or Create an account to join the conversation.
- Hanny
-
- Offline
- Senior Member
- Posts: 48
At least that was my understanding of what I saw.
Please Log in or Create an account to join the conversation.