sencha-architect

Extjs create a grid feature or grid plugin that sets a tooltip for each column in the grid

∥☆過路亽.° 提交于 2019-12-01 21:09:38
This question has the answer to adding the tooltip: Extjs4 set tooltip on each column hover in gridPanel I have a follow up question to the most upvoted answer to this question, which is modifying the renderer function to add the tool tip like below: { xtype : 'gridcolumn', dataIndex : 'status', text : 'Status', renderer : function(value, metadata) { metadata.tdAttr = 'data-qtip="' + value + '"'; return value; } } I want to have a grid plugin or feature which sets a custom tooltip using the above implementation. Question is how can I add my stuff but at the same time not take away a user

How to filter a store with multiple values at once?

▼魔方 西西 提交于 2019-12-01 20:41:35
问题 I have a Store attached to a grid with number of records. I have a combo box with mulitiSelect option. So whenever i select multiple values in the Combo box. the grid must be filtered with all the criteria provided. I can get the values from the combo box as comma separated values but unable to send them to store's filter config. Please Help! Thanks! 回答1: A bit cleaner: var store = grid.getStore(); var selectedItems = csvList.split(","); //your list of comma separated values store.clearFilter

Sencha Architect 3 does not use app.css

喜欢而已 提交于 2019-12-01 07:12:57
I am trying to add custom font icons to my sencha architect project, and remove unnecessary theme classes but it seems that Sencha Architect does not use the app.scss at all (located in the resources/sass folder of my project). The changes that I made are neither applied in architect nor when I start the app. app.scss $include-pictos-font: false; $include-default-icons: false; @import 'sencha-touch/default'; @import'sencha-touch/default/src/Class'; @include icon-font('CustomFont', inline-font-files( 'customFont/customFont.woff', woff, 'customFont/customFont.ttf', truetype, 'customFont

What is the expected collaboration workflow with Sencha Architect?

房东的猫 提交于 2019-11-29 12:36:34
问题 I started a trial of Sencha Architect, and the more I use it more questions come to my mind for its actual feasibility usage in a development environment, one of the bigger questions I have is In an environment that you can't edit the individual files in different editors, how can multiple people collaborate in developing different parts of a site, for example app/models|components|views/Model1.js <- In charge of developer one app/models|components|views/Model2.js <- In charge of developer