Keyword

K2 Add new item window resize

  • Jasper Newton
  • Jasper Newton's Avatar Topic Author
  • Offline
  • Senior Member
More
13 years 1 month ago #87327 by Jasper Newton
Replied by Jasper Newton on topic K2 Add new item window resize
Simon,

 

Thank you for your input, I have before, and will say again, I value your input, and your help in the past has helped me on many issue. There is some confusion that i MUST clarify. I did not call anybody any names, I am merely repeating K2's response to you. They said they would do nothing to help because I had questioned there know-how, and ergo called them names. Williams answer is inane because it only solves a temporary problem I am utterly astounded at how the bigger picture is being missed. So many people are having this issue, and doing an override is akin to saying " The brakes are faulty, drive slower" it provides a temporary solution. All i am asking, is that K2, say, "yes, we have a problem, there is a solution so easy (so easy that even I, a complete novice worked out) that we will incorporate it into the next K2 as a feature.

I keep hearing "we need to work together to find a solution". I found one, people in this thread have found one! incorporate it! Instead of doing all they can to fight any notion that somebody has dared to question their abilities. Nobody is, We are all in awe of their supreme beings, people jsut get frustrated when such a simple point is being missed.

Answer me this Simon, A car develops a fault, turns out its a "known fault" that affects all cars in that model. Do you fix THAT car, or fix the problem to stop any other cars developing the fault? The end user gets frustrated when the car manufacturer says "its not a bug, its just an inconvenience and anyway were not fixing it because you questioned us". Is that really the impression K2 wants to give?

I thank you again for your valued input.

 

Jasper

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

More
13 years 1 month ago #87328 by Hanny
Replied by Hanny on topic K2 Add new item window resize
Simon,

I apologize if my reply came off a bit crass, and I was under the impression you were a part of the development team.  I am simply surprised that as others have said and I have reiterated, that the developers refuse to acknowledge this as an issue despite the user base that is unhappy with these lacking features.

 

I agree with all the above that we should indeed work together, and I've talked with William (albeit briefly via e-mail) and hopefully we'll be able to bounce some ideas around and continue to work together in organizing a solution that will not cause the weird locked results that juju had discovered.

 

As a community we can do a lot, I think the frustration that builds is because to the coders who developed this solving the problem would probably be very simple, yet they just tell people to 'deal with it'.  It is frustrating for those of us who spend days and weeks struggling just to figure out exactly how to get a hack to make it 'workable', because we would just like a little input.

 

I understand they're busy - they have lots of other things going on, real lives, other projects, etc.  I understand and respect that - but being able to admit something is an issue, and being able to provide perhaps a touch of insight is something I think the entire community would appreciate.

 

I'm with Juju and the others - lets just fix this issue that way the developers can just integrate it into the next release and sign us up to help them in developing new things ;)

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

More
13 years 1 month ago #87329 by Simon Wells
Replied by Simon Wells on topic K2 Add new item window resize
Jasper, car analagies dont really work (you buy a car, the there are safety issue both of which are not valid here) but I know what you.

 

Hanny, no need to apologise

 

From what I can see, the original post, to resize the modal window has been fixed with a solution posted in the main post from Jasper? correct?

Then other questions have been raised relating to modal window, specifically the desire to have modal to close upon save?

 

What I would like to suggest is, why not login to simon.getk2.org where you will be able to post an item to the members blog. I can then check out the solution and test it so that I can provide feedback to the team, to see if they will include it.

 

See where we can take this.

Simon

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

  • Jasper Newton
  • Jasper Newton's Avatar Topic Author
  • Offline
  • Senior Member
More
13 years 1 month ago #87330 by Jasper Newton
Replied by Jasper Newton on topic K2 Add new item window resize
Simon,

The modal window size issue was fixed, temporarily, when K2 release an update, all the changes are wiped, and you have to do them again. The thing I would like K2 (so much) to do, is incorporate it, so for any future releases the modal window has an auto size for all screen resolutions. The reason I am getting exasperated is I know Overrides would help ME, but If i was only interested in helping me, I wouldn't have started this thread, I would like K2 to adapt this change so it helps EVERYBODY. I can do an override, but whats the point of just one person being able to do something. The whole ethos of open source is for  everybody to add and benefit. That's all I'm trying to do, and all Ive been met with is 15 pages of people telling me why they can't, or why I should just deal with it.

 

Thanks again.

jasper.

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

More
13 years 1 month ago #87331 by Hanny
Replied by Hanny on topic K2 Add new item window resize
I have fixed the bug in my code where the article was not 'checked in' upon save.

 

If you want to make it so that the article is also 'checked in' when the user hits save - follow along:

 

In the original steps we added the following to form.php:

 

<?php if (JRequest::getInt('step')=='1') { ?> <script language="javascript"> window.parent.location.reload(); </script> <?php } ?>


 

Simply change that to the following to have the article get 'checked in' when the user saves:

<?php if (JRequest::getInt('step')=='1') { ?>        <script language="javascript">        var XHRCheckin = new Ajax('index.php?option=com_k2&view=item&task=checkin&cid=<?php echo $this->row->id; ?>', {            method: 'get'        });        dummy = $time() + $random(0, 100);        XHRCheckin.request("t"+dummy);        window.parent.location.reload();        </script>        <?php    } ?>

 


I did test this a bit - but if you guys can do any more extensive testing on it that would be great.  Otherwise this should have the 'checkin' and 'checkout' features working as originally intended - and also make the 'save' button operate as it should operate - by closing the shadowbox, and refreshing the page which triggers the 'item saved' text to pop!

 

It also looks like you can make it a bit more 'clean' to the end user by having the pop-up window close immediately (so they don't see a partial reload of the shadowbox before the main page refresh) - If you would like that to happen simply add one line of code to the form.php code above so it looks like this:

 

<?php if (JRequest::getInt('step')=='1') { ?>        <script language="javascript">        var XHRCheckin = new Ajax('index.php?option=com_k2&view=item&task=checkin&cid=<?php echo $this->row->id; ?>', {            method: 'get'        });        dummy = $time() + $random(0, 100);        XHRCheckin.request("t"+dummy);        parent.$('sbox-window').close();        window.parent.location.reload();            </script>        <?php    } ?>


All that code does is has the shadowbox close - and then triggers the page refresh after that.  This worked on my test sites/server - and worked in IE, Chrome, and Firefox - IMO - this is the cleanest way to achieve the desired end result so the user doesn't see some partial re-load of the form.

 

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

More
13 years 1 month ago #87332 by juju
Replied by juju on topic K2 Add new item window resize
I'll test this tomorrow, but THANKS A LOT !!! I never succeeded without your help !

Finally, it's you, a user, who resolved the problem, it will be great if a K2 developper would include this in the next version of K2...

 

Thanks again, I'll keep you informed.

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

More
13 years 1 month ago #87333 by Hanny
Replied by Hanny on topic K2 Add new item window resize
Thanks juju, lets just hope there's no more bugs in my code :-D  Please let me know if there are (as I am far from a programmer!)

 

Also, I'm going to work on including this into a 'template override', and I will try to post how I do that here in this thread so others may do the same.  Then you can update your K2 without having to worry about the core code overwriting the 'save' feature changes!

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

More
13 years 1 month ago #87334 by Simon Wells
Replied by Simon Wells on topic K2 Add new item window resize
Good work guys, I appreciate your work on this.

Simon

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

More
13 years 1 month ago #87335 by juju
Replied by juju on topic K2 Add new item window resize
I just test your second code, and I still have the lock problem... :/

 

Edit : With the two solutions you've proposed, I still have the lock problem, it's weird because I assume you've test on your website and you don't have problem no ?

 

Nevertheless, I do a very simple test :

 

I log on front-end with an account who have all rights in K2 (edit, publish...).

I log on backend with an admin account.

On the front end I add an article (I clicked on save button, it refreshing).

On back-end I see the article locked.

 

Sorry to bother you...

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

More
13 years 1 month ago #87336 by Hanny
Replied by Hanny on topic K2 Add new item window resize
Did you replace the original php code with the new stuff?

I did test it here, in each browser and it worked fine, so I think this may be more of a troubleshooting issue than something with the code (at least I hope).

 

Could you copy/paste the code you're using here (not the whole form.php - just the parts we edited)?

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


Powered by Kunena Forum