simjax-paging.js
223 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
Ext.Loader.setConfig({enabled: true});
Ext.Loader.setPath('Ext.ux', '../ux/');
Ext.require([
'Ext.ux.ajax.JsonSimlet',
'Ext.ux.ajax.SimManager'
]);
Ext.onReady(function(){
Ext.ux.ajax.SimManager.init({
delay: 300
}).register({'http://www.sencha.com/forum/topics-browse-remote.php': {
stype: 'json', // use JsonSimlet (stype is like xtype for components)
data: [
{
title:"XTemplate with in EditorGridPanel",
threadid:133690,
username:"kpr@emco",
userid:272497,
dateline:1305604761,
postid:602876,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305857807,
lastposter:"kpr@emco",
excerpt:"Hi , \n \nI have an EditiorGridPanel whose one column i am using XTemplate to render and another Column is Combo Box Field .\nWhen i render the EditorGri..."
},
{
title:"IFrame error "_flyweights is undefined"",
threadid:133571,
username:"Daz",
userid:52119,
dateline:1305533577,
postid:602456,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305857313,
lastposter:"Daz",
excerpt:"For Ext 3.3.0 using Firefox 4 & Firebug, the following error is often happening when our app loads:\n \"e._flyweights is undefined\".\n \n Yet, this ..."
},
{
title:"Status bar error with IFrames",
threadid:134120,
username:"Daz",
userid:52119,
dateline:1305857168,
postid:604220,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305857168,
lastposter:"Daz",
excerpt:"Ext version tested:\n\n Ext 3.3.3\n\nAdapter used:\next\n \ncss used:\ndefault ext-all.css\n \nBrowser versions tested against:\nFF4 (firebug 1.7.1 installed)\n \n..."
},
{
title:"hellllllllllllllp,why it doesn't fire cellclick event after I change the cell value??",
threadid:133827,
username:"aimer311",
userid:162000,
dateline:1305700219,
postid:603309,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305856996,
lastposter:"aimer311",
excerpt:"ok,I will discribe this problem as more detail as I can,I look into this problem for a whole day.\r\nI set clicksToEdit=1 to a EditorGridPanel,so when I..."
},
{
title:"Extjs 4.0 support for IE9",
threadid:122352,
username:"extdev22",
userid:48017,
dateline:1296097557,
postid:565503,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:30,
lastpost:1305841535,
lastposter:"edspencer",
excerpt:"Hi, does Extjs 4.0 will fully support IE9? in other words if application developed in Extjs 4.0 and tested using IE9 is there anything expected to be ..."
},
{
title:"Using XTemplate to send XML",
threadid:134102,
username:"cayenne_08",
userid:237393,
dateline:1305841170,
postid:604153,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305841170,
lastposter:"cayenne_08",
excerpt:"This is what I am trying to do to post custom XML on editor form submit:\r\n\r\n\n\r\n(function() {\r\n Q.dxi.QXmlWriter = Ext.extend(Ext.data.XmlWriter, ..."
},
{
title:"Open Source Development - The people you interact with....",
threadid:134093,
username:"watrboy00",
userid:9862,
dateline:1305837814,
postid:604114,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305837814,
lastposter:"watrboy00",
excerpt:"Wanted to share a good article related to open source development and the shades of people you might interact with...\r\n\r\nEnjoy!\r\n\r\nhttp:\/\/goo.gl\/BwDaF"
},
{
title:"What widgets are missing most in the ExtJs library?",
threadid:134091,
username:"Andrew.Golik",
userid:32056,
dateline:1305837033,
postid:604102,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305837033,
lastposter:"Andrew.Golik",
excerpt:"What are the most missed widgets in ExtJs library?\r\nI really like the ExtJs library but I feel like there is gap between jQuery and ExtJs libraries in..."
},
{
title:"What widgets are missing most in the ExtJs library?",
threadid:134090,
username:"Andrew.Golik",
userid:32056,
dateline:1305836975,
postid:604100,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305836975,
lastposter:"Andrew.Golik",
excerpt:"What are the most missed widgets in ExtJs library?\r\nI really like the ExtJs library but I feel like there is gap between jQuery and ExtJs libraries in..."
},
{
title:"What widgets are missing most in the ExtJs library?",
threadid:134089,
username:"Andrew.Golik",
userid:32056,
dateline:1305836900,
postid:604099,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305836900,
lastposter:"Andrew.Golik",
excerpt:"What are the most missed widgets in ExtJs library?\r\nI really like the ExtJs library but I feel like there is gap between jQuery and ExtJs libraries in..."
},
{
title:"GridPanel Scroll doesn't work",
threadid:134088,
username:"daniel_",
userid:268152,
dateline:1305836704,
postid:604097,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305836704,
lastposter:"daniel_",
excerpt:"hello\n\nAutoScroll doesn't work with the gridPanel. if i specify a specific height and the content is bigger i get just the name of the columns\n26148 (..."
},
{
title:"Expand child node in tree after context menu click",
threadid:134084,
username:"TheBigOnion",
userid:108877,
dateline:1305835440,
postid:604088,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305835440,
lastposter:"TheBigOnion",
excerpt:"Hello all,\n I am trying to expand a child node in a tree after I reload it. The only information I have when I click the context menu is the node url..."
},
{
title:"ItemSelector issue",
threadid:134083,
username:"yga",
userid:90363,
dateline:1305835064,
postid:604086,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305835064,
lastposter:"yga",
excerpt:"Selected item in left pane wont show correctly in rigth pane\n\nCODE:\nvar dataRecordCentroP = new Ext.data.Record.create([\n ..."
},
{
title:"Dynamically add item to viewport region",
threadid:134080,
username:"FoobarusMaximus",
userid:271630,
dateline:1305834734,
postid:604083,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305834734,
lastposter:"FoobarusMaximus",
excerpt:"Let's say I have a JS in one file that creates a `Viewport`:\n\n\n Ext.create('Ext.container.Viewport', {\n layout: 'border',\n items: [\n ..."
},
{
title:"Add Text to the current cursor-position in a textarea",
threadid:133836,
username:"vitalka",
userid:263964,
dateline:1305706310,
postid:603335,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305831679,
lastposter:"keckeroo",
excerpt:"Hi, I googled about hour and nothing... Please help me I have code:\n\n\n { \n fieldLabel : scaffoldPanel.labels['oki[tex..."
},
{
title:"Extending Panel which is built upon store ...",
threadid:134068,
username:"keckeroo",
userid:30160,
dateline:1305829513,
postid:604047,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305829513,
lastposter:"keckeroo",
excerpt:"I would like to 'build' a panel (extend) that has a store associated with it - I was wondering if anyone had any insight as to how to 'delay' the crea..."
},
{
title:"programming problem",
threadid:134050,
username:"flamant",
userid:165442,
dateline:1305823292,
postid:603981,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305827367,
lastposter:"flamant",
excerpt:"Hi,\n I am wondering if when we have config option property that has not a setter method we can change it dynamically.\n\nFor example ComboBox has a all..."
},
{
title:"Sencha web site extremely slow",
threadid:133003,
username:"cgi-bin",
userid:3273,
dateline:1305041059,
postid:600490,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:28,
lastpost:1305827236,
lastposter:"mberrie",
excerpt:"Ever since since the release of 4.0 the sencha web site has been getting slower and slower to respond. Today has been particularly bad, as the API doc..."
},
{
title:"Pivot table",
threadid:133872,
username:"christophe67",
userid:51617,
dateline:1305729765,
postid:603413,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305826171,
lastposter:"fay",
excerpt:"Hello,\n\nI need to build a pivot table, but the header and the left axis doesn't show.\nCan anybody help me, I don't what is wrong in my code.\n\n\n var..."
},
{
title:"Scroll bars in ext js tool tips",
threadid:133897,
username:"sanjay_1985",
userid:71157,
dateline:1305742780,
postid:603477,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305825686,
lastposter:"friend",
excerpt:"Hi,\nCan anyone tell me how to bring scroll bars in tool tips.We have huge contents to be displayed in tool tip.\n \nThanks,\nSanjay"
},
{
title:"POSTING XML sub-class",
threadid:134057,
username:"cayenne_08",
userid:237393,
dateline:1305825617,
postid:604009,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305825617,
lastposter:"cayenne_08",
excerpt:"We need a way to post xml with different elements to the server from a single form.\r\n\r\nSo for instance, we want to use the same form to POST something..."
},
{
title:"Help POST parameter from Ext.form to PHP",
threadid:134049,
username:"Gusti",
userid:273373,
dateline:1305823237,
postid:603980,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305825489,
lastposter:"Gusti",
excerpt:"Hi all.. I'm new to ExtJS, and currently i'm using Ext JS 3.0.\nI'm using Ext.chart.LineChart to show graph data from date range.\nThis is my graph :\n26..."
},
{
title:"Problem for rendering a filter list in context menu",
threadid:133923,
username:"mfrancey",
userid:23964,
dateline:1305754701,
postid:603551,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305825106,
lastposter:"friend",
excerpt:"Hi,\n\n\n\n I have a grid in a viewport.\n The viewport is rendered into body\n\n... \nrenderTo:Ext.getBody()\n...\n In one of my grid column, I use a filter (t..."
},
{
title:"DisplayField format problem",
threadid:133999,
username:"veerai2i",
userid:103140,
dateline:1305804094,
postid:603794,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305824386,
lastposter:"friend",
excerpt:"Hi ,\n\ni am adding displayfield and its coming nicely, but the original alignment is missing, the same thing in textarea working fine.\nIn displayField ..."
},
{
title:"the combo fire the trigger event and the change event when I fire a keymap event",
threadid:134035,
username:"flamant",
userid:165442,
dateline:1305816817,
postid:603915,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305824146,
lastposter:"friend",
excerpt:"Hi,\nI put a keymap on a combo :\n\n\n\n new Ext.KeyMap(field.getId(),\n [{\n key: 'a',\n ctrl: true,\n ..."
},
{
title:"handle ext.window colse(x) button",
threadid:133834,
username:"rakesh_sencha",
userid:272869,
dateline:1305704878,
postid:603332,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305823458,
lastposter:"friend",
excerpt:"HI\r\n\r\ni want to handle the Ext.window Close button i.e; 'x' button on top right\r\n\r\nas to block the user to enter the fields compulsorily..\r\n\r\nplease h..."
},
{
title:"Bug in new Neptune theme",
threadid:133884,
username:"alexmace",
userid:243223,
dateline:1305739021,
postid:603452,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:15,
lastpost:1305822785,
lastposter:"estesbubba",
excerpt:"Well I'm not sure not exactly a bug, the idea is the Neptune theme is missing and nobody seems to be able to give a proper estimate on when will it be..."
},
{
title:"Could you suggest a nice book for the foundations of a web application?",
threadid:133014,
username:"bardaste",
userid:210341,
dateline:1305045852,
postid:600523,
forumtitle:"Community Discussion",
forumid:68,
replycount:3,
lastpost:1305822288,
lastposter:"jasonroberts",
excerpt:"I come from the win32 client\/server world, I would like to write applicatinos that us ExtJS in the frontend, but I feel I miss the basics of what a we..."
},
{
title:"3.3.3 is last ?",
threadid:133985,
username:"wki01",
userid:53225,
dateline:1305798489,
postid:603753,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1305820175,
lastposter:"tryanDLS",
excerpt:"Version 3.3.3 is the latest branch 3 or there will be a 3.3.4?\n thanks"
},
{
title:"ComboBox dropdown list\/normal text field display inconsistency",
threadid:118209,
username:"hevole",
userid:74502,
dateline:1291916183,
postid:549067,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305818918,
lastposter:"arnaudmorvan",
excerpt:"Hi,\n\n I have a combobox whose store might need to display values that contain special html characters, like \"\". \n when i do nothing to such spe..."
},
{
title:"Linktausch",
threadid:134040,
username:"macthomas",
userid:273357,
dateline:1305818469,
postid:603930,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305818469,
lastposter:"macthomas",
excerpt:"A Linktausch (http:\/\/linktausch-boerse.de\/) is a confederation of \nwebsites that operates similarly to a web ring. Webmasters register their \nweb site..."
},
{
title:"API Style Guide",
threadid:134034,
username:"bodyboarder20",
userid:75267,
dateline:1305816485,
postid:603907,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305816485,
lastposter:"bodyboarder20",
excerpt:"Hey guys,\n \nSorry if this has already been covered somewhere... but I checked and only found statements that \"it would be released soon.\" Just wonder..."
},
{
title:"Call custom editor or renderer fcn from JSON object frm server using metachange event",
threadid:125160,
username:"strimp099",
userid:93310,
dateline:1298663182,
postid:575173,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305815984,
lastposter:"tdikarim",
excerpt:"Greetings,\n \nThis is a question that has now prevented progress twice so I come to you for help.\n \nI am using a jsonReader in a GroupingStore with a c..."
},
{
title:"'Show Recent Threads' missing from main forum page",
threadid:133974,
username:"deccard",
userid:23504,
dateline:1305793337,
postid:603713,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1305815714,
lastposter:"Jamie Avins",
excerpt:"I use this all the time to see recent posts since my last visit - any chance of it returning?"
},
{
title:"Forum searching has been re-enabled",
threadid:133784,
username:"rich02818",
userid:33339,
dateline:1305656036,
postid:603130,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:3,
lastpost:1305815631,
lastposter:"Jamie Avins",
excerpt:"I'd imagine that this is not a surprise to Sencha, but forum searching is currently disabled...."
},
{
title:"Clicking column header doesn't show options properly",
threadid:133922,
username:"sandiptikole",
userid:272306,
dateline:1305752533,
postid:603540,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305814821,
lastposter:"friend",
excerpt:"I am using Gridpanel. When I click on one of the column header, it is not not showing the options like Sort Ascending, sort Descending and Columns pro..."
},
{
title:"Datefield in IE is not showing properly",
threadid:133949,
username:"bradelsky",
userid:265767,
dateline:1305783430,
postid:603639,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305814678,
lastposter:"friend",
excerpt:"I am using extjs 3.3.2 and the datefield is not showing properly. I attached an image of it. \r\nheres my code: \r\n\r\n{\r\n xtype ..."
},
{
title:"Object not destroyed at 'closeAction:destroy'",
threadid:134022,
username:"promitt",
userid:235706,
dateline:1305813385,
postid:603870,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305813385,
lastposter:"promitt",
excerpt:"Hi everybody.\r\n\r\nI've got a window and a grid, both of them are separate objects made with Ext Designer. I render the grid to the window using the fol..."
},
{
title:"prevent combobox from deleting the value",
threadid:134018,
username:"Bogdan0x400",
userid:220796,
dateline:1305811858,
postid:603852,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305813229,
lastposter:"Bogdan0x400",
excerpt:"The combobox has some items defined. So when I try to type in the combobox my custom value that is not present in the items list, the combobox text ge..."
},
{
title:"Sencha Platform denormalized Data patch",
threadid:127547,
username:"Munter",
userid:102981,
dateline:1300722349,
postid:582853,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:22,
lastpost:1305813146,
lastposter:"Munter",
excerpt:"This is a patch proposal for the data package of Sencha Platform.\r\n\r\nThe patch extends the Data package to be able to output a Model and its associati..."
},
{
title:"gnymb.us web IDE project seeking another developer",
threadid:133860,
username:"chaddjohnson",
userid:112098,
dateline:1305727624,
postid:603393,
forumtitle:"Community Discussion",
forumid:68,
replycount:2,
lastpost:1305812720,
lastposter:"chaddjohnson",
excerpt:"Greetings!\n\nMy name is Chad Johnson, and I am the lead developer heading development of the web IDE software at http:\/\/gnymb.us.\n\nWe are looking for a..."
},
{
title:"combox editable: false backspace in chrome crash",
threadid:133906,
username:"sentrypowermanager",
userid:124155,
dateline:1305746948,
postid:603509,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:2,
lastpost:1305811460,
lastposter:"sentrypowermanager",
excerpt:"Combobox will crash in Chrome if set option editable: false, select a item, highlight selected item, then hit Backspace from keyboard. See attached Im..."
},
{
title:"Grid: CheckboxSelectionModel incorrect working with enableDragDrop in true",
threadid:131546,
username:"ybyk",
userid:247641,
dateline:1303915398,
postid:595466,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:1,
lastpost:1305811326,
lastposter:"tobiu",
excerpt:"ExtJs 3.3.1:\n\nIf I set enableDragDrop to true with checkbox selection model in grid then I can't check\/uncheck column checkbox but when I select row a..."
},
{
title:"[3.3.0] Ext.grid.GridPanel -> enableDragDrop : true & CheckboxSelectionModel",
threadid:123453,
username:"tobiu",
userid:4613,
dateline:1297249415,
postid:569337,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:3,
lastpost:1305810976,
lastposter:"tobiu",
excerpt:"hi team,\r\n\r\ni just tried to combine a GridPanel with CheckboxSelectionModel and enableDragDrop and noticed, that nothing happens when you click on a c..."
},
{
title:"ExtJS on Linux browsers",
threadid:133965,
username:"Qtx",
userid:39014,
dateline:1305790120,
postid:603686,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1305808986,
lastposter:"scottmartin",
excerpt:"I read that some features of ExtJS do not work under Linux browsers like FireFox, Chrome or Opera. I cannot now find the topics because the search is ..."
},
{
title:"Looking For Contract\/Freelance Programmer",
threadid:134006,
username:"stylish stella",
userid:273284,
dateline:1305808973,
postid:603821,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305808973,
lastposter:"stylish stella",
excerpt:"Street fashion is a term used to describe fashion that is considered to have emerged not from studios, but from the grassroots. Street fashion is gene..."
},
{
title:"Combo boxes just wont render :''('",
threadid:133970,
username:"desouza.trevor",
userid:134274,
dateline:1305792247,
postid:603701,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305803740,
lastposter:"desouza.trevor",
excerpt:"Hi Everyone,\n\nI hope someone can help me with this, i've literally tried everything including pulling my hair out.\n\nThe code is below as well as the j..."
},
{
title:"Extjs jobs",
threadid:133991,
username:"paulypaul",
userid:76664,
dateline:1305801142,
postid:603769,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1305801585,
lastposter:"tobiu",
excerpt:"My company are looking for more Extjs programmers. Where would be the best place to post the job? Are there any pages on the Sencha website to do such..."
},
{
title:"Meetup Directory: tell us about your groups!",
threadid:121530,
username:"jamesgpearce",
userid:157643,
dateline:1295299290,
postid:562104,
forumtitle:"Community Discussion",
forumid:68,
replycount:45,
lastpost:1305798767,
lastposter:"tobiu",
excerpt:"Hello Everyone\r\n\r\nWe are creating a directory of Sencha and Ext JS meetups and local user groups from around the world.\r\n\r\nDo you organize one? Or are..."
},
{
title:"Ext JS & Sencha Touch meetup in Munich, Germany",
threadid:129537,
username:"tobiu",
userid:4613,
dateline:1302251215,
postid:589043,
forumtitle:"Community Discussion",
forumid:68,
replycount:5,
lastpost:1305798712,
lastposter:"tobiu",
excerpt:"hi community,\r\n\r\nsince we now have an ext js meetup in frankfurt and hamburg, i would like to start a meetup in munich as well on a regular basis.\r\n\r\nÉ"
},
{
title:"Ext JS 3.x RESTful Grid doesn't get updated on fast machine",
threadid:133979,
username:"sushant.jain",
userid:264577,
dateline:1305795545,
postid:603730,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305795545,
lastposter:"sushant.jain",
excerpt:"Hi,\n\nOn\n\nMac i7 Processor with 8 GB of RAM,\n\nRESTful Grid didn't get updated properly.\n\nThe response from a GET request had multiple records, but onl..."
},
{
title:"bubble event on sub-menus broken in 3.3.3",
threadid:133847,
username:"alixon",
userid:271784,
dateline:1305711612,
postid:603370,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:3,
lastpost:1305792913,
lastposter:"jsakalos",
excerpt:"I have installed Ext 3.3.3 from svn and found the event from sub-menus does not bubble. It worked perfectly in 3.3.1\n\nfix \/ workaround would be highly..."
},
{
title:"Sencha should have a bug tracking system?!",
threadid:133704,
username:"pbartels",
userid:3013,
dateline:1305614751,
postid:602907,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:5,
lastpost:1305788894,
lastposter:"danguba",
excerpt:"Currently, it's very difficult to see a list of bugs in the Ext forums and their current status. I see the Ext 4 forum has got a lot of threads and it..."
},
{
title:"Change style of Mesagebox's button",
threadid:132184,
username:"varunach",
userid:218946,
dateline:1304415400,
postid:597645,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305787359,
lastposter:"varunach",
excerpt:"Hi,\r\n\r\nIs there a way in which I can change the styling of a Message box's buttons? Example, place a icon, increase site etc.. ?\r\n\r\nThanks."
},
{
title:"End Anxiety Disorder",
threadid:133952,
username:"umme",
userid:273122,
dateline:1305785630,
postid:603649,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305785630,
lastposter:"umme",
excerpt:"A Closer Look at SSRIs\nWhen you talk about Anxiety Attacks, you will often hear or read about the possible anxiety attacks medication that people can ..."
},
{
title:"PagingToolbar in gridPanel getStore()",
threadid:133590,
username:"trasherdk",
userid:57167,
dateline:1305541920,
postid:602518,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305778353,
lastposter:"trasherdk",
excerpt:"Having a PagingToolbar on a gridPanel present me with following challenge.\r\n\r\nWhen running, FireBug console, this sequence of commands:\r\n\n\r\n gp = Ext..."
},
{
title:"Extjs 3.3.1 not working in IE 9",
threadid:131293,
username:"bradelsky",
userid:265767,
dateline:1303782953,
postid:594672,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:15,
lastpost:1305773498,
lastposter:"bradelsky",
excerpt:"I've created a web application and tested it in IE 9. The log in window works perfectly but after logging in the other components won't show, it does ..."
},
{
title:"Can the Store's "read" event be safely deprecated yet?",
threadid:133925,
username:"azuroff",
userid:62085,
dateline:1305757967,
postid:603561,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305757967,
lastposter:"azuroff",
excerpt:"Found this little tidbit while poking around the source for Ext.data.Store -\n\n\n\/\/TODO: deprecate this event, it should always have been 'load' instead..."
},
{
title:"Forum and Website Performance",
threadid:133837,
username:"lukefowell89",
userid:201014,
dateline:1305706916,
postid:603341,
forumtitle:"Community Discussion",
forumid:68,
replycount:4,
lastpost:1305753875,
lastposter:"tryanDLS",
excerpt:"I'm not sure if its just me, but repeatedly over the last couple of weeks, myself and my colleagues have been having specific issues with the forum an..."
},
{
title:"Where is ExtJS 3 ?",
threadid:131668,
username:"albeva",
userid:1602,
dateline:1303982180,
postid:595884,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:12,
lastpost:1305743759,
lastposter:"akrherz",
excerpt:"Am I blind or something but I can't find a link to download ExtJS 3 ..."
},
{
title:"Pivot table",
threadid:133871,
username:"christophe67",
userid:51617,
dateline:1305729385,
postid:603412,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305729385,
lastposter:"christophe67",
excerpt:"Hello,\r\n\r\nI need to build a pivot table, but the header and the left axis doesn't show.\r\nCan anybody help me, I don't what is wrong in my code.\r\n\r\n\n ..."
},
{
title:"IE 9 update",
threadid:133848,
username:"Hakkert",
userid:152059,
dateline:1305711779,
postid:603371,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305728905,
lastposter:"mfrancey",
excerpt:"Is the update for IE9 available and if so where can i download it. I searched the site\/forum but could only find a post saying that sencha was on top ..."
},
{
title:"How to set the menu style in a grid",
threadid:133866,
username:"mfrancey",
userid:23964,
dateline:1305728712,
postid:603406,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305728712,
lastposter:"mfrancey",
excerpt:"Hi!\n\nI'd like to set a maximum height (or better a bottom-margin) of the context menus (header's menus) in a grid.\n\nI tried to set a new css rule like..."
},
{
title:"How to render a component to a new browser window.",
threadid:133865,
username:"TotoTitus",
userid:168377,
dateline:1305728705,
postid:603405,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305728705,
lastposter:"TotoTitus",
excerpt:"Hello everyone,\n\nI am working in a complex interface, with tabpanels, in which each panel can have inner tabpanels, which themselves...you get the poi..."
},
{
title:"[3.3.1] IE: Combobox in toolbar doesn't get "real" focus after menu autocloses",
threadid:133861,
username:"Moinois",
userid:209759,
dateline:1305727838,
postid:603396,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305727838,
lastposter:"Moinois",
excerpt:"Hi,\r\n\r\nI think that I might have stumbled on a bug.\r\n\r\nExt version: 3.3.1\r\n\r\nBrowser: IE 8.0.7600.16385\r\n\r\nDescription: When you have a menu visible i..."
},
{
title:"Pivot table",
threadid:133857,
username:"christophe67",
userid:51617,
dateline:1305716154,
postid:603389,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305716154,
lastposter:"christophe67",
excerpt:"Hello,\r\n\r\nI try to build a pivot table but I can not show the top header and left header.\r\nCan anybody help mec:\\pivot.png"
},
{
title:"JsDuck - an alternative documentation generator for ExtJS",
threadid:119667,
username:"renku",
userid:62233,
dateline:1293483208,
postid:554902,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:39,
lastpost:1305709324,
lastposter:"renku",
excerpt:"Being dissatisfied with ext-doc (http:\/\/ext-doc.org\/) I wrote an alternative documentation generator for ExtJS.\r\n\r\n* JsDuck at Github (https:\/\/github...."
},
{
title:"Hiring Senior\/Expert Javsscript\/ExtJS Developer",
threadid:133813,
username:"zodeus",
userid:105773,
dateline:1305675788,
postid:603269,
forumtitle:"Community Discussion",
forumid:68,
replycount:1,
lastpost:1305704604,
lastposter:"tobiu",
excerpt:"Looking to hire long term expert Javascript developer to work locally for our Vancouver based software company.\r\n\r\nPM me for details if you're interes..."
},
{
title:"How do you insert Ext.Panel into DOM?",
threadid:133776,
username:"IvanJ",
userid:96055,
dateline:1305653649,
postid:603115,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1305692000,
lastposter:"kembuco",
excerpt:"When I try something like\r\n\r\nExt.getBody().insertFirst({\r\n xtype: 'panel'\r\n , title: 'test'\r\n , html: 'aaaaaaa'\r\n});\r\n\r\n... all I see is \"aaa..."
},
{
title:"GridPanel - Posting a Value to the Proxy",
threadid:133615,
username:"djdevz",
userid:261088,
dateline:1305553258,
postid:602589,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1305690741,
lastposter:"kembuco",
excerpt:"Hi, I will try and explain my problem as best as possible, so here goes...\n\nInside my js file to create and config the grid, I have the following prox..."
},
{
title:"islamic calendar (Hijri)",
threadid:133814,
username:"abdelaat",
userid:120756,
dateline:1305676920,
postid:603270,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305676920,
lastposter:"abdelaat",
excerpt:"Hi all,\n\nI have a need in my extjs application to use an islamic (hijri) multimonth calendar like this one :\nhttp:\/\/www.lubber.de\/extjs\/datepickerplus..."
},
{
title:"When it goes on with EXTJS 4.0.1?",
threadid:133051,
username:"harrydeluxe",
userid:8007,
dateline:1305077601,
postid:600685,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:11,
lastpost:1305663245,
lastposter:"edspencer",
excerpt:"The last release is already two weeks old.\r\nMany thanks."
},
{
title:"preview button",
threadid:126738,
username:"glarotech",
userid:248537,
dateline:1300110803,
postid:580238,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:9,
lastpost:1305662205,
lastposter:"jayrobinson",
excerpt:"the \"Preview Post\" button isn't working..."
},
{
title:"HTML5 and Ext4: Using HTML5 DOCTYPE and Modernizr",
threadid:133419,
username:"FoobarusMaximus",
userid:271630,
dateline:1305315985,
postid:601954,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1305659518,
lastposter:"edspencer",
excerpt:"I'll be using Ext4 in a new ASP.NET MVC 3 project. The project will need to support IE 7+, Firefox 3.6+, and current Chrome\/Safari.\r\n\r\n1) I'd like to ..."
},
{
title:"Is sencha.com getting DDoS'd or something?",
threadid:133777,
username:"IvanJ",
userid:96055,
dateline:1305653794,
postid:603117,
forumtitle:"Community Discussion",
forumid:68,
replycount:1,
lastpost:1305655896,
lastposter:"tryanDLS",
excerpt:"Seems like forum is slow & half the time I get \"error 504\" or something.\r\n\r\n\r\nAm I the only one?"
},
{
title:"ItemSelector pagination extension",
threadid:133782,
username:"superbatman",
userid:138579,
dateline:1305655804,
postid:603126,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305655804,
lastposter:"superbatman",
excerpt:"Hi guys,\r\nIs there an extension for ItemSelector objects with pagination?\r\nWe retrieve a lot of objects (+10000) from the DB and want to efficiently s..."
},
{
title:"GridSummary for a subset of rows?",
threadid:133779,
username:"JKeane",
userid:20256,
dateline:1305654490,
postid:603120,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305654490,
lastposter:"JKeane",
excerpt:"While I know it's the intent of the GridSummary plugin to summarize the entire grid, the current grid I'm building needs only a handful (sub-summaries..."
},
{
title:"GridSummary for a subset of rows? (duplicate; mods, please delete)",
threadid:133778,
username:"JKeane",
userid:20256,
dateline:1305654086,
postid:603119,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305654086,
lastposter:"JKeane",
excerpt:"(duplicate due to server error. mods, please delete this one. thanks.)"
},
{
title:"Support",
threadid:133735,
username:"henryivy",
userid:60000,
dateline:1305633289,
postid:603004,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305653056,
lastposter:"tryanDLS",
excerpt:"Hi All,\nNow the Extjs 4 has been released in to the market.\nSo,how long i can expect support from sencha for Extjs 3.x version?\n\nThanks"
},
{
title:"Adobe Vs Sencha",
threadid:133049,
username:"dawesi",
userid:1596,
dateline:1305073078,
postid:600674,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:3,
lastpost:1305646152,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Just wondering if Sencha has created an enemy in Adobe as they seem to be completely turning from Sencha in the entire product line, even going as far..."
},
{
title:"Too much data - grid causes "unresponsive script" warning",
threadid:133765,
username:"liammkelly",
userid:231421,
dateline:1305645633,
postid:603089,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305645633,
lastposter:"liammkelly",
excerpt:"Hey all, \r\n\r\nI am in the midst of replacing a terrible shopping site with a pimped out Ext version, but I have one issue that is causing users to ques..."
},
{
title:"Display Message on Toolbar",
threadid:133679,
username:"haden",
userid:261592,
dateline:1305585739,
postid:602832,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305643571,
lastposter:"haden",
excerpt:"I'm trying to use a button on my bottom toolbar to show a status message. I can alert the status_disp.text value, but when I try to set it, I get a 's..."
},
{
title:"immigration Australia",
threadid:133756,
username:"robinkhan",
userid:272631,
dateline:1305641827,
postid:603053,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305641827,
lastposter:"robinkhan",
excerpt:"immigrationserviceaustralia.com\r\nclientsWelcome To Immigration Services Australia \r\n equally. We provide the most comprehensive visa and immigration a..."
},
{
title:"ComboBox valueField problem",
threadid:133724,
username:"Nexus3",
userid:188946,
dateline:1305626383,
postid:602976,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305637425,
lastposter:"Nexus3",
excerpt:"Hi, i\u00b4ve a problem with the valueField of a combo.\n\nI\u00b4m working over ExtJs example Dynamic Form interacting whith an embedded Grid. When i select a..."
},
{
title:"Problem with TextArea!",
threadid:133727,
username:"vitalka",
userid:263964,
dateline:1305628929,
postid:602982,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305628929,
lastposter:"vitalka",
excerpt:"a"
},
{
title:"Combo value problem",
threadid:133722,
username:"Nexus3",
userid:188946,
dateline:1305626050,
postid:602974,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305626050,
lastposter:"Nexus3",
excerpt:"deleted"
},
{
title:"?????Ext.form.RichEditor, ???????",
threadid:124607,
username:"anya",
userid:84504,
dateline:1298267422,
postid:573160,
forumtitle:"Ext 3.x: User Extensions and Plugins",
forumid:42,
replycount:10,
lastpost:1305625881,
lastposter:"wmzsl",
excerpt:"Ext.form.RichEditor ??Office 2010???? ??????????? ?????? ??????? ?????????..."
},
{
title:"Uncaught TypeError: Cannot call method 'substring' of undefined ext-all-debug.js:8196",
threadid:133721,
username:"peteedley",
userid:272577,
dateline:1305625332,
postid:602971,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305625332,
lastposter:"peteedley",
excerpt:"This error message is displayed in Chrome 11 running on ubuntu but not in FF\r\n\r\nthe full message is as follows\r\n\r\n\nUncaught TypeError: Cannot call met..."
},
{
title:"Draw layout",
threadid:133717,
username:"sdo044",
userid:135834,
dateline:1305622489,
postid:602957,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305622489,
lastposter:"sdo044",
excerpt:"Can anyone help how to draw the attached layour in extjs"
},
{
title:""panel title" text to hyperlink",
threadid:133709,
username:"vajrakumar.d",
userid:189896,
dateline:1305617009,
postid:602925,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305620691,
lastposter:"grgur",
excerpt:"Hello,\r\n\r\nI want to convert my panel title to a hyper-link on clicking of it I want to open a new window"
},
{
title:"Ext JS 5.0",
threadid:131315,
username:"tobiu",
userid:4613,
dateline:1303805601,
postid:594726,
forumtitle:"Community Discussion",
forumid:68,
replycount:12,
lastpost:1305618737,
lastposter:"Nickname",
excerpt:"good morning everyone,\r\n\r\ni just found a funny description in the api docs:\r\nhttp:\/\/dev.sencha.com\/deploy\/ext-4.0-beta3\/docs\/api\/Ext.data.reader.Json...."
},
{
title:"Mask a panel with a custom Ext component",
threadid:133703,
username:"spiderweb",
userid:71402,
dateline:1305614000,
postid:602903,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305614000,
lastposter:"spiderweb",
excerpt:"Hello,\n\nHow can I mask a panel with a custom Ext component? Specifically, I want to add a progress bar and some actions in the loadmask element while ..."
},
{
title:"[Solved - Ext 3.3.1]HtmlEditor memory leak",
threadid:133689,
username:"bluethinking",
userid:3015,
dateline:1305602806,
postid:602873,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305602806,
lastposter:"bluethinking",
excerpt:"error message:\r\n\n\r\nUncaught TypeError: Cannot read property 'document' of undefined ext-all-debug.js:43894\r\nExt.form.HtmlEditor.Ext.extend.getDoc ..."
},
{
title:"Date Fields render to Dynamic span ids.",
threadid:133605,
username:"50120C1288",
userid:267359,
dateline:1305549642,
postid:602558,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305584716,
lastposter:"kembuco",
excerpt:"Hi All,\n \nMy Requirement is i have to create a page which contains many Date Fields.For this\n\n\n\n\n \n \n\n \nNow I am using Jquery to fetch the span ids. l..."
},
{
title:"ECMAScript 5 functions in Ext",
threadid:133643,
username:"FoobarusMaximus",
userid:271630,
dateline:1305567041,
postid:602692,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1305584093,
lastposter:"FoobarusMaximus",
excerpt:"Does Ext 4 create missing ECMAScript 5 functions for older browsers, similar to Underscore or an ES5 shim does?\r\n\r\nFor example, ECMAScript 5 has Array..."
},
{
title:"Styling Question",
threadid:133424,
username:"haden",
userid:261592,
dateline:1305321245,
postid:601976,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305583587,
lastposter:"haden",
excerpt:"I want to style certain elements in my forms. For now, my needs are simple: center the text of titlebars; add more margin to the left edge of textFi..."
},
{
title:"How to get selected row renderer component object in GridPanel...",
threadid:133439,
username:"sureace",
userid:77643,
dateline:1305353180,
postid:602046,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305577185,
lastposter:"grgur",
excerpt:"Hi all,\n I am new to Extjs. I am haiving a requirement to display a grid records with radio button selection model and row with check box..."
},
{
title:"How to alert message from taskbar like bubble?",
threadid:133575,
username:"livinglegends",
userid:51580,
dateline:1305534286,
postid:602463,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305576605,
lastposter:"grgur",
excerpt:"Hi,\n\nI want to pop up alert message from taskbar (from area where date and time displays in window : bottom right corner). \n\ne.g.: If yahoo messenger ..."
},
{
title:"2 Grids in the same FormPanel",
threadid:133644,
username:"David Petretta",
userid:272351,
dateline:1305567358,
postid:602696,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305574191,
lastposter:"David Petretta",
excerpt:"Hi,\r\n\r\nI have a form with 2 grids side by side. With Chrome and FF, everything is working.\r\n\r\nWith IE9 and Opera 11, the second grid get a size of 0 a..."
},
{
title:"How to dynamically add checkboxgroup in a form panel",
threadid:133574,
username:"nill_tuhin",
userid:186701,
dateline:1305534268,
postid:602462,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305574140,
lastposter:"grgur",
excerpt:"Hi,\nI am so tired to dynamically add checkboxgroup in formpanel.\nPlease help me.\n\n\nThanks\nTuhin"
},
{
title:"Img causes IE to crash",
threadid:133657,
username:"barryglenn",
userid:383,
dateline:1305574037,
postid:602748,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305574037,
lastposter:"barryglenn",
excerpt:"I have an img tag in the html property of a toolbar item. It is causing IE9 to crash on this.dom.innerHtml = html. I see a work around for this in E..."
},
{
title:"PivotGrid with Multiple Measures.",
threadid:133640,
username:"scottclark05",
userid:272339,
dateline:1305563872,
postid:602669,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305563872,
lastposter:"scottclark05",
excerpt:"I found a thread started in 09 that never seems to be resolved.\n\nI would like to build a pivot grid with multiple measures as side by side cells. It ..."
},
{
title:"TreeGrid Hide columns and making it stateful",
threadid:133629,
username:"mohan_b",
userid:113313,
dateline:1305561980,
postid:602646,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305561980,
lastposter:"mohan_b",
excerpt:"I am trying to hide the columns by way of configuration\n\nI have been unsuccessful by using hidden: true\n\nAlso, the columns are not stateful in nature ..."
},
{
title:"Combo box not loading",
threadid:133591,
username:"vivekh",
userid:250827,
dateline:1305542696,
postid:602521,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305549847,
lastposter:"vivekh",
excerpt:"I'm trying to load a combo box by fetching data from database. And it is not loading.\n\nHere's the php code:\n\nfunction rcities(){\n $rowresult = ..."
},
{
title:"SenchaCon 2011",
threadid:130756,
username:"mw-flow",
userid:21131,
dateline:1303212527,
postid:592870,
forumtitle:"Community Discussion",
forumid:68,
replycount:10,
lastpost:1305549611,
lastposter:"andreacammarata",
excerpt:"Dear all,\r\n\r\nlast year's SenchaCon was a fantastic event, and I can hardly wait to see the announcement for the 2011 Sencha Conference annoucement. Af..."
},
{
title:"Combobox incorrectly works with forceSelection: true (typeAhead is turned on)",
threadid:133600,
username:"Cruel",
userid:256146,
dateline:1305547840,
postid:602545,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305547840,
lastposter:"Cruel",
excerpt:"So, in short: app uses grid, with comboboxes being pulled by a JSONstore:\n\n\nfunction generateEnumComboStore(enum) {\n return new Ext.data.JsonStore(..."
},
{
title:"Editable List",
threadid:133598,
username:"albertostellpflug",
userid:265852,
dateline:1305546479,
postid:602538,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:0,
lastpost:1305546479,
lastposter:"albertostellpflug",
excerpt:"Hello,\n\nI have one list on my page and one edit button in top toolbar....\n\nNow what I Want to do is when I click on edit button I want to show delete ..."
},
{
title:"Saki's Upload Panel not doing POST",
threadid:133594,
username:"incanus",
userid:236792,
dateline:1305542884,
postid:602526,
forumtitle:"Ext 3.x: User Extensions and Plugins",
forumid:42,
replycount:1,
lastpost:1305546292,
lastposter:"incanus",
excerpt:"Hi,\n i'm trying to use a UploadPanel to upload files, but it is not sending any post parameters. Either the baseParams not the file is being sent. I'm..."
},
{
title:"what is the difference in Ext js 2.1 and 3.3.1 attached example.",
threadid:133597,
username:"pitchaiah",
userid:267485,
dateline:1305544441,
postid:602532,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305544441,
lastposter:"pitchaiah",
excerpt:"Hi,\nI am new for Ext JS. I have a requirement to create tree panel. I am having extJS 2, 3 version examples. But I am facing the some problems on Tr..."
},
{
title:"Extjs layouts: how to order?",
threadid:133519,
username:"lvil",
userid:219098,
dateline:1305485330,
postid:602319,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305541113,
lastposter:"drian",
excerpt:"I have a viewport. It has several containers in the center region. When a menu button is clicked all the containers are being hidden, 3 items (buttong..."
},
{
title:"php postresql extjs",
threadid:133282,
username:"leunamme",
userid:271174,
dateline:1305210066,
postid:601472,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305537763,
lastposter:"drian",
excerpt:"Greetings!\r\nI am making a web application based on php and posgresql. I'd like to use extjs to make some forms but I have no clue how to insert data i..."
},
{
title:"ColorMenu as submenu",
threadid:133071,
username:"tomearly",
userid:99069,
dateline:1305098132,
postid:600758,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305536396,
lastposter:"tomearly",
excerpt:"Hi, \n\nI'm using an Ext.menu.ColorMenu as a context menu item on right clicking on a tree.\n\nEach item within the tree can use this submenu.\n\nHowever on..."
},
{
title:"panel collapse containing 'object' in IE",
threadid:133576,
username:"alupuli",
userid:91037,
dateline:1305534313,
postid:602464,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305534313,
lastposter:"alupuli",
excerpt:"below is a simplified sample to explain the issue.\r\nViewport west region containing a panel whose 'contentEl' contains an '' tag( eg. a youtube video ..."
},
{
title:"IE panel collapse containing object",
threadid:133573,
username:"alupuli",
userid:91037,
dateline:1305534198,
postid:602461,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305534198,
lastposter:"alupuli",
excerpt:"below is a simplified sample to explain the issue.\r\nViewport west region containing a panel whose 'contentEl' contains an '' tag( eg. a youtube video ..."
},
{
title:"Ext4 Grid Performance?",
threadid:118921,
username:"NateWorcester",
userid:89640,
dateline:1292539129,
postid:551830,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:27,
lastpost:1305533755,
lastposter:"mrehayden",
excerpt:"I've seen the PPT showing the performance improvements achieved in the layout engine however I'd like to know what kind of performance we can expect o..."
},
{
title:"Accordion viewport collapse-expand problems",
threadid:133083,
username:"Kimbal",
userid:268327,
dateline:1305100491,
postid:600780,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305531273,
lastposter:"Kimbal",
excerpt:"I created an accordion viewport, the accordion expands and collapses, but each item takes up space as it is was expanded even though it is collapsed (..."
},
{
title:"Store empty after selection?",
threadid:133441,
username:"Dirk1",
userid:232943,
dateline:1305359778,
postid:602054,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305530524,
lastposter:"Dirk1",
excerpt:"Hi all,\n\nI created an own combotype with a store initially loaded from a PHP Backend. This is the way I implemented it (I need it on several pages so ..."
},
{
title:"Where can I hire quality SenchaTouch developers on a short term basis?",
threadid:133353,
username:"WalkerW",
userid:271357,
dateline:1305257652,
postid:601716,
forumtitle:"Community Discussion",
forumid:68,
replycount:4,
lastpost:1305525781,
lastposter:"WalkerW",
excerpt:"Hi guys,\r\n\r\nI have a client who needs a SenchaTouch app he has refined and developed -specifically he needs the UI improved and a couple features fixe..."
},
{
title:"problem in getting filepath from FileUpload.",
threadid:133554,
username:"smkkiran",
userid:192626,
dateline:1305521266,
postid:602419,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305521266,
lastposter:"smkkiran",
excerpt:"hi guys,\r\n\r\nim using Ext.ux.form.FileUploadField,\r\nwhen i tried to getValue() im getting C:\/fakepath\/*filename\r\nbut i want to get full file path...\r\n\r..."
},
{
title:"panel select issue",
threadid:133553,
username:"prajeesh_bs",
userid:260289,
dateline:1305520772,
postid:602418,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305520772,
lastposter:"prajeesh_bs",
excerpt:"I have a panel container and inside that some child panels. i have an attribute panel at the right where i will be entering attributes('width','legend..."
},
{
title:"Ext",
threadid:133538,
username:"mrZaur",
userid:240419,
dateline:1305505385,
postid:602383,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1305520406,
lastposter:"tryanDLS",
excerpt:"Hello, I'm newbie in integration of ExtJs + Spring + Hibernate. Can anybody help?\n\nHow save data in textfields, datefields and grids to database thro..."
},
{
title:"ExtJS + Spring + Hibernate Integration...help..",
threadid:133539,
username:"mrZaur",
userid:240419,
dateline:1305505614,
postid:602384,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305505614,
lastposter:"mrZaur",
excerpt:"Hello, I'm newbie in integration of ExtJs + Spring + Hibernate. Can anybody help?\n\nHow save data in textfields, datefields and grids to database thro..."
},
{
title:"ExtJS + Spring + Hibernate",
threadid:133537,
username:"mrZaur",
userid:240419,
dateline:1305505328,
postid:602382,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:0,
lastpost:1305505328,
lastposter:"mrZaur",
excerpt:"Hello, I'm newbie in integration of ExtJs + Spring + Hibernate. Can anybody help?\n\nHow save data in textfields, datefields and grids to database thro..."
},
{
title:"Vertical-Toolbars support in 3.3",
threadid:133526,
username:"Jack_S",
userid:33415,
dateline:1305493616,
postid:602350,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305493616,
lastposter:"Jack_S",
excerpt:"Hello,\r\n\r\nI've tested some of the work arounds and its a mess. Is there support for vertical-toolbars for 3.3 or must I do a merge of both 3.3 & 4.0?\r..."
},
{
title:"Slider",
threadid:133514,
username:"MCSchlemme",
userid:254902,
dateline:1305477944,
postid:602303,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305477944,
lastposter:"MCSchlemme",
excerpt:"Is there a slider like the one I've attached?\n\nIf not, since I'm such a newbie at EXTJS, could someone please work their magic and create it for me?\n\n..."
},
{
title:"Salesforce.com integration: Using EnhancedList component on a page with an ExtJS grid",
threadid:133416,
username:"spuish",
userid:261153,
dateline:1305314294,
postid:601936,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305466312,
lastposter:"spuish",
excerpt:"Hello,\r\n\r\nI'm trying to use an ExtJS grid component on a VisualForce page on Salesforce.com. In general this works, however, when the page also has an..."
},
{
title:"Very Simple Panel Arrow alignment?",
threadid:133456,
username:"heatrs",
userid:266451,
dateline:1305385771,
postid:602123,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305402635,
lastposter:"heatrs",
excerpt:"I have 2 doubts :\r\n\r\n1)\r\n\r\nhttp:\/\/img220.imageshack.us\/img220\/2036\/unledtd.png\r\n\r\nHow can I move that \"arrow\" from right most side towards left side o..."
},
{
title:"Teleworking job for ExtJS develper 6+ month contract to perm",
threadid:133474,
username:"alexeych",
userid:260922,
dateline:1305402249,
postid:602162,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305402249,
lastposter:"alexeych",
excerpt:"Teleworking job for a developer who is good at ASP.NET MVC, JQuery, Sencha's ExtJS or ExtNET, NHibernate and IoC such as Castle Windsor etc. \n \nThis a..."
},
{
title:"Improving performance - large Ext 3.x application",
threadid:133460,
username:"liammkelly",
userid:231421,
dateline:1305388770,
postid:602128,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305388770,
lastposter:"liammkelly",
excerpt:"Are there any resources - FAQs, etc - that people can point me to for improving performance of a large scale Ext application? I segmented my function..."
},
{
title:"Listeners not working on grid?",
threadid:133454,
username:"anubite",
userid:257673,
dateline:1305379937,
postid:602105,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305382865,
lastposter:"anubite",
excerpt:"Hi all,\r\n\r\nI am having one problem, using MODx CMF with implemented ExtJS 3.3.0. I am setting up a grid and I want to use listeners on it. I tried to ..."
},
{
title:"Failure to Communicate or Loading a Form Based Upon Selections from Combo Boxes",
threadid:133455,
username:"budhines",
userid:73960,
dateline:1305382497,
postid:602116,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305382497,
lastposter:"budhines",
excerpt:"I have 2 forms: Search form with linked combo boxes - last name and first name. Upon selecting the first name I am attempting to load the second form ..."
},
{
title:"[OPEN] [EXTJSIV-1952] Performance Comparison between Ext 3.2.1 and Ext 4.0",
threadid:133317,
username:"Mark879",
userid:22844,
dateline:1305223746,
postid:601581,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:6,
lastpost:1305331481,
lastposter:"aconran",
excerpt:"Performance Issues with ExtJS 4.0\n\nI have put together my findings for three different examples and found that performance has increased in some areas..."
},
{
title:"How to create a transparent Ext.Button with a only iconCls visible.",
threadid:132755,
username:"oscarblo",
userid:209420,
dateline:1304770035,
postid:599643,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305320463,
lastposter:"oscarblo",
excerpt:"Hello community!\r\n\r\nIm new in this forum and with EXTjs.\r\n\r\nI need have a image with a click handler function event (I need a php request). \r\n- My fir..."
},
{
title:"Display Message in Event Handler",
threadid:133407,
username:"haden",
userid:261592,
dateline:1305307338,
postid:601890,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305319315,
lastposter:"haden",
excerpt:"I'd like to display a message passed back from my server, someplace on my form. To start, I'd just like to 'alert' the message. I can see the json in ..."
},
{
title:"M$ Ajax Date serialization parser not working",
threadid:133333,
username:"IvanJ",
userid:96055,
dateline:1305235419,
postid:601645,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305313645,
lastposter:"IvanJ",
excerpt:"I could swear it used to work.\r\n\r\nTry something like this in FF:\r\n\r\nExt.util.Format.date(\"\\\/Date(1238606590509+0800)\\\/\",\"M$\")\r\n\r\n...this date is taken..."
},
{
title:"try to fire a 'contextmenu' event on the element of a field",
threadid:133328,
username:"flamant",
userid:165442,
dateline:1305231231,
postid:601627,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305309516,
lastposter:"friend",
excerpt:"Hi,\nI put a contextmenu event on the element of a field\n\n\n\n var elt = field.getEl();\n elt.on('contextmenu', function(evt, elRef)..."
},
{
title:"How to reference ancestor container object from an ExtJS control?",
threadid:133354,
username:"chaddjohnson",
userid:112098,
dateline:1305257653,
postid:601717,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305307839,
lastposter:"friend",
excerpt:"I am using ExtJS to build a window containing several panels as items. One of these panels contains a button.\r\n\r\nI want to attach a handler to my butt..."
},
{
title:"how do you create a Ext.form.DateField, its not showing up?",
threadid:133335,
username:"creatrixcordis",
userid:262783,
dateline:1305237579,
postid:601659,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305307593,
lastposter:"friend",
excerpt:"im trying this piece of code and nothing is showing up\r\n\r\nam i missing something?\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nDate Field test\r\n\r\n\r\n\r\n\r\nExt.onReady(function..."
},
{
title:"Using existing panel",
threadid:133391,
username:"sankarshana.nimmagadda",
userid:271076,
dateline:1305282557,
postid:601849,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:1,
lastpost:1305303759,
lastposter:"Brocka",
excerpt:"hi all,\r\n iam using ext js 4 in my project and i want to display the panel which is existing one with new title please look at my code\r\n\r\n\nvar..."
},
{
title:"earn 12 percent interest secured by a first trust deed",
threadid:133398,
username:"Mamunvy",
userid:271563,
dateline:1305302859,
postid:601866,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305302859,
lastposter:"Mamunvy",
excerpt:"Business & Personal Lines Of Credit\/Cards Up to 150k!! NO UPFRONT FEES EVER!!! \r\n\r\n\r\nWe get clients Business & Personal Credit Cards Fast!! (a couple ..."
},
{
title:"iframe:true and parent javascript(s)",
threadid:133397,
username:"PHPman",
userid:245793,
dateline:1305300706,
postid:601860,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305300706,
lastposter:"PHPman",
excerpt:"Does ExtJS have mechanism for automatic \"attachment\" parent's JS files for panels wich are loaded with the autoLoad and iframe: true ?\n\nFor example ..."
},
{
title:"numberfield with numeric keypad",
threadid:133385,
username:"Stephan123",
userid:64462,
dateline:1305277149,
postid:601833,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305277149,
lastposter:"Stephan123",
excerpt:"Hello !\n\nIn the moment i look for a special plugin.\nI will build a app for a touchscreen. 17 - 19 ''.\nIn this app is a form with a special numberfield..."
},
{
title:"Grid menu display problem with IE9",
threadid:133369,
username:"mfrancey",
userid:23964,
dateline:1305270730,
postid:601777,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305270730,
lastposter:"mfrancey",
excerpt:"Hi,\n\nI'm having trouble with the display of a menu.\n\nEverything works great on every browser, except... IE9 (it's fine on IE8) See file attached.\nThe ..."
},
{
title:"Browser Conflict",
threadid:133069,
username:"Anisha Jaiswal",
userid:270366,
dateline:1305097141,
postid:600743,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1305269337,
lastposter:"drian",
excerpt:"I have a TabPanel coded in my .jsp which looks like this:\n\nasrSearchTabs = new Ext.TabPanel({\n collapsible: true,\n ..."
},
{
title:"How toggle display of root node of TreePanel dynamically",
threadid:133257,
username:"rasharma@quark.com",
userid:46792,
dateline:1305202985,
postid:601397,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305264623,
lastposter:"rasharma@quark.com",
excerpt:"I am using ExtJS 3.3 TreePanel. In my tree panel, I have four children under root node. \r\n\r\nI need to show\/hide rootNode on button click. TreePanel h..."
},
{
title:"ExtJS panel issue",
threadid:132942,
username:"prajeesh_bs",
userid:260289,
dateline:1305012039,
postid:600292,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305264346,
lastposter:"prajeesh_bs",
excerpt:"I have a panel container and inside that i have child panels. I want the child panels to be draggable and resizable anywhere inside the container. I ..."
},
{
title:"Make row not editable in EditorGridPanel based on record data?",
threadid:133313,
username:"drian",
userid:220564,
dateline:1305222842,
postid:601573,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305263605,
lastposter:"drian",
excerpt:"Hi guys,\n\n\nCould some one point me into the right direction please?\n\nI have an EditorGridPanel with an editable column. How can i disable the editing ..."
},
{
title:"Customize Ext Tools",
threadid:133355,
username:"pathum",
userid:180703,
dateline:1305257907,
postid:601718,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305257907,
lastposter:"pathum",
excerpt:"Hi All,\n\nI need to customize Ext Tool as a long button other than which defined in Panel Tools.\n\nFor that what I have done is this.\n\n\n\nwidth: 900,\n ..."
},
{
title:"How to reference ancestor container object from an ExtJS control?",
threadid:133351,
username:"chaddjohnson",
userid:112098,
dateline:1305257152,
postid:601714,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1305257152,
lastposter:"chaddjohnson",
excerpt:"[I meant to post this in the Help forum...apologies. Feel free to delete this thread.]"
},
{
title:"How can I get a linechart without tip?",
threadid:133349,
username:"zxz430",
userid:96126,
dateline:1305251781,
postid:601705,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305251781,
lastposter:"zxz430",
excerpt:"Recently, I am designing a linechart with dynamic action under the help of applet. but there are some troubles, when I move mouse to the point of the..."
},
{
title:"How can I get a linechart without tip?",
threadid:133348,
username:"zxz430",
userid:96126,
dateline:1305251440,
postid:601704,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305251440,
lastposter:"zxz430",
excerpt:"Recently, I prepare to design a linechart with support of Applet, but when I move mouse to the line, there will be a tip to show me the value of point..."
},
{
title:"php is not responding.",
threadid:133201,
username:"nongkoogkai",
userid:264549,
dateline:1305171132,
postid:601190,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305250254,
lastposter:"nongkoogkai",
excerpt:":((\r\nPlease see below.\r\nthis image => https:\/\/picasaweb.google.com\/lh\/photo\/XWb7GW63FZnSnBy3j45hoj7TpmUTmleqZnn_viu0umE?feat=directlink\r\n\r\nthis javasc..."
},
{
title:"NS_ERROR_OUT_OF_MEMORY and XHR Upload",
threadid:133021,
username:"Fox",
userid:41785,
dateline:1305051956,
postid:600564,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305242214,
lastposter:"Fox",
excerpt:"When I try to upload a large file (about 18Mb), I'm receiving this errror:\n\nuncaught exception: [Exception... \"Component returned failure code: 0x800..."
},
{
title:"Sourc{ Conference - impressions",
threadid:132857,
username:"marko1234",
userid:12882,
dateline:1304935896,
postid:599940,
forumtitle:"Community Discussion",
forumid:68,
replycount:5,
lastpost:1305235743,
lastposter:"grgur",
excerpt:"First, thank you all for coming. It was so wonderful to hang out with you for the last 4 days. Write some of your impressions, post some cool pictures..."
},
{
title:"Some photos from Split, Croatia - Sourc{DevCon",
threadid:132332,
username:"jgarcia@tdg-i.com",
userid:172,
dateline:1304491288,
postid:598141,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:6,
lastpost:1305235414,
lastposter:"grgur",
excerpt:"These images are the raw photos, so I'm not going to include them in this post directly. The view here is absolutely STUNNING! The air is so fresh a..."
},
{
title:"newbie question on keymap : a keymap put on a Field doesn't work",
threadid:133314,
username:"flamant",
userid:165442,
dateline:1305222989,
postid:601575,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305230086,
lastposter:"flamant",
excerpt:"Hi ,\nI instanciate a textfield and on render event I instanciate a keymap put on this field\n\nthe field :\n\n\n\n result = new Ext.form.TextFiel..."
},
{
title:"Form in border layout is blue around buttons, in other layouts its white",
threadid:133193,
username:"forumuser1080",
userid:241722,
dateline:1305164121,
postid:601158,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305228749,
lastposter:"forumuser1080",
excerpt:"I have a form in a border layout and the buttons section in the footer has a blue background. However the same form in a different layout (ie card la..."
},
{
title:"Little help with ItemSelector",
threadid:133276,
username:"vitalka",
userid:263964,
dateline:1305207972,
postid:601448,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305220765,
lastposter:"friend",
excerpt:"Hi, i have itemSelectors and 2 stores:\n\nstore.\n\n\n var st = new Ext.data.Store({\n proxy: new Ext.data.HttpProxy({\n url ..."
},
{
title:"Grid Date Renderer not working",
threadid:133307,
username:"Joyfulbob",
userid:26586,
dateline:1305219413,
postid:601552,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305219413,
lastposter:"Joyfulbob",
excerpt:"I'm stumped. For some reason this renderer doesn't display. I've got others on this grid that work. Is there something unique about Date fields having..."
},
{
title:"Looking for a good IDE with autocomplete\/intellisense inside a config",
threadid:133183,
username:"Beginner1971",
userid:197245,
dateline:1305150922,
postid:601126,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305215938,
lastposter:"tryanDLS",
excerpt:"I'm looking for a good IDE with autocomplete\/intellisense. So far, I've tried Komodo, Aptana and Visual Studio 2010. While all three provide some so..."
},
{
title:"Dynamically Adding Resizable Containers",
threadid:133293,
username:"dabl62",
userid:271216,
dateline:1305214904,
postid:601520,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305215614,
lastposter:"dabl62",
excerpt:"I have a problem with Ext.Resizable when trying to add multiple resizable containers to a panel. My code works for the first container added but as so..."
},
{
title:"Show values on ColumnChart columns",
threadid:133292,
username:"pyrite",
userid:231963,
dateline:1305214868,
postid:601519,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305214868,
lastposter:"pyrite",
excerpt:"I have a ExtJs v3.x columnchart, and I'd like to display the percentage value of each column either somewhere in the middle of the bar or at the very ..."
},
{
title:"MessageBox increase height of buttons",
threadid:133146,
username:"semaj",
userid:103057,
dateline:1305128819,
postid:600991,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305214762,
lastposter:"semaj",
excerpt:"Hello Ext Gurus,\n\nIs there a way to increase height of buttons inside MessageBox?\n\n\nExt.Msg.show({\n title:'Title',\n msg: 'blahblah...',\n..."
},
{
title:"ExtJS 3 and IE 9 compatibility",
threadid:133227,
username:"kulkarnirahuls",
userid:259171,
dateline:1305189311,
postid:601273,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305214698,
lastposter:"akrherz",
excerpt:"Hi Experts,\r\n\r\nCan you please let us know on ExtJS and IE9 compatibility issues?\r\n\r\nIs ExtJs 3 supports IE9, if not then what can be the quick fix for..."
},
{
title:"how set the textFeild show the grid default,not to click or dbclick the grid cell?",
threadid:133275,
username:"yatell",
userid:44218,
dateline:1305207664,
postid:601445,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305210532,
lastposter:"friend",
excerpt:"code is follow:\n \nJsonStore:\n var dataStore=new Ext.data.JsonStore({\n fields: ['condi_name','condi_field'],\n autoLoad:true,\n..."
},
{
title:"rowexpander body undefined",
threadid:133283,
username:"stetou",
userid:56978,
dateline:1305210298,
postid:601475,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305210298,
lastposter:"stetou",
excerpt:"Hi,\nI followed this example to create a grid with a rowexpander plugin\nhttp:\/\/dev.sencha.com\/deploy\/ext-3.3.0\/examples\/grid\/grid-plugins.html\nThe rows..."
},
{
title:"Help with Ext.ux.MultiSelectTreePanel",
threadid:133235,
username:"eltigree",
userid:271067,
dateline:1305193799,
postid:601319,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305206041,
lastposter:"eltigree",
excerpt:"Hello guys\n\nI will intecrate an MultiSelectTreePanel (i'm using extjs 3.3.0), but when i instantied this treepanel it reports the error: Ext.ux.MultiS..."
},
{
title:"Mouse select on TextField in FF and Chrome",
threadid:133267,
username:"tembi4",
userid:241299,
dateline:1305205593,
postid:601424,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305205593,
lastposter:"tembi4",
excerpt:"Hello everyone,\r\n\r\nIn my company I experienced the following issue. Components such as TextField, NumberField do not behave correctly on mouse click o..."
},
{
title:"locking first column of cfgrid",
threadid:126681,
username:"nadermfr",
userid:236660,
dateline:1300040112,
postid:580036,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305204833,
lastposter:"freddiv",
excerpt:"\n \n \n \n \n \n \n \n \n ..."
},
{
title:"How to refresh store in ItemSelectror?",
threadid:133253,
username:"vitalka",
userid:263964,
dateline:1305202692,
postid:601389,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305202967,
lastposter:"friend",
excerpt:"a"
},
{
title:"How to render a filter list in a grid?",
threadid:133108,
username:"mfrancey",
userid:23964,
dateline:1305115629,
postid:600866,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305199453,
lastposter:"mfrancey",
excerpt:"Hi there!\n\nI'd like to render the filter option list. \nInstead of having just the text ('small','medium','large',...), I'd like to have an icon first:..."
},
{
title:"Problem with data in an xTemplate!?",
threadid:128497,
username:"Mawi",
userid:191083,
dateline:1301498771,
postid:585820,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305197803,
lastposter:"hyteckit",
excerpt:"hi,\n\ni've a problem with my xTemplate in my Panel.\n\nMy data looks like this:\n\n\n\n{\n id: 1,\n name: 'FooCar',\n owner: [{\n id: 20,\n ..."
},
{
title:"TreePanel - RemoteMove not work with dynamically created control",
threadid:133244,
username:"jaysoncampa",
userid:261594,
dateline:1305197232,
postid:601350,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305197232,
lastposter:"jaysoncampa",
excerpt:"RemoteMove to fire the event on a node of a TreePanel the following error occurs:\n\n \"The control with ID 'treeReport' not found\"\n\n Basically I created..."
},
{
title:"Problem deleting and again creating child panel in CardLayout",
threadid:133242,
username:"Reema Seksaria",
userid:271080,
dateline:1305196792,
postid:601347,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305196792,
lastposter:"Reema Seksaria",
excerpt:"Hi\n \nI am developing an extjs based application which has search, add, and edit screens. User can navigate to Add and Edit screens from Search page. A..."
},
{
title:"XmlStore help on load XML not from url",
threadid:133116,
username:"andreacammarata",
userid:77762,
dateline:1305117688,
postid:600885,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:9,
lastpost:1305194189,
lastposter:"fay",
excerpt:"Hi guys.\nI need some help to load xml data inside an XmlStore, taking it not from an url, but from a simple variable placed in my XmlStore scope.\nSo s..."
},
{
title:"Combobox items not showing in IE",
threadid:133112,
username:"lindasingini",
userid:244862,
dateline:1305116519,
postid:600872,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1305192399,
lastposter:"fay",
excerpt:"Hi All, i have a combobox which am populating using a json store as normal. When i click the arrow to see the items in Firefox they show with no pro..."
},
{
title:"Mendatory cells in grid",
threadid:133115,
username:"coooolmagic",
userid:155335,
dateline:1305117658,
postid:600884,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305191230,
lastposter:"stephen.friedrich",
excerpt:"is there any way we can force user to enter something in a cell of grid.\n\nbasically we have grids with several columns and some of the column cells mu..."
},
{
title:"4.0.0 - No "metachange" event on Reader?",
threadid:131605,
username:"arthurakay",
userid:48511,
dateline:1303933117,
postid:595669,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:6,
lastpost:1305186385,
lastposter:"Remy",
excerpt:"In 3.x, the Reader classes had a \"metachange\" event that would fire when new metadata was passed into a store (along with the data). I don't see anyth..."
},
{
title:"tooltip on a combo box?",
threadid:128452,
username:"scaddenp",
userid:123777,
dateline:1301455763,
postid:585630,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:6,
lastpost:1305157744,
lastposter:"scaddenp",
excerpt:"Saki's examples show this code for putting a tooltip on a combobox\n\n listeners:{\n render:function() { \n ..."
},
{
title:"Desktop Ticker Help",
threadid:133186,
username:"vader1014",
userid:260297,
dateline:1305155395,
postid:601136,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305155395,
lastposter:"vader1014",
excerpt:"I was given code for a ticker that my company wants me to put on the extjs desktop. I am having a problem in which the title bar of the grids can d..."
},
{
title:"Desktop Ticker Help",
threadid:133185,
username:"vader1014",
userid:260297,
dateline:1305155222,
postid:601135,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305155222,
lastposter:"vader1014",
excerpt:"Sorry double post."
},
{
title:"How to Grok the Syntax",
threadid:133167,
username:"haden",
userid:261592,
dateline:1305139679,
postid:601067,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305151087,
lastposter:"haden",
excerpt:"I needed to figure out how to get the value of a field on my form from within a handler function but I didn't know how to reference the field and ke..."
},
{
title:"MVC Application Ext JS 4",
threadid:133147,
username:"Wilky",
userid:268382,
dateline:1305129061,
postid:600993,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1305149453,
lastposter:"Wilky",
excerpt:"Hi guys,\nI'm trying to build an application with Ext JS 4 using MVC pattern but I've some problems.\n\nThis is the tree of the directory of my applicati..."
},
{
title:"[3.3.3] Ext.ux.grid.CheckboxGroupingView",
threadid:133173,
username:"mitchellsimoens",
userid:22216,
dateline:1305142940,
postid:601084,
forumtitle:"Ext 3.x: User Extensions and Plugins",
forumid:42,
replycount:0,
lastpost:1305142940,
lastposter:"mitchellsimoens",
excerpt:"I have made a GroupingView that has a checkbox in the group header to check all rows in that group. Of course you need to be using CheckboxSelectionMo..."
},
{
title:"welcome to chat",
threadid:133172,
username:"jessie242",
userid:270829,
dateline:1305142764,
postid:601082,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305142764,
lastposter:"jessie242",
excerpt:"Free Chat Rooms also available for information on all local people from all over the World, all politics Chat Rooms, events details, World all celebra..."
},
{
title:"Need Advice: learn extjs 3 or 4",
threadid:132883,
username:"charliez",
userid:3679,
dateline:1304956090,
postid:600065,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:4,
lastpost:1305139425,
lastposter:"Justin Noel",
excerpt:"Hi\r\nI am starting with ExtJS and I see that there is a new version. extjs 4\r\n\r\nNeed your advice on deciding if I should study\/learn extjs 3 and then j..."
},
{
title:"[3.3.0] Ext.decode vs direct eval call",
threadid:133162,
username:"danellison",
userid:27375,
dateline:1305137653,
postid:601053,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305137653,
lastposter:"danellison",
excerpt:"Hi all. Viewport does an Ext.direct call to php backend for menu contents and handler methods are returned as json text.\n\n\n\t if(COI.userProfile.sh..."
},
{
title:"Forum functionality hopelessly broken?",
threadid:133160,
username:"deskwideweb",
userid:179619,
dateline:1305136762,
postid:601047,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305136762,
lastposter:"deskwideweb",
excerpt:"I'm going to submit this post by clicking \"Preview Post\"\n\nWTF???????????????????????????????????????????????\n\nPS....your site has been unacceptably sl..."
},
{
title:"Austin Ext JS Meetup - May 24th 7:30p",
threadid:133155,
username:"brian.moeskau",
userid:5,
dateline:1305133533,
postid:601026,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1305133533,
lastposter:"brian.moeskau",
excerpt:"Now that Ext 4 is out the door and the Sourc{ conference is over, it's time to meet up with my ATX peeps and give the lowdown on what's new in Senchal..."
},
{
title:"EXT JS 4 API docs",
threadid:132454,
username:"drabslab",
userid:43616,
dateline:1304544060,
postid:598505,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:8,
lastpost:1305129065,
lastposter:"drabslab",
excerpt:"Hai,\n \nIs there a possibility to version the API docs\n \nand even better to give a short release note of what has mainly been updated"
},
{
title:"outdated tutorial",
threadid:133144,
username:"snailgem",
userid:254860,
dateline:1305127918,
postid:600983,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305127918,
lastposter:"snailgem",
excerpt:"the tutorial here:\nhttp:\/\/www.sencha.com\/learn\/Tutorial:Ext_Menu_Widget\nis so woefully out of date that it will confuse and frustrate more than help a..."
},
{
title:"Scrolling content tab keys",
threadid:133125,
username:"renton",
userid:49721,
dateline:1305121443,
postid:600909,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305125376,
lastposter:"renton",
excerpt:"Hi!\r\n\r\nI've faced the problem, that using this code:\r\n\r\n\nExt.onReady (function() {\r\n\r\n var viewport = new Ext.Viewport ({\r\n layout: ..."
},
{
title:"checkbox in column header of grid to select multiple columns in grid",
threadid:133118,
username:"Komal Vaswani",
userid:195594,
dateline:1305119307,
postid:600891,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305119307,
lastposter:"Komal Vaswani",
excerpt:"Hi,\n I want to select multiple columns of grid so that I have to put checkbox in column header as shown in the attached image file. Is there any..."
},
{
title:"How to change Stacked Column chart colors",
threadid:132996,
username:"mattsh",
userid:270313,
dateline:1305039238,
postid:600477,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305117434,
lastposter:"ero",
excerpt:"Hi!\n\nI desperately need to change the column color for my charts. I think I have tried almost everything, but it doesn't work. I use the Logos 4 appli..."
},
{
title:"Help modding HTMLEditor",
threadid:133109,
username:"Jangla",
userid:65672,
dateline:1305115714,
postid:600867,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305115714,
lastposter:"Jangla",
excerpt:"So I've got an Ext.ux.HTMLEditor control on a form and I've got a combo box in the menu to wrap the text with h1, h2 or p tags. Thing is, I also want ..."
},
{
title:"maskRe syntax",
threadid:133067,
username:"bernic.ion",
userid:268279,
dateline:1305095818,
postid:600739,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305114649,
lastposter:"friend",
excerpt:"Hello. I'd want to write a maskRe control that permits only strings that begin with a certain character (let it be 'A') and continues with various dig..."
},
{
title:"Help",
threadid:133062,
username:"pav-pas",
userid:90760,
dateline:1305090971,
postid:600729,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305113788,
lastposter:"pav-pas",
excerpt:"??? ????????? ??????? ????????? ?????????? ??????\n\n\nfunction FinDat7D(){ \n var result = false;\n\tExt.Aj..."
},
{
title:"Change Ajax URL?",
threadid:133093,
username:"parsbin",
userid:246688,
dateline:1305106510,
postid:600809,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305112821,
lastposter:"parsbin",
excerpt:"Hi\nhow can i changing AJAX URl?\ni`v reload store but i want change URL before of reload store.\n\n\n\n\n{\n xtype: 'multiselect',\n\/\/ fieldLabel: 'Mult..."
},
{
title:"Suggestion: Documentation - New is not always better",
threadid:131388,
username:"kayakyakr",
userid:185631,
dateline:1303834630,
postid:594932,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:31,
lastpost:1305101588,
lastposter:"lukefowell89",
excerpt:"I would like to make the suggestion that, with the 4.0 documentation, you go back to an AJAX-based documentation layout. The great advantage to that i..."
},
{
title:"ColorMenu as submenu",
threadid:133072,
username:"tomearly",
userid:99069,
dateline:1305098295,
postid:600763,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305098295,
lastposter:"tomearly",
excerpt:"Hi, \n\nI'm using an Ext.menu.ColorMenu as a context menu item on right clicking on a tree.\n\nEach item within the tree can use this submenu.\n\nHowever o..."
},
{
title:"Print Gmap, how to?",
threadid:132796,
username:"parsbin",
userid:246688,
dateline:1304858237,
postid:599738,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305093718,
lastposter:"parsbin",
excerpt:"Hi\nhow can i send gmap map too printer?\nmy code :\n\n\n mapwin = new Ext.Window({\n layout: 'fit',\n title: 'Map',..."
},
{
title:"Combobox - Populate from remote store",
threadid:132937,
username:"trasherdk",
userid:57167,
dateline:1305006253,
postid:600272,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305088355,
lastposter:"trasherdk",
excerpt:"I'm currently struggling with a ComboBox on a form, and it seems that\r\ni'm missing something. Date is loaded from database to a JsonStore.\r\n\r\nAll look..."
},
{
title:"Numberfield : use '.' and ',' as separator simultaneously",
threadid:133005,
username:"sky2",
userid:44808,
dateline:1305041775,
postid:600497,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305075260,
lastposter:"brittongr",
excerpt:"I want to use '.' and ',' as separator simultaneously in my number field\r\nBut as result i must have number with '.' as separator.\r\nHow to do this ?\r\nT..."
},
{
title:"ComboBox item font color",
threadid:133043,
username:"kgada",
userid:270503,
dateline:1305064136,
postid:600642,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305064136,
lastposter:"kgada",
excerpt:"How do I change the font color of the items in the ComboBox? Is there a setStyle() or similar function?\n\nComboBox switchCombo = new ComboBox();\n ..."
},
{
title:"CodeMirror and Sencha (ExtJs)",
threadid:123644,
username:"russall1985",
userid:113263,
dateline:1297356313,
postid:569851,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:4,
lastpost:1305059659,
lastposter:"russall1985",
excerpt:"CodeMirror (http:\/\/codemirror.net\/) is an awesome open source tool for syntax highlighting in the browser. I found an extension created by Dan Ungure..."
},
{
title:"Carousel for Dynamic Data",
threadid:133023,
username:"Srujana",
userid:264579,
dateline:1305053390,
postid:600577,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:0,
lastpost:1305053390,
lastposter:"Srujana",
excerpt:"hi"
},
{
title:"Pop up with tab",
threadid:133022,
username:"sheiti.hyodo",
userid:270459,
dateline:1305052565,
postid:600572,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305052565,
lastposter:"sheiti.hyodo",
excerpt:"Hi,\ni need some help.\nCould someone teach me to do a pop up that is like a \"tabpanel\", where i can put 2 or more tabs\n\nthanks\n\nSheiti"
},
{
title:"xtype: 'booleancolumn' - DB-fields are not filled => BooleanColum shows false",
threadid:123622,
username:"gipsomat",
userid:226157,
dateline:1297349644,
postid:569801,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305049735,
lastposter:"Bruno0226",
excerpt:"Dear all\n\nThere is a problem with my BooleanColumn:\n\nI use\n\nxtype: 'booleancolumn', trueText: 'true', falseText: 'false' \n\nbut when a DB-field is not..."
},
{
title:"a combobox value isn't displayed in a grid editor after a read request is made",
threadid:133012,
username:"flamant",
userid:165442,
dateline:1305045339,
postid:600515,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305047545,
lastposter:"flamant",
excerpt:"Hi, \n\nI implemented a grid editor that load the records in the cache from a read method.\n\n2 columns are combobox and the displayFields corresponding t..."
},
{
title:"List Paging ---Sencha touch?????",
threadid:133018,
username:"zongtian",
userid:262393,
dateline:1305047155,
postid:600540,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305047155,
lastposter:"zongtian",
excerpt:"Hello,\n\ni want to ask some questions on the list paging of sencha touch.\n\nthe code :\nExt.regModel(modelName, {\n fields : model.fields,\n ..."
},
{
title:"Tabpanel child components rendering issue",
threadid:132962,
username:"parky128",
userid:77871,
dateline:1305024995,
postid:600359,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305046736,
lastposter:"friend",
excerpt:"Hi There,\n\nI got a weird issue with some child components displayed in a tab whereby they are not displaying\\sizing correctly. I have a ProgressBar ..."
},
{
title:"insert row below the selected row in grid",
threadid:132992,
username:"Komal Vaswani",
userid:195594,
dateline:1305037752,
postid:600469,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305045549,
lastposter:"friend",
excerpt:"Hi,\n I want to add the row just below the selected row in grid.\n\nThanks,\nKomal"
},
{
title:"Geotweet example problem",
threadid:133004,
username:"webdev2111",
userid:270371,
dateline:1305041676,
postid:600496,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1305041676,
lastposter:"webdev2111",
excerpt:"hi I am new to Sencha. i was trying to test the sencha touch geotwitter but it doesnot seem to be working. ie display google map marker display each..."
},
{
title:"Toggling a cell's editability on\/off on a per-row basis",
threadid:132991,
username:"ayqazi",
userid:245922,
dateline:1305037391,
postid:600466,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305039724,
lastposter:"fay",
excerpt:"Hi,\r\n\r\nSo I have an EditableGridPanel, and I have a field (editableField) that may or may not be editable depending on the value of another field (ano..."
},
{
title:"A simple MySQL table editor",
threadid:131256,
username:"gbs1230",
userid:53536,
dateline:1303754126,
postid:594550,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:3,
lastpost:1305035638,
lastposter:"matthias.r",
excerpt:"Hello all,\r\n\r\nI needed a simple MySQL table editor to manage some accounts for my business and couldn't find one so I wrote this. \r\n\r\nIt uses ExtJS 4...."
},
{
title:"Browser Conflict",
threadid:132984,
username:"Anisha Jaiswal",
userid:270366,
dateline:1305033773,
postid:600445,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305033773,
lastposter:"Anisha Jaiswal",
excerpt:"I have a TabPanel coded in my .jsp which looks like this:\n\nasrSearchTabs = new Ext.TabPanel({\n collapsible: true,\n ..."
},
{
title:"Sliding event for a north region in a border",
threadid:132878,
username:"razvan_s",
userid:241622,
dateline:1304952953,
postid:600036,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305032851,
lastposter:"razvan_s",
excerpt:"On a border layout, how do I catch the sliding of the north region? Because I want to set a callback function on the sliding action (not the expanding..."
},
{
title:"Browser Conflict",
threadid:132976,
username:"Anisha Jaiswal",
userid:270366,
dateline:1305031318,
postid:600410,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1305032557,
lastposter:"friend",
excerpt:"I have a TabPanel coded in my .jsp which looks like this:\n\nasrSearchTabs = new Ext.TabPanel({\n collapsible: true,\n ..."
},
{
title:"How can I use row editing with my grid??",
threadid:132807,
username:"chris24300",
userid:242805,
dateline:1304873447,
postid:599765,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1305031327,
lastposter:"chris24300",
excerpt:"I've found links to the row editing plugin but they were on extjs.com and no longer found, I figured 4 has it built in now so I can't use the code fro..."
},
{
title:"Adding static value to store",
threadid:132941,
username:"Jona",
userid:263597,
dateline:1305011441,
postid:600287,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305031049,
lastposter:"Jona",
excerpt:"Hi guys,\n\nfor a grid and a combobox I use the same store on one page. The thing is, that someone adds a value, the value is shown in the grid and in t..."
},
{
title:"extjs 3.3.2 when ....???",
threadid:126049,
username:"demon222",
userid:24810,
dateline:1299540914,
postid:578145,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1305024968,
lastposter:"neofraktal",
excerpt:"When will the published version of ExtJS 3.3.2? probably have a good time ... ;-)"
},
{
title:"Make child Panels unselectable Ext-Js 4.0",
threadid:132888,
username:"PriyaL",
userid:265529,
dateline:1304958847,
postid:600086,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1305022306,
lastposter:"PriyaL",
excerpt:"I have a Main Panel with two or more child panels.Child Panels should not be selectable.Even if child is selected,only the Parent should be selectable..."
},
{
title:"Tabpanel work properly only first time. Help!!",
threadid:131824,
username:"ivan r",
userid:261049,
dateline:1304066671,
postid:596436,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1305022302,
lastposter:"ivan r",
excerpt:"Hi everybody!!!\n\nI'm a newbie and i have a problem with a TabPanel.\n\nIn my Tabpanel there are different panels, grids and forms.\nI try to describe the..."
},
{
title:"Tree selection node",
threadid:132950,
username:"marlborino",
userid:266370,
dateline:1305017926,
postid:600327,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305017926,
lastposter:"marlborino",
excerpt:"Hello,\r\nI've to select some nodes from a tree.\r\nBy now I use this code:\r\n\nMyTree.expandPath(NodePath);\r\nvar node = MyTree.getNodeById(MyNodeId);\r\nMyTr..."
},
{
title:"missing palettes in xtype: 'htmleditor'",
threadid:132876,
username:"Stephan123",
userid:64462,
dateline:1304950535,
postid:600017,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1305015978,
lastposter:"Stephan123",
excerpt:"Hello !\n\nI have build an simple form with an xtype: 'htmleditor'.\nWhen i select a part ot the text in the editor the buttons\nfor text - color and back..."
},
{
title:"DD from Grid1 to Grid2, Row -> Column",
threadid:132948,
username:"[Daniel]",
userid:168494,
dateline:1305015866,
postid:600317,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1305015866,
lastposter:"[Daniel]",
excerpt:"Morning everybody,\n\nthere are two grids, one containing multiple rows and and consiting of only one row with multiple columns.\n\nWhat I'm trying to do ..."
},
{
title:"ExtJS meetup in Hamburg, Germany - Tue May\/10 7:00PM",
threadid:129390,
username:"stephen.friedrich",
userid:80344,
dateline:1302178530,
postid:588595,
forumtitle:"Community Discussion",
forumid:68,
replycount:6,
lastpost:1305015328,
lastposter:"stephen.friedrich",
excerpt:"Hello everyone,\n \nwe like to start a community of ExtJS developers in Hamburg, Germany.\nIf you live around here and like to get together for some fun ..."
},
{
title:"combo and IE8",
threadid:132865,
username:"Stephan123",
userid:64462,
dateline:1304944534,
postid:599974,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1305010595,
lastposter:"Stephan123",
excerpt:"Hello !\n\nI have build a grid. In the 'tbar' of the grid there is a combobox.\nWhen i test the grid in the FF3.3.x or in the Chrome browser it works fin..."
},
{
title:"Extjs does not work in Internet Explorer7 when it is contained into an IFrame",
threadid:132933,
username:"thinkerx",
userid:219285,
dateline:1304997191,
postid:600260,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1304997191,
lastposter:"thinkerx",
excerpt:"Hi guys.\n\nI have web application which shows the main content into an iframe. And it is into that iframe where I load my extjs application. It works p..."
},
{
title:"Sourc{ SenchaDev Conference - who is coming?",
threadid:129358,
username:"tobiu",
userid:4613,
dateline:1302164557,
postid:588504,
forumtitle:"Community Discussion",
forumid:68,
replycount:34,
lastpost:1304973572,
lastposter:"mrsunshine",
excerpt:"hi community,\n\ni would like to know who is coming to the event from may 5th to 7th in split (croatia).\nhttp:\/\/www.senchadevcon.eu\/\n\ni will be there fr..."
},
{
title:"newbie problem with MVC (examples\\app\\simple)",
threadid:132343,
username:"androme",
userid:173076,
dateline:1304498463,
postid:598188,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:3,
lastpost:1304973121,
lastposter:"scarsick",
excerpt:"hello, i'm trying to learn MVC with this example and i modified this code :\n\nAPP.JS\n\nExt.application({ name: 'AM', controllers: [ 'Us..."
},
{
title:"Programmatic PageFlip",
threadid:132909,
username:"schjlatah",
userid:270148,
dateline:1304971830,
postid:600182,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:0,
lastpost:1304971830,
lastposter:"schjlatah",
excerpt:"Hello,\r\n I am about as new to Sencha as they come (just found out about it this morning).\r\nI was lured to it by the siren song of the CSS\/JavaScript..."
},
{
title:"GoogleMap: Chage or add\/remove Marker after map renderering?",
threadid:132785,
username:"parsbin",
userid:246688,
dateline:1304839591,
postid:599711,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304970991,
lastposter:"kaendsle",
excerpt:"Hi\nCan i change or any control map`s marker in Gmap after map rendering by command(example: button)?\nPlease explain that.\nI can`t find good documentat..."
},
{
title:"Click event for calendar picker which is used in calendar -to get the value of date",
threadid:132647,
username:"manjush.kochi",
userid:269097,
dateline:1304685594,
postid:599224,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1304970181,
lastposter:"kaendsle",
excerpt:"Sir,\r\nI am using Calendar of Ext js 3.0 for my project.Looking for a click event in calendar picker to get the selected date so that the selected date..."
},
{
title:"Extjs 3 examples",
threadid:131934,
username:"forumuser1080",
userid:241722,
dateline:1304133240,
postid:596777,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304965005,
lastposter:"roderickforsythe",
excerpt:"Now that extjs 4 is out I cannot find the examples for extjs 3."
},
{
title:"[3.x] Ext.date.RangeField",
threadid:122551,
username:"kryo",
userid:105430,
dateline:1296363586,
postid:566201,
forumtitle:"Ext 3.x: User Extensions and Plugins",
forumid:42,
replycount:15,
lastpost:1304962787,
lastposter:"kryo",
excerpt:"Ext.date.RangeField is a completely new rewrite of \"Ext.ux.form.DateRange\". Fixes lots of problems, code has been cleaned up and well documented. Demo..."
},
{
title:"Nop style on html text in tab panel",
threadid:132893,
username:"forumuser1080",
userid:241722,
dateline:1304960507,
postid:600098,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304961423,
lastposter:"friend",
excerpt:"When I set the html config on a panel that is contained in a tab panel the text I set does not have any style.\n\nIt looks like somehow my panel does no..."
},
{
title:"IE Error >> data: null",
threadid:132855,
username:"Amolpatil",
userid:263424,
dateline:1304935693,
postid:599936,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304959734,
lastposter:"tryanDLS",
excerpt:"Hello Everyone,\n\nI am facing problem when i double click on checkbox it gives error in IE. data is null or not an object error."
},
{
title:"TreeGrid + Locking Grid View Combined",
threadid:117649,
username:"lukefowell89",
userid:201014,
dateline:1291393977,
postid:546658,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304958838,
lastposter:"naye87",
excerpt:"I need to be able to have a \"freeze pane\" like on excel, on the first column of my treegrid! This tree grid is very complex and needs to be a treegr..."
},
{
title:".disable() component in vbox layout?",
threadid:132763,
username:"drian",
userid:220564,
dateline:1304787965,
postid:599658,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304958405,
lastposter:"drian",
excerpt:"Is it me or there's a a weird thing happening when i disable an item that's inside a vbox layout? \r\n\r\nI have 2 grids inside a vbox layout, both with f..."
},
{
title:"How to decrease load time of TreePanel ?",
threadid:132765,
username:"Anup Rana",
userid:191053,
dateline:1304789887,
postid:599660,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304952698,
lastposter:"friend",
excerpt:"I am using treepanel and using json file to load the treepanel using dataUrl property.\nBut it is taking time to load the treepanel and the window gets..."
},
{
title:"A Problem with the scroll of treegrid",
threadid:132838,
username:"MadEric",
userid:269294,
dateline:1304924313,
postid:599868,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304951994,
lastposter:"friend",
excerpt:"I create a treegrid to show the data. The config of the treegrid is as follows:\n \nactivityTreeGrid = new Ext.ux.tree.TreeGrid({\n id: 'produ..."
},
{
title:"Explicitly set Ext.Window body size",
threadid:132840,
username:"ChrisR",
userid:2799,
dateline:1304924902,
postid:599873,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304951768,
lastposter:"friend",
excerpt:"Is there a way to explicitly set the window's body size and have the window component adapt to that? There is the setSize() method on Ext.Window but t..."
},
{
title:"Problems With Ext js calendar Pro....Please Help",
threadid:132753,
username:"manjush.kochi",
userid:269097,
dateline:1304764140,
postid:599634,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304949128,
lastposter:"manjush.kochi",
excerpt:"Sir,\n I am using Calendar of Ext JS 3.3 in my Project,As there is no provision to limit the date in that all records will be fetched on to that calend..."
},
{
title:"How to show the child window and its components after closing?",
threadid:132599,
username:"vertex",
userid:225542,
dateline:1304661573,
postid:599041,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304946251,
lastposter:"jgarcia@tdg-i.com",
excerpt:"hi,i am using ext js to create a desktop user interface application, In that i am using menu items like grids, forms and windows,\nhere my problem is,i..."
},
{
title:"Autoscroll problem in center region on Android and Iphone smart phones",
threadid:132772,
username:"wester",
userid:262271,
dateline:1304801546,
postid:599679,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1304946018,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Hi there\n \nI seem to have a problem with autoscroll in the center region when viewing ExtJS layouts on a smart phone. Fx. the \"layout-browser\" example..."
},
{
title:"Destroying the components of a window",
threadid:132784,
username:"vertex",
userid:225542,
dateline:1304838274,
postid:599710,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1304945319,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Hi,\n\nI have been working on a web application using EXT JS. I am using the Web Desktop (Refer :\/ext-4.0.0\/examples\/desktop\/desktop.html) as my applica..."
},
{
title:"Help:",
threadid:132815,
username:"miibx5",
userid:248579,
dateline:1304877881,
postid:599776,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1304945222,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Help: I'm trying to learn Ext Js and I saw some examples: Saki's Ext Examples Page and tried to recreate them and also the community of Ext Js in Braz..."
},
{
title:"No Viewport: Liquid layout with percentual widths \/ fittoparent",
threadid:132867,
username:"dloew",
userid:45033,
dateline:1304944754,
postid:599978,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304944754,
lastposter:"dloew",
excerpt:"I may not use Ext.Viewport for my application due to several reasons. I have read a few posts referring this and I think that I'm not the only one, th..."
},
{
title:"How to overwrite a class with another class ?",
threadid:132851,
username:"lakilevi",
userid:60802,
dateline:1304934187,
postid:599924,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304944360,
lastposter:"friend",
excerpt:"Hello.\nIt may sound a little bit strange, but I would overwrite a class with an other class.\nFor example I want that all my Ext.form.Textarea objects ..."
},
{
title:"Print functionality",
threadid:132648,
username:"lindasingini",
userid:244862,
dateline:1304686530,
postid:599234,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304940159,
lastposter:"lindasingini",
excerpt:"Hi All\n\nI recently started using ext js and would like to add some print functionality to my application. I have an image in a window and a print butt..."
},
{
title:"[Ext Core 3.0] unterminated string literal",
threadid:132799,
username:"Mycoding",
userid:135053,
dateline:1304867130,
postid:599750,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1304926928,
lastposter:"Mycoding",
excerpt:"Please help me to solve this.\r\nI write site on Ext Core and have such bug.\r\n\r\n\n\r\nExt.Ajax.request({\r\n\tmethod:'POST',\r\n\tparams:{\r\n\t action:parse..."
},
{
title:"Need Help To Integrate JSF 2.0 with ExtJS",
threadid:132832,
username:"sharathts",
userid:269952,
dateline:1304918144,
postid:599836,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304918144,
lastposter:"sharathts",
excerpt:"Hi there,\n This is Sharath, I am new to ExtJS. And very exited to use ExtJS in my current project which i am developing using JSF 2.0 and R..."
},
{
title:"Ext-JS Spell checker",
threadid:123053,
username:"actonwang",
userid:179757,
dateline:1296832835,
postid:568110,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:3,
lastpost:1304915070,
lastposter:"yyogev",
excerpt:"hi, \n\n Is there any existing Ext-JS spell checker component? I want to have a simple checker on plain text area.\n\nThanks!\nActon"
},
{
title:"Advanced MVC - Best Practices",
threadid:131671,
username:"tobiu",
userid:4613,
dateline:1303983725,
postid:595895,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:10,
lastpost:1304893961,
lastposter:"steffenk",
excerpt:"Hi team and community,\r\n\r\nsince i am going to talk about the application pattern and mvc at the Sourc{ SenchaDevs conference, i would like to make sur..."
},
{
title:"[bug forum] Some words on forum on Japan",
threadid:132800,
username:"Mycoding",
userid:135053,
dateline:1304867558,
postid:599751,
forumtitle:"Community Discussion",
forumid:68,
replycount:2,
lastpost:1304868880,
lastposter:"Mycoding",
excerpt:"Here is how Sencha Forum looks about 3 days.\r\nJapan words.\r\n\nhttp:\/\/www.youtube.com\/watch?v=UBYVQPKH-zo"
},
{
title:"Dynamic tree",
threadid:132792,
username:"rp111",
userid:265854,
dateline:1304850763,
postid:599727,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304850763,
lastposter:"rp111",
excerpt:"i used form that gets node id, node text and parent id and built a dynamic tree.\nwhen i insert new node, i use tree.root.reload() to reload hole tree...."
},
{
title:"Expand width of panel dynamically?",
threadid:132758,
username:"Vinni",
userid:131687,
dateline:1304782898,
postid:599652,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304782898,
lastposter:"Vinni",
excerpt:"Hi all,\n\nI am working on project, where I have to display string in one line ONLY.\nString is dynamic, and passed in the function. I have background im..."
},
{
title:"Get column id from Grid Header Menu ?",
threadid:132754,
username:"ashaihullin",
userid:104174,
dateline:1304767398,
postid:599638,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304767398,
lastposter:"ashaihullin",
excerpt:"I now know how to add own menu item in a header of grid but and...\r\n\r\nWhen i click on menu item in a header menu I need to grab column id which header..."
},
{
title:"Get listener within Extension",
threadid:132644,
username:"gesche",
userid:269396,
dateline:1304682222,
postid:599205,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304767168,
lastposter:"gesche",
excerpt:"I made an extension which automaticaly creates me a range field. It shows me a from and a to field based on several parameters, which works fine. Now ..."
},
{
title:"How can I use only files for TreePanel?",
threadid:132719,
username:"max.carvalho",
userid:95135,
dateline:1304713901,
postid:599504,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304761823,
lastposter:"fay",
excerpt:"Hi,\n\nI'm just wondering, it's possible to use only some components of extjs? Like TreePanel?\n\nIf yes, could you provid me any examples?\n\nThanks."
},
{
title:"Adding Submit Conditions ???...",
threadid:132744,
username:"agustincba",
userid:165694,
dateline:1304742314,
postid:599611,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304742314,
lastposter:"agustincba",
excerpt:"Hi Guys !. I would like to know if there is any possibility of adding submit conditions to a FormPanel ?. What I mean is... what I should do if I have..."
},
{
title:"Tooltip problems",
threadid:132738,
username:"forumuser1080",
userid:241722,
dateline:1304733910,
postid:599594,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304733910,
lastposter:"forumuser1080",
excerpt:"I am trying to create a tooltip inside of a renderer of a column in a grid panel. I have two problems.\n\n1. I want the tooltip to to have the followin..."
},
{
title:"Grouptabpanel several levels",
threadid:132728,
username:"bkraut",
userid:16049,
dateline:1304721761,
postid:599550,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304721761,
lastposter:"bkraut",
excerpt:"Hi,\r\n\r\nis it possible to configure grouptabpanel to have more than just two levels. To act as a tree?\r\nI need at least 4 levels in the left column.\r\n\r..."
},
{
title:"Submit a form which has a grid",
threadid:132724,
username:"jun.sumi",
userid:250965,
dateline:1304717354,
postid:599529,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304719308,
lastposter:"pbyhistorian",
excerpt:"Hello guys,\r\n\r\nI have such a complex form panel which I need to submit.\r\nWe use Extjs 3.3.1 with Java + Struts 2.\r\n\r\nI know how to submit a form and g..."
},
{
title:"Modal windows flicker when using contained scrollbars if Flash object is on page",
threadid:129666,
username:"kevinday",
userid:154067,
dateline:1302305613,
postid:589426,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:7,
lastpost:1304718873,
lastposter:"kevinday",
excerpt:"I'm using 3.3.2, and found something kinda weird that I was wondering if anyone had any insight on.\r\n\r\nIf there's a Flash object anywhere on the page,..."
},
{
title:"Normal behavior for Ext.form.NumberField?",
threadid:132725,
username:"pbyhistorian",
userid:76230,
dateline:1304718335,
postid:599535,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304718335,
lastposter:"pbyhistorian",
excerpt:"My EditorGridPanel works fine except for the Ext.form.NumberFields I use as editors. When I click on any cell to edit it, these outcomes occur randoml..."
},
{
title:"XTemplate messed up is I insert an xml string",
threadid:132715,
username:"forumuser1080",
userid:241722,
dateline:1304709813,
postid:599468,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304718005,
lastposter:"forumuser1080",
excerpt:"I am trying to stuff an xml string into an XTemplate and things are getting messed up as it seems that XTemplate is interpreting the xml string rather..."
},
{
title:"ABN AMRO Bank using ExtJS for Fund management system",
threadid:132342,
username:"misterb101",
userid:16275,
dateline:1304498180,
postid:598186,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:4,
lastpost:1304708929,
lastposter:"misterb101",
excerpt:"Hi all, \r\n\r\nI would like to share my experiences on a very interesting project I did for ABN AMRO Bank Luxembourg. I find it a personal victory that I..."
},
{
title:"some backlink web share with all friends here",
threadid:132713,
username:"fashionclothing",
userid:269518,
dateline:1304708351,
postid:599456,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304708351,
lastposter:"fashionclothing",
excerpt:"http:\/\/www.brides.com\/\nhttp:\/\/www.businessweek.com\/\nhttp:\/\/www.coffeecup.com\/\nhttp:\/\/www.dailykos.com\/\nhttp:\/\/www.dotnetnuke.com\/\nhttp:\/\/www.ibm.com\/\n..."
},
{
title:"supports is undefined resource\/ext-all.js Line 4918",
threadid:123935,
username:"olivierpons",
userid:101882,
dateline:1297692005,
postid:570808,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:2,
lastpost:1304700042,
lastposter:"mike1993",
excerpt:"(Firefox 3.6.13, Firebug 1.7X.0a10)\n\nHere's what I did: \nI copied ext-all-debug.js over ext-all.js and now when I run it I get this error:\n\nsupports i..."
},
{
title:"CSS conflict - position:absolute in ExtJs Grid",
threadid:132470,
username:"abhilashca",
userid:258726,
dateline:1304573209,
postid:598578,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1304698208,
lastposter:"abhilashca",
excerpt:"Hello,\n \nRecently I'd integrated ExtJs Grid into an existing webpage and resulted in a CSS conflict. I'd identified the conflicting CSS in my existing..."
},
{
title:"template trouble with dates",
threadid:132693,
username:"Dmoney",
userid:140719,
dateline:1304697718,
postid:599362,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304697718,
lastposter:"Dmoney",
excerpt:"I'm trying to use the following template to see if a date has passed when populating my grid but everything returns as Active even though almost all t..."
},
{
title:"Availability of Visual QA",
threadid:121677,
username:"kugaprakash",
userid:49315,
dateline:1295418007,
postid:562757,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:12,
lastpost:1304696103,
lastposter:"scottmartin",
excerpt:"Hi\nCan you please us know the availability of the VisualQA?\nPer the conference, it would be available in Jan or so...\nPlease let us know its availabil..."
},
{
title:"Changes between 2.2-4.0",
threadid:132583,
username:"ann_y",
userid:268741,
dateline:1304644292,
postid:599010,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1304694532,
lastposter:"tryanDLS",
excerpt:"Hello,\n\nI have inherited a product which is written in Ext 2.2 and we are trying to evaluate if\/how we should move to Ext 4.0. Is there a way to find ..."
},
{
title:"Best way to destroy card when hidden, instantiate when shown?",
threadid:132683,
username:"charris",
userid:177803,
dateline:1304694414,
postid:599326,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304694414,
lastposter:"charris",
excerpt:"Hi everyone. I'm using a CardLayout to switch between full-screen panels that have several nodes. To minimize memory usage, I want to destroy a card w..."
},
{
title:"DateField and Combo Field dropdown doesnt display properly in Window.",
threadid:132352,
username:"mond",
userid:205312,
dateline:1304501994,
postid:598206,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304694034,
lastposter:"friend",
excerpt:"My Date field and Combo Field doesnt display properly inside grid that uses rowEditor.\n\nand as well as Date and Combo Field inside the Window Componen..."
},
{
title:"error on examples of Sencha",
threadid:132680,
username:"rober_kixote",
userid:245507,
dateline:1304693872,
postid:599318,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:0,
lastpost:1304693872,
lastposter:"rober_kixote",
excerpt:"I am this error in the samples of sencha:\r\nhttp:\/\/dev.sencha.com\/deploy\/touch\/getting-started.html\r\n\r\n\r\n05-06 14:55:56.647: DEBUG\/PhoneGapLog(679): fi..."
},
{
title:"licence question...",
threadid:132666,
username:"serena.atnip",
userid:269352,
dateline:1304690322,
postid:599284,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1304693588,
lastposter:"serena.atnip",
excerpt:"Guys,\n\nAm I allowed to use the Ext JS 4 Open Source version to develop a website for a client?\n\nThanks,\n\nSerena"
},
{
title:"finding release notes\/changelogs 2.0.0 to current",
threadid:128299,
username:"jhooper",
userid:125051,
dateline:1301348903,
postid:585121,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1304693225,
lastposter:"tryanDLS",
excerpt:"Where can one find all of the available ExtJs release notes\/changelogs since 2.2 up to 4.0?\n \nI have searched google and the forums, and only found re..."
},
{
title:"Migrating from 2.2 to 4",
threadid:132667,
username:"ann_y",
userid:268741,
dateline:1304690351,
postid:599285,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304690351,
lastposter:"ann_y",
excerpt:"Hi there,\n\nI will need to migrate our existing product written in Ext 2.2 to the latest 4.0 version. Are there any compatibility packs? Any advise on ..."
},
{
title:"Editable grid doesn't delete cell values with backspace",
threadid:132565,
username:"Syed Huda",
userid:201684,
dateline:1304619668,
postid:598915,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304689571,
lastposter:"Syed Huda",
excerpt:"It appears that in the \"Editable Grid\" it doesn't delete cell values with backspace.\nYou CAN delete everything after the first character with the back..."
},
{
title:"How to change ext menu dynamically",
threadid:132190,
username:"vamshigurudu",
userid:203288,
dateline:1304417233,
postid:597661,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304688601,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Hi,\n\nHow to change menu content dynamically or how to load menu dynamically.\nI have a tool bar with menu.\nand having tabs and ext view port panels.\n\nw..."
},
{
title:"Problem with dom and Ext.element in IE",
threadid:132649,
username:"da_bar",
userid:81367,
dateline:1304687126,
postid:599239,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304687126,
lastposter:"da_bar",
excerpt:"I create elements with Ext.element like this:\n\n\nvar table = new Ext.Element(document.createElement('table'));\n \n for(n=0;n..."
},
{
title:"Click event for Calendar Picker",
threadid:132597,
username:"manjush.kochi",
userid:269097,
dateline:1304661026,
postid:599038,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304685761,
lastposter:"manjush.kochi",
excerpt:"Sir,\n I am using Calendar of Ext js 3.0 for my project.Looking for a click event in calendar picker to get the selected date so that the selected..."
},
{
title:"How to use right click menu option on RowEditor?",
threadid:123019,
username:"Manjula",
userid:237055,
dateline:1296810937,
postid:567987,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304683832,
lastposter:"olof",
excerpt:"I want to edit a particular field using the row editor but on a right click menu when I choose 'edit' out of the other menu options, the record should..."
},
{
title:"backgound is still active after Ext.MessageBox appear",
threadid:132526,
username:"ps_sonal",
userid:240743,
dateline:1304603139,
postid:598791,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304682488,
lastposter:"friend",
excerpt:"Hi All,\n\nI am facing a problem when populating Ext.MessageBox.show().\nWhen page is going to render then vertical scrollbar appear and then messageBox ..."
},
{
title:"Ext combo box",
threadid:132405,
username:"rajasekar",
userid:216805,
dateline:1304522164,
postid:598369,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1304681357,
lastposter:"rajasekar",
excerpt:"Hi ,\r\nI am using ext js auto complete combo box with label and id values, It is perfectly showing the label in front and getting id as a value. \r\n\r\n..."
},
{
title:"EdtorGridPanel store batch remove error",
threadid:132634,
username:"kendoctor",
userid:153315,
dateline:1304678665,
postid:599184,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304678665,
lastposter:"kendoctor",
excerpt:"i create a EditorGridPanel, and list some records in list\nthe store is not autoSave, and restful is true\nif i delete the records which are all removed..."
},
{
title:"EdtorGridPanel store batch remove error",
threadid:132633,
username:"kendoctor",
userid:153315,
dateline:1304678112,
postid:599179,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:0,
lastpost:1304678112,
lastposter:"kendoctor",
excerpt:"Ext version tested: \n \n Ext 3.____ rev ____ \n\n Adapter used: \n \n ext \n yui \n jquery \n prototype \n\n css used: \n \n only default ext-all.css \n custom c..."
},
{
title:"Will "BufferView" be migrated into 4.0?",
threadid:132615,
username:"cyrilluce",
userid:87414,
dateline:1304673292,
postid:599107,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304673292,
lastposter:"cyrilluce",
excerpt:"I had read the implemention of Buffered Grid in 4.0, found that it's most likely the LiveGrid, dynamic switch data in Store.\r\nBut in this way, the fea..."
},
{
title:"fieldLabel Vertical Alignment",
threadid:132354,
username:"gretags",
userid:73742,
dateline:1304502131,
postid:598208,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304666057,
lastposter:"gretags",
excerpt:"Hi team,\n\nHow would I align any fieldLabel to a vertical alignment top. Normally our field label is in the left side of the field, I would like to put..."
},
{
title:"How to submit a form in synchronous mode",
threadid:132580,
username:"sofway",
userid:106185,
dateline:1304638687,
postid:598992,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304665682,
lastposter:"pmatsumura",
excerpt:"Hi i have a Formpanel but when i call the submit method, it sends the data with an ajax request.\r\nI want to send that form in a synchronous mode but c..."
},
{
title:"Problem while making ext js date field editable",
threadid:132372,
username:"ps_sonal",
userid:240743,
dateline:1304514622,
postid:598292,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1304665064,
lastposter:"ps_sonal",
excerpt:"HI All,\nI am facing an issue while working on extjs .\n \nWhen we make any ext js datefield\/drop down, non- editable by using its property:- \neditable:f..."
},
{
title:"All grey background in IE when using Ext.Msg() and Ext.LoadMask()",
threadid:131889,
username:"rrandymeyer",
userid:266876,
dateline:1304097943,
postid:596644,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:18,
lastpost:1304664320,
lastposter:"pmatsumura",
excerpt:"When running in IE my Ext.Msg() and Ext.LoadMask() make the background go completely grey instead of transparent. It works fine in FF. I have searche..."
},
{
title:"Ext window position at clicked location",
threadid:118034,
username:"cubuzoa",
userid:216503,
dateline:1291807197,
postid:548330,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:7,
lastpost:1304662424,
lastposter:"Sreekesh S K",
excerpt:"Dear all,\nI created a pop up window by using \"Ext.window\".When i click the button it pops up a window.I want to set the location of popup window by lo..."
},
{
title:"Book - Sencha Touch in Action - CH1-3 available!",
threadid:116718,
username:"jgarcia@tdg-i.com",
userid:172,
dateline:1290565451,
postid:542499,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:21,
lastpost:1304660861,
lastposter:"Greg Arnott",
excerpt:"At Senchacon, I announced \"Sencha Touch in Action\". The first TOC I produced was 15 chapters long, and extremely detailed. I've been coached by Mann..."
},
{
title:"Latest ExtJS 3.x release ???",
threadid:132382,
username:"lakilevi",
userid:60802,
dateline:1304517627,
postid:598322,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1304660505,
lastposter:"lakilevi",
excerpt:"Hello.\nCould you tell me please which is the latest official 3.x release?\nThe link for extjs 3.x download dissapeared from the menu. :(\n \nI tried here..."
},
{
title:"How to manage CategoryAxis yAxis of the stackedbarchart that are too long.",
threadid:132591,
username:"kaslakhanova",
userid:188530,
dateline:1304653969,
postid:599024,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304653969,
lastposter:"kaslakhanova",
excerpt:"My first forum hello to all of you brilliant people,\n \nI have been looking for a way to word wrap my yAxis CategoryAxis of the stackedbarchart. The la..."
},
{
title:"Unit Testing Calls to My Server the way the datastore does",
threadid:132582,
username:"pkellner",
userid:47902,
dateline:1304643144,
postid:599006,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304643144,
lastposter:"pkellner",
excerpt:"I'd like to have a unit tests for each of my server json calls that call the server the same way my extjs app does. That is, I want to be able to tel..."
},
{
title:"align icons in the toolbar",
threadid:132040,
username:"boston-george",
userid:197050,
dateline:1304331891,
postid:597180,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304626748,
lastposter:"boston-george",
excerpt:"Hi guys,\n \nhow can align the icons in the toolbar?! \n \nbut i need some icons with right align and same icons with left align!\n \nthanks"
},
{
title:"combo boxes with editable: false, it crash in goolge chrome when using backspace key",
threadid:132567,
username:"lujian98",
userid:110441,
dateline:1304623168,
postid:598940,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304623168,
lastposter:"lujian98",
excerpt:"When combo boxed setup with editable: false, it will crash (the whole page is gone) in Google chrome 8 & 11 when select one item, then highlight selec..."
},
{
title:"BasicForm updaterecord ignoring fieldset checkboxName",
threadid:129639,
username:"Nigel",
userid:55784,
dateline:1302286358,
postid:589329,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304613431,
lastposter:"Nigel",
excerpt:"I'm working on a form which utilises a FieldSet with checkboxToggle set; I've set checkboxName as I want to utilise whether the checkbox is set when I..."
},
{
title:"HTMLEditor not resizing in VBox Layout",
threadid:129642,
username:"Nigel",
userid:55784,
dateline:1302287659,
postid:589340,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304613376,
lastposter:"Nigel",
excerpt:"I'm working on a form that uses HTMLEditor - the layout of the form is based on the example at\n\nexamples\\form\\vbox-form.js\n\nThe example works beautifu..."
},
{
title:"Heavily styling an Ext.grid.GridPanel ?",
threadid:129284,
username:"cblin",
userid:18482,
dateline:1302103351,
postid:588271,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304611004,
lastposter:"cblin",
excerpt:"Hi,\r\n\r\nI'd like to know if someone can provide me advices or tips to style an ExtJs GridPanel so it looks more \"fun\".\r\n\r\nAn example of what I'd like t..."
},
{
title:"IE9 Compatibility",
threadid:132456,
username:"brentdooley999",
userid:52620,
dateline:1304546913,
postid:598518,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304607622,
lastposter:"tryanDLS",
excerpt:"Is ExtJs fully compatible with IE9? I have a rather large app and it seems to be at about about 95%. I'm just seeing small rendering errors with som..."
},
{
title:"How to Reference Data in My Form",
threadid:132447,
username:"haden",
userid:261592,
dateline:1304541447,
postid:598487,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304606298,
lastposter:"friend",
excerpt:"I have a form that loads a record from my database using the form's load method.\n\n\nclient_form.getForm().load({url:'get_client2.php',params:{suite_no:..."
},
{
title:"Can I use ExtJS library freely in my commercial products",
threadid:132519,
username:"Mustafa646",
userid:269061,
dateline:1304599871,
postid:598759,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:4,
lastpost:1304606287,
lastposter:"tryanDLS",
excerpt:"I have read the GPLV3 licencing aggrement and still confused whether its possible to use ExtJs freely under GNU-GPLV3 licence for commercial web appli..."
},
{
title:"Windows contraint inside div does not work in firefox",
threadid:131826,
username:"namanx",
userid:259948,
dateline:1304067022,
postid:596439,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:1,
lastpost:1304603475,
lastposter:"namanx",
excerpt:"Hi \nI have four windows that are renderedTo a div.\ni have set the costraint as true.\n \nNow when i run the Code in interned explorer it works fine.\nBut..."
},
{
title:"Ext.Tooltip on grid column",
threadid:127098,
username:"ttbgwt",
userid:38146,
dateline:1300329087,
postid:581430,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304601652,
lastposter:"JasonPaul",
excerpt:"I'm trying to use the following on a grid's column but it doesnt work as the tooltip shows [object object]\n\n\n\n colModel: new Ext.grid.Colum..."
},
{
title:"TextField that displays a custom version of its value (ExtJS 3.3)",
threadid:132439,
username:"cbackas",
userid:229046,
dateline:1304538610,
postid:598467,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304599054,
lastposter:"friend",
excerpt:"Hello all,\r\n\r\nI have a textfield in my form which is supposed to represent a telephone number. I don't necessarily want to force the user to enter thi..."
},
{
title:"May stores of same type \/ How to update all Stores? - Best practice",
threadid:132514,
username:"jheuing",
userid:267310,
dateline:1304596648,
postid:598725,
forumtitle:"Community Discussion",
forumid:68,
replycount:0,
lastpost:1304596648,
lastposter:"jheuing",
excerpt:"Hello,\r\n\r\nI am having one store to show the data, tied to a controller and view (using the MVC pattern of ext4).\r\n\r\nI also have a separate component f..."
},
{
title:"Multisort and lockingGridView",
threadid:132483,
username:"tdikarim",
userid:6307,
dateline:1304584801,
postid:598620,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304584801,
lastposter:"tdikarim",
excerpt:"Hi Friends,\r\n\r\nI am face on the next problem. :-\/\r\nI have a tbar for multisort and a grid (with LockingColumnModel) with 3 locked column\r\nsituation : ..."
},
{
title:"Adding a grid using a plugin",
threadid:132390,
username:"gregoire",
userid:64401,
dateline:1304518879,
postid:598335,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304579627,
lastposter:"gregoire",
excerpt:"I don't know if what I am asking is crazytalk..but does anyone of you know if it's possible to use a plugin to add a grid to another grid and make bot..."
},
{
title:"How to include External code in Extjs",
threadid:132368,
username:"parsbin",
userid:246688,
dateline:1304511753,
postid:598274,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304577452,
lastposter:"parsbin",
excerpt:"I`v created a suggestion textbox out of Extjs, and i want include that in my Extjs form.\ncan i do that?"
},
{
title:"adding child nodes without data url",
threadid:132472,
username:"msafeer",
userid:236709,
dateline:1304576736,
postid:598583,
forumtitle:"Ext: Examples and Extras",
forumid:7,
replycount:0,
lastpost:1304576736,
lastposter:"msafeer",
excerpt:"i want to create a child nodes dynamically under any selected nodes without providing any data url.\n\nthis is my sample codes and it is only working wh..."
},
{
title:"display images into grid column",
threadid:132462,
username:"soung",
userid:241580,
dateline:1304551204,
postid:598535,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304551204,
lastposter:"soung",
excerpt:"hello everybody\n I want to define for each column in a grid a renderer\n but I have an empty grid.\nhere the code:\n\n\nfor(var index=0,i=viewRas.d..."
},
{
title:"Left and Right Arrow in Menu Field",
threadid:132458,
username:"ajang",
userid:108534,
dateline:1304548308,
postid:598523,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304548308,
lastposter:"ajang",
excerpt:"Hi, I'm using string grid filter. I have a problem, I cannot use left and right arrow to move caret inside field (textfield or numberfield) which is u..."
},
{
title:"IE7 Memory Leak Issue for TreePanel",
threadid:132308,
username:"sviolet",
userid:268455,
dateline:1304465886,
postid:598070,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304546208,
lastposter:"sviolet",
excerpt:"Hi, \n\nI'm working on a feature that requires constantly reload the tree. I'm using tree.getRootNode().reload(); With Drip, I found there's memory leak..."
},
{
title:"Form.DateField width is truncated in IE9",
threadid:128438,
username:"MrRoyce",
userid:81843,
dateline:1301434491,
postid:585586,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:1,
lastpost:1304538501,
lastposter:"esatterwhite",
excerpt:"I was not able to get a screen shot, but the sample page at:\n\nhttp:\/\/dev.sencha.com\/deploy\/dev\/examples\/form\/adv-vtypes.html\n\ndoes not display the pop..."
},
{
title:"Populating several grids from a single ajax request",
threadid:132395,
username:"daltenhof",
userid:253414,
dateline:1304519860,
postid:598348,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304533610,
lastposter:"daltenhof",
excerpt:"Hi this is a bit of a newbie question, but I'm having trouble getting started ...\n\nI'd like to populate several stores from a single json ajax request..."
},
{
title:"Row Editor Issue",
threadid:132430,
username:"smarttdv",
userid:25040,
dateline:1304533334,
postid:598435,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304533334,
lastposter:"smarttdv",
excerpt:"Hi all,\n\nI have a problem with row editor in IE; the edited form (see picture) doesn't appear correctly. It works perfectly on Firefox. I am using EX..."
},
{
title:"Nested Grid Column all at top",
threadid:132203,
username:"Manjula",
userid:237055,
dateline:1304423465,
postid:597714,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304529548,
lastposter:"kaendsle",
excerpt:"Hi ,\r\nWe need to make a grid model where all column for parent and even nested grid needs to be on the top. Has anyone done something like this before..."
},
{
title:"Ext.grid.EditorGridPanel checkbox editor problem in Chrome 9.0.597.86 beta",
threadid:122953,
username:"SMMJ_Dev",
userid:87129,
dateline:1296748645,
postid:567763,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:12,
lastpost:1304529174,
lastposter:"SMMJ_Dev",
excerpt:"Hello Everyone,\r\n\r\nI don't know if anybody has mentioned this yet, but the latest version of the beta Chrome is having a problem with the checkbox as ..."
},
{
title:"Ability to advance through a series of images in ExtJS window",
threadid:132419,
username:"wbhk",
userid:237351,
dateline:1304527349,
postid:598403,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304528941,
lastposter:"wbhk",
excerpt:"Hello,\n\nI have a button in a grid cell that opens a window to display images. I would like to pass a list or object of multiple images that one can se..."
},
{
title:"ExtJS3 dead?",
threadid:132365,
username:"defcon1",
userid:57649,
dateline:1304510403,
postid:598257,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:1,
lastpost:1304522371,
lastposter:"tryanDLS",
excerpt:"Hi guys,\n\nis ExtJS3 dead? If you take a look at the Ext 3.x Bugs forum, it\u00b4s seems so. Even the public SVN commit log is offline since weeks ...\n\nd1"
},
{
title:"[ExtJS 3.3.3] Weird drag and drop problem in IE 8",
threadid:132061,
username:"Anand Sathe",
userid:111197,
dateline:1304342900,
postid:597258,
forumtitle:"Ext 3.x: Bugs",
forumid:41,
replycount:3,
lastpost:1304519752,
lastposter:"Anand Sathe",
excerpt:"Hello,\nWe are facing a strange issue after upgrading from ExtJS 3.2.0 to ExtJS 3.3.3\nOur application contains a custom Tree Panel and a custom Editor..."
},
{
title:"GridPanel - Finding a Row Index Based on a Value",
threadid:132361,
username:"djdevz",
userid:261088,
dateline:1304507136,
postid:598238,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1304518339,
lastposter:"djdevz",
excerpt:"Hi, my aim is to select a row in the grid (and focus on the row), based on the 'egId' value in a (plain HTML) textbox.\n\nfor instance if the 'egId' val..."
},
{
title:"how to use Ext js into WaveMaker",
threadid:132381,
username:"amit4767",
userid:249139,
dateline:1304516738,
postid:598315,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304516738,
lastposter:"amit4767",
excerpt:"I just today saw what wavemaker can do and I am really very excited!\r\n\r\nHave you ever considered using ExtJS instead Dojo?\r\n\r\nI think that ExtJS offer..."
},
{
title:"Dynamically creating and populating a form, from a datastore record",
threadid:132355,
username:"dve",
userid:261524,
dateline:1304503009,
postid:598213,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304513530,
lastposter:"Tim Toady",
excerpt:"I am trying to dynamically populate a ExtJs FormPanel from a datastore record.\nWhen the user clicks on a row in the GridPanel, the buildForm method is..."
},
{
title:"newbie questing",
threadid:132208,
username:"lwolf",
userid:265010,
dateline:1304424615,
postid:597725,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304510542,
lastposter:"lwolf",
excerpt:"Hi everybody!\nI'm a newbie at ExtJS. I'm currently reading \"Learning Ext JS 3.2\", during this book we wrote a simple app located in one file. Everythi..."
},
{
title:"the render event of a dateField isn't fired",
threadid:132364,
username:"flamant",
userid:165442,
dateline:1304509795,
postid:598254,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304509795,
lastposter:"flamant",
excerpt:"Hi,\n\nI build a DateField on which I add a render listener\n\n\n\n result = new Ext.form.DateField({\n id: \"I\" + fieldId,\n ..."
},
{
title:"How do you handle waiting on multiple store loads",
threadid:132229,
username:"netsuo",
userid:3599,
dateline:1304430452,
postid:597790,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304509443,
lastposter:"netsuo",
excerpt:"Hi,\r\n\r\nI've been trying to find the best method to do that and right now it's not a very \"clean\" code.\r\n\r\nLet's say I have to load 5 different datasto..."
},
{
title:"Where are the new Guides",
threadid:132360,
username:"bardaste",
userid:210341,
dateline:1304506115,
postid:598230,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1304506468,
lastposter:"bardaste",
excerpt:"Hello. I am seeing the 2010 conference videos and in this one (http:\/\/vimeo.com\/17666102) new Guides are mentioned. But I cannot find them on sencha.c..."
},
{
title:"Read any good books lately?",
threadid:132274,
username:"tcsargent",
userid:268369,
dateline:1304443787,
postid:597929,
forumtitle:"Community Discussion",
forumid:68,
replycount:2,
lastpost:1304506461,
lastposter:"CutterBl",
excerpt:"Any suggestions out there for a novice wanting to learn v4?"
},
{
title:"Ext.ux.grid.GridFilters",
threadid:126431,
username:"westvovik",
userid:112077,
dateline:1299770852,
postid:579241,
forumtitle:"Ext 3.x: User Extensions and Plugins",
forumid:42,
replycount:5,
lastpost:1304502614,
lastposter:"westvovik",
excerpt:"Greetings\n\nThere was a problem with filters, \nThere is a button which creates Grid in tabPanel.\n\nIf already the table is created, the second forms wit..."
},
{
title:"Having issues with a horizontal scrollbar within a form panel",
threadid:132353,
username:"extjs@araneum.nl",
userid:181116,
dateline:1304502068,
postid:598207,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:0,
lastpost:1304502068,
lastposter:"extjs@araneum.nl",
excerpt:"Hello,\n\nI've been searching this forum for an answer but couldn't find one, there were I believe some issues with defaultType and defaultAnchor, and I..."
},
{
title:"Ext.Direct \/ Cross Site Scripting",
threadid:132071,
username:"hl_igig",
userid:147130,
dateline:1304347355,
postid:597299,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304497451,
lastposter:"hl_igig",
excerpt:"Is there any way to get Ext.Direct runnable from another domain?\r\n\r\nany help would be appreciated\r\n\r\n\r\ngreetings"
},
{
title:"Looking for -trainer\/consultant Bxl Belgium",
threadid:132339,
username:"colinm",
userid:215587,
dateline:1304496648,
postid:598175,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:0,
lastpost:1304496648,
lastposter:"colinm",
excerpt:"Hi,\r\nwe are a young startup in web-genomics based on zend-extjs3.3 ... 4 developers. we are looking for a person who could give us a one\/two day class..."
},
{
title:"Display date\/time as GMT, not browser default",
threadid:132316,
username:"forumuser1080",
userid:241722,
dateline:1304474213,
postid:598090,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304495949,
lastposter:"florian_cargoet",
excerpt:"I have a gridpanel that has a date\/time column in it. I really want to display the date\/time as GMT date\/time not the browsers default time.\n\nI have ..."
},
{
title:"dynamic remove and insert field in table layout",
threadid:132323,
username:"cnwy",
userid:98054,
dateline:1304484823,
postid:598114,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304492829,
lastposter:"kendoctor",
excerpt:"I have tried to replace the textfield with datefield in a table layout . \nI tried to remove the textfield first and then insert the datefield in the s..."
},
{
title:"How to Scroll the Topic List ubder tha panel",
threadid:132331,
username:"manishbit81",
userid:249617,
dateline:1304491104,
postid:598139,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:1,
lastpost:1304491151,
lastposter:"jgarcia@tdg-i.com",
excerpt:"I have added a panel under which there is a Topic List,when form loads data is populating from database but its not scrolling,how to solve this issue ..."
},
{
title:"Wats new EXT 4",
threadid:132224,
username:"anbu.gn",
userid:219557,
dateline:1304428898,
postid:597778,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:2,
lastpost:1304491111,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Hi All \r\n can any one tell me what's new features in EXT 4.."
},
{
title:"Looking for ExtJS developers",
threadid:132272,
username:"baumsh",
userid:254521,
dateline:1304442832,
postid:597920,
forumtitle:"Ext: Open Discussion",
forumid:6,
replycount:1,
lastpost:1304491072,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Hi,\r\n\r\nI'm a bit new to the Sencha forum so please forgive me if this is the not the right place to post the following.\r\n\r\nExtJS Developers Wanted \r\n\r..."
},
{
title:"$2800 for training... is it worth it? Where to stay in Redwoord City?",
threadid:132265,
username:"stewardsencha",
userid:181925,
dateline:1304440795,
postid:597903,
forumtitle:"Community Discussion",
forumid:68,
replycount:1,
lastpost:1304490807,
lastposter:"jgarcia@tdg-i.com",
excerpt:"Considering http:\/\/www.sencha.com\/company\/events\/may-23-26-fast-track-to-ext-js-4-development\/\n(Fast track to extJs4 in Redwood City end of this month..."
},
{
title:"Combobox opening problem",
threadid:132230,
username:"marzieh312",
userid:220824,
dateline:1304431197,
postid:597801,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304488801,
lastposter:"marzieh312",
excerpt:"Dears,\n\nI have a problem in expanding comboboxes in two different window in second time.\nAs you can see in below code, there is two buttons that show ..."
},
{
title:"TabPanel: not Loaded completly that tabs",
threadid:132049,
username:"parsbin",
userid:246688,
dateline:1304338325,
postid:597219,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:3,
lastpost:1304486154,
lastposter:"parsbin",
excerpt:"i`v using Tabpanel:\nwhen open a tab,that tabs contents not loaded completely.but when i`v Reloaded that tab, it loaded completly.\n25860 \n\n25861"
},
{
title:"Strange error - appears only on IE8 - not on FF or Chrome",
threadid:132238,
username:"yallonb",
userid:266391,
dateline:1304432954,
postid:597818,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:5,
lastpost:1304485853,
lastposter:"yallonb",
excerpt:"Hi.\n\nI have a program I've written. If works great on FF (3.6.17) and Chrome (11), but on IE8, for some reason, it gives me this error:\n\n\nUser Agent: ..."
},
{
title:"XTemplate - accessing nested json",
threadid:132314,
username:"asagala",
userid:88641,
dateline:1304469589,
postid:598082,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304483420,
lastposter:"asagala",
excerpt:"I am having trouble accessing nested json properties.\n\nI have a DataView with a template defined like below.(simplified for the sake of this explanati..."
},
{
title:"Ext js 3.3.1 text area",
threadid:132313,
username:"nithya_l",
userid:264543,
dateline:1304469156,
postid:598081,
forumtitle:"Ext 3.x: Help",
forumid:40,
replycount:2,
lastpost:1304478763,
lastposter:"httpdotcom",
excerpt:"Hi,\n\nI have a set of text areas i my form. When I chose the value in a dropdown above the text area, the text area should get populated with the descr..."
}
]
}
});
});