Sponsored Content
The Lounge What is on Your Mind? My Charts in the Prototype Vue.js UserCP Post 303031357 by nezabudka on Wednesday 27th of February 2019 01:27:34 AM
Old 02-27-2019
How about by swapping menu items in "User CP".
For example raise upper
"User CP Prototype" (it becomes convenient and popular. Honestly, I saw same only in the admin panels)
and lower down
"Edit Your Details", "Edit Options"
Or move some items from "User CP" to "User CP Prototype"?
Or plan to completely replace "User CP" with "User CP Prototype"?

Last edited by nezabudka; 02-27-2019 at 02:34 AM..
This User Gave Thanks to nezabudka For This Post:
 

10 More Discussions You Might Find Interesting

1. Web Development

Vue.js UserCP Mockup Version 0.20 - Badge Notifications

Vue.js UserCP Mockup Version 0.20 - Badge Notifications https://www.unix.com/cp/index.php#/dashboardIn this mockup release: Badge Notifications are working with live data: Upper Right (see image) Added Axios to Vue and changed large table updates to axios (ajax) Note: Will reformat... (2 Replies)
Discussion started by: Neo
2 Replies

2. Web Development

MySQL Query to Build Mockup Vue.js UserCP Timeline Page

Here is the query (and some sample results) I plan to use to build a new timeline page in the mockup vue.js usercp I am working on. When the postid is the same as lastpostid, this means the timeline entry will be - "{{Member}} Started Discussion {{Thread Title}} at {{date and time}}" and when... (4 Replies)
Discussion started by: Neo
4 Replies

3. Web Development

New Discussion Timeline in Vue.js UserCP Mockup

Well, thanks to the amazing power of Vue.js, we now have a new timeline in version 0.23 of the UserCP Mockup: Wow! I'm really impressed with Vue.js. https://www.unix.com/cp/index.php#/pages/timeline In this version: Created database, and PHP model for the remote AJAX (Axios) call to... (1 Reply)
Discussion started by: Neo
1 Replies

4. Web Development

New Badge Timeline in Vue.js UserCP Mockup

Continuing to think Vue.js is AWESOME, we now have a new badges timeline in version 0.26 of the UserCP Mockup: https://www.unix.com/cp/index.php#/pages/badges Changes: Added Mockup from Badges timeline. Changed notifications (upper right) to use v-for: bindings. Fixes minor vue routing... (0 Replies)
Discussion started by: Neo
0 Replies

5. What is on Your Mind?

Congrats to Nezabudka for her Formulator Badge (UserCP Prototype v0.40)

Please join me in thanking one of our most active new members, nezabudka, who suggested that we start using the new usercp prototype and change the menu items around, effectively "promoting" the new prototype CP. At first, I did not understand her suggestion, but after 'coming down" from days of... (1 Reply)
Discussion started by: Neo
1 Replies

6. What is on Your Mind?

UserCP Prototype v0.53 Quick Search in Navbar

FYI. In version 0.53 of the new UserCP I am working on, the top navbar search works; but I'm still displaying the results in the main forums. I in the future, I may being to change this to display the results in the new UserCP. https://www.unix.com/members/1-albums225-picture1118.png (2 Replies)
Discussion started by: Neo
2 Replies

7. Web Development

Simple Vue.js Component to Redirect to External Web Page Using Vue Router

Vue Router has some quirks and on of the quirks is that it is not reliable when adding external links using the vue-router library. After struggling with many solutions, I have found that creating a simple Vue.js component like this one seems to work the best (so far): Component Example: ... (0 Replies)
Discussion started by: Neo
0 Replies

8. What is on Your Mind?

Major Changes in New UserCP (v0.63) Prototype

Regarding the latest version of the UserCP prototype (version 0.63) I have made a lot of major changes, including Added a "Posts Timeline" table for the recent posts, complimenting the non-table version earlier, which has been moved off the main menu (link at the bottom of the table). Added a... (4 Replies)
Discussion started by: Neo
4 Replies

9. What is on Your Mind?

UserCP Screeching Frog 0.7446 Using Vue.js

Here is a status update on the new forum usercp. The current version of the new UserCP is Screeching Frog v0.7446. Most users will need to clear the files from your browser cache, quit and restart your browser to see the new version (check bottom of the page for version). Safari seems to... (9 Replies)
Discussion started by: Neo
9 Replies

10. What is on Your Mind?

Video Overview of the Vue.js UserCP @UNIX.com

Here is my second live video screencast (in my life, using Camtasia) with voice for the new usercp: Overview of the Vue.js UserCP @UNIX.com Shout outs to Don Cragun, Corona688, Rudi, Wolf, Made in Germany, stomp, Ravinder, Creative Tim, PubNub and others in the video. Thanks. If you are... (1 Reply)
Discussion started by: Neo
1 Replies
HTML::Prototype::Js(3pm)				User Contributed Perl Documentation				  HTML::Prototype::Js(3pm)

NAME
HTML::Prototype::Js - prototype library, embedded in perl SYNOPSIS
our $prototype = do { package HTML::Prototype::Js; local $/; <DATA> }; DESCRIPTION
This is the actual Prototype library embedded in a perl __DATA__ section, for easy inclusion in HTML::Prototype. NEW SYNTAX
The prototype library provides some functions and classes which effectively change the basic syntax of the JavaScript you write. $(element) This function takes an element / element list and gets all string elements using document.getElementbyId. This is probably one of the most common functions when using javascript for web development, so it will save you a lot of typing. Class This uses fucntion references to allow namespace-like Class structures in javascript. Object.extend Simple inheritance for javacsript. Will set all properties of the child in the parent. Function.bind Allow function refs to be full object method references, through the use of extend and apply Try.these Simple try/catch for a list of functions, will return the return value of the first that doesn't throw an exception. Array.push implement push for arrays. returns number of elements in result. Function.apply Call a function on a given object, using eval. JS OBJECTS
The Prototype library provides a number of classes you can use to improve interaction with the end user. Ajax Provides one useful function, getTransport. This function will return a XMLHttpRequest object suitable for your browser. Ajax.Base An abstract base class for the Ajax objects described below. Sets some common options for Ajax objects; method: http method, defaults to post. asynchronous: process in the background, true/false, defaults to true. parameters: extra parameters, defaults to blank. Ajax.Updater a subclass of Ajax.Base, this class uses Ajax.Request to populate a container in your web page. Takes container, url and Ajax.Base options as paramters. Ajax.Request This object represents a plain ajax request. It extends base to add a constructor, as well as some events to handle events. The constructor takes an url, as well as the options described in Ajax.Base. Currently handles the following events: 'Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete' Effect.Appear Takes an element, and makes that element appear through a fade. Effect.ContentZoom Takes an element, and zooms the content of that element. Effect.Fade Takes an element, and makes that element fade out and disappear. Effect.Highlight Takes an element, and does a highlight of that element. Effect.Puff Takes an element, and makes that element "blow up" and disappear. (As in disappear in a puff of smoke). Effect.Scale Takes an element, and a size, in percent, and scales that element to the given size. If it's a div, the initial size will have to be given in EM. No such restrictions for pictures. Effect.Squish Takes an element, and shrinks that element until it disappears. Element A collection of functions related to basic elements. takes one or more elements. toggle: Toggles the element display style. hide: Turns off the element's display style. show: Turns on the element's display style. remove: Delete this element from the DOM. getHeight: Get the element height. Also provides a convenience object, Toggle, with one method display which aliases to toggle, so you can call it as Toggle.display(element) Field Adds some useful functions to HTML Fields with several elements: clear: remove all content. focus: Give the element focus. present: returns true if all arguments are filled in, false otherwise. select(element): Select the given element in a form. activate(element): give the selected element focus, and select it. Form Some useful utilies for HTML Forms. all of these take a form element as sole argument. serialize: returns a URL serialized version of a given form. getElements: returns all elements in the form. disable: blurs and disables every element in the form. focusFirstElement: Give first element in the form focus. reset: reset all form elements. Form.Element Some useful objects for Form Field Elements. These take an element as the sole argument. serialize: url encode the element for use in a URI string. getValue: returns the value of the given element. Form.Element.Observer Form.Element.Serializers Serializers for various element types. Takes the input element as argument. input: determines the element type, and chooses the right serializer. inputSelector: serialize checkbox/radio. Form.Element.Observer Insertion This can be used in place of a innerHTML, to insert the content into the dom. Insertion.Before Puts content before a given dom node. Insertion.Top Puts content at the top of a given dom node. Insertion.Bottom Puts content at the bottom of a given dom node. Insertion.After Puts content after a given dom node. PeriodicalExecuter This object takes two parameters, a reference to a callback function, and a frequency in seconds. It will execute the callback every <frequency> second. SEE ALSO
HTML::Prototype, Catalyst::Plugin::Prototype <http://prototype.conio.net/> AUTHOR
Sebastian Riedel, "sri@oook.de" Marcus Ramberg, "mramberg@cpan.org" Built around Prototype by Sam Stephenson. Much code is ported from Ruby on Rails javascript helpers. LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as perl itself. perl v5.10.1 2009-12-02 HTML::Prototype::Js(3pm)
All times are GMT -4. The time now is 04:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy