Tagged Questions
1
vote
0answers
25 views
Code review for javascript and sencha touch with XML
Hi could you please code review the following, my concern is XML parsing is hardcoded:
Ext.Ajax.request({
url: storageDataItem.contentlink,
success: function (response) {
...
2
votes
0answers
447 views
Ext JS: Avoid duplication
I have ext_scaffold (question.js). When I row click I get answers on this question, so
'rowselect': function(sm, row, rec) {
store = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
...
7
votes
1answer
1k views
ExtJS Grid Plugin - how to reduce amount of duplicate code
The code below is a plugin I wrote for Ext.grid.GridPanel, which basically allows you to have a bit more control over how rows are striped in the grid. By default you can only have every other row in ...