-
16 Nov 2008 1:13 AM #571
Uploader Panel in the Context Menu
Uploader Panel in the Context Menu
I am looking for detailed information on how to add a panel as a menu item, just like your context menu.
-
16 Nov 2008 2:48 AM #572
There is not other such information in addition to the source code. Read the source please, it is neither difficult nor tricky.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
16 Nov 2008 10:29 AM #573
Jozef, I just overlooked the FileTreeMenu.js file. Thank you. Yes it looks simple.
I am an Information Architect working to build a prototype of a design concept that will radically change the design of my company's ecommerce site, and adopting Ext JS components is a key to the success of the design concept. I have successfully sold Ext JS to other companies and now I am trying to sell Ext JS again by demonstrating my design concept. I am hopefully that my company will purchase a site license to employ Ext JS components.
Unfortunately, I do not have the software engineering expertise to implement my designs by myself, but I know enough Javascript to build prototypes.
As a professional user interface designer & information architect with an expertise in designing desktop and online applications, I want to tell you that I am impressed with Ext JS. Ext JS has developed components that embrace sound design and usability principles that successfully migrate desktop interactions to the web, often improving on the interaction design because of your innovations and the advantages that web technologies offer.
Best regards
-
16 Nov 2008 5:03 PM #574
Thank you and wishing you good luck with Ext.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
18 Nov 2008 3:12 AM #575
progress bar for uploadpanel
progress bar for uploadpanel
HiI've made progress indicator at http://filetree.extjs.eu a little bit more visible. It's moving background color (#e0e0e0) of file name being uploaded.
I have tried that one but progress bar is not working properly when "singleUpload: false"
Is there anything wrong in requestProgress function at following code
I get asynchronous response.
Code:if(this.singleUpload) { o.params[this.progressIdName] = this.progressId; o.params.APC_UPLOAD_PROGRESS = this.progressId; Ext.Ajax.request(o); } else { records = this.store.query('status', 1); records.each(function(r) { console.log(this.progressIdName+"-"+r.get('progressId')) o.params[this.progressIdName] = r.get('progressId'); o.params.APC_UPLOAD_PROGRESS = o.params[this.progressIdName]; o.record = r; (function() { Ext.Ajax.request(o); }).defer(250); }, this);Code:}
Can you please tell me what I need to change if I want to start second file upload when first uploading is done completely.
Thanks in advance......
-
18 Nov 2008 4:15 AM #576
Does the indicator work on demo page but not for your implementation? If that is the case, you also need to install uploadprogress PHP extension if you use php and write a script that delivers progress information.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
18 Nov 2008 4:44 AM #577
Uploadpanel - progress bar
Uploadpanel - progress bar
I have written the script which returns data like following
The script works fine when uploaded one file. But data return while uploading multiple files is inconsistentCode:{success: true,bytes_total: 12796650,bytes_uploaded: 5294400}
so progress bar also inconsistent.Can you tell me how can i change inthe code atso i can upload next file only after upload of first in finished.Code:records.each(this.uploadFile, this);
-
18 Nov 2008 11:23 AM #578
You should be able to achieve sequential upload when you set singleUpload:true. In this case all file input fields are contained in one form and this one form is submitted. The rest depends on server implementation.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
18 Nov 2008 2:17 PM #579
context menu
context menu
Is there an easy way to customize the context menu? I figure I can override the getContextMenu method and append my new menu item(s) but what if I wanted to change the order or add/remove other items?
Your suggestions would be greatly appreciated. Thank you
-
18 Nov 2008 5:36 PM #580
Just go ahead and override, extend or fully replace the provided context menu.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video


Reply With Quote