Search Type: Posts; User: dlbjr
Search: Search took 0.03 seconds.
-
24 Sep 2010 1:15 PM
Jump to post Thread: Multi-line Panel Titles by dlbjr
- Replies
- 2
- Views
- 590
var strTitle = '<table><tr><td align="left">Title Line 1</td><td align="right"> </td></tr><tr><td align="left">Title Line 2</td><td align="right">12345</td></tr></table>';
var panel = new... -
28 May 2010 8:44 AM
Jump to post Thread: Get msg from Ext.MessageBox by dlbjr
- Replies
- 2
- Views
- 552
If you are setting the text, don't you already have it?
var message = 'Die Komponenten der Anwendung werden geladen';
Ext.MessageBox.progress('Wird geladen...', message, '0 von 0 Komponenten... -
31 Mar 2010 7:25 AM
Jump to post Thread: Classic ASP by dlbjr
- Replies
- 9
- Views
- 3,311
Something to try
-
23 Mar 2010 9:39 AM
Jump to post Thread: How do i get at the checkbox? by dlbjr
- Replies
- 7
- Views
- 1,293
I like to create each item as an object then piece them together.
Seems easier and cleaner for me.
var cb1 = new Ext.form.Checkbox({
fieldLabel: '',
hideLabel: true,
... -
23 Mar 2010 8:43 AM
Jump to post Thread: How do i get at the checkbox? by dlbjr
- Replies
- 7
- Views
- 1,293
var cb = new Ext.form.Checkbox({
fieldLabel: 'Remember location',
hideLabel: false,
boxLabel: '',
checked: false
});
var form = new Ext.form.FormPanel({
bodyStyle:... -
12 Mar 2010 12:36 PM
- Replies
- 4
- Views
- 1,264
new Ext.ToolTip({
target: object,
title: 'Title',
autoHide: false,
closable: false,
draggable: false,
trackMouse: false,
dismissDelay: 15000, // auto hide... -
24 Feb 2010 7:23 AM
- Replies
- 4
- Views
- 1,170
From my experience:
eye candy = $$$
"eye candy" helps market and sale any project. -
19 Feb 2010 1:09 PM
- Replies
- 10
- Views
- 4,066
To answer your question!
You can append the home made querystring to the back of the URL. Remember it's just a string. -
19 Feb 2010 9:58 AM
- Replies
- 10
- Views
- 4,066
Ext.Ajax.request({
url: Config.dataURL,
method: 'GET',
params: {
f: facetName,
t: totalResults,
q: encodedQuery,
r: redirect,
ws:... -
18 Feb 2010 7:20 AM
- Replies
- 11
- Views
- 1,451
Well written Mike! We use LDAP also. We have created a black box web service on our local AS400 to authenticate against internal then external LDAP servers. Then the black box sets authorization...
-
18 Feb 2010 6:48 AM
- Replies
- 11
- Views
- 1,451
Stop thinking of one application.
We have one authentication method and many sub web application as in a manufacturing facility. We do not maintain Session State on the server. It is not needed.... -
18 Feb 2010 5:48 AM
- Replies
- 11
- Views
- 1,451
In that case, you can change what ever parameter you are using to tell the server who you are to some other value. It can be the username, level, or any other value.
My intent was to show you... -
17 Feb 2010 10:15 AM
- Replies
- 2
- Views
- 737
var g = new Ext.grid.GridPanel({
loadMask: { msg: Config.load_mask, store: ds },
viewConfig: { emptyText: Config.grid_no_data },
title: '',
store: ds,
height: 400,
... -
16 Feb 2010 8:33 AM
- Replies
- 4
- Views
- 960
var ds = new Ext.data.ArrayStore({
fields: ['myId','displayText'],
data: [[1, 'dbp'], [2, 'lbp']]
}),
var cb = new Ext.form.ComboBox({
store: ds,
mode: 'local',
... -
12 Feb 2010 7:23 AM
Jump to post Thread: How to check datastore is loaded? by dlbjr
- Replies
- 18
- Views
- 13,061
var isLoaded = false;
var ds = new Ext.data.JsonStore({
url: Config.dataURL,
root: 'data',
fields: [
{ name: 'role_id', type: 'string' },
{ name: 'role_desc',... -
10 Feb 2010 7:20 AM
Jump to post Thread: add sum of record in graph title by dlbjr
- Replies
- 1
- Views
- 635
function getFieldSum(store, fieldname){
var sum = 0;
store.each(function(r) {
try{
sum = sum + parseFloat(r.get(fieldname).toString());
}
catch (err)... -
5 Feb 2010 5:56 AM
- Replies
- 11
- Views
- 1,451
//Create a Global Object such as this
var User = {
Username: '',
Password: '',
Name: '',
UserLevel: 0
};
//fetch data on log in and set values of the Object
User.Username =... -
4 Feb 2010 5:29 PM
- Replies
- 6
- Views
- 1,628
Yes!
No, the ds is the "data store" used to populate the drop down Combo Box.
counter++; is not needed. It was code I copied from and missed taking this line out. Sorry! -
4 Feb 2010 5:58 AM
- Replies
- 6
- Views
- 1,628
//Global variable to function
var isDisabled = true;
//Colum in Editable Grid
, {
header: 'Title',
dataIndex: 'score',
align: 'center',
hideable: true,
sortable: true, -
3 Feb 2010 4:03 AM
- Replies
- 3
- Views
- 895
ds.on('add', function(store, record, op) {
saveChanges(store, record);
});
ds.on('update', function(store, record, op) {
saveChanges(store, record);
});
function... -
27 Jan 2010 11:20 AM
- Replies
- 3
- Views
- 1,003
Date.patterns = {
ISO8601Long: 'Y-m-d H:i:s',
ISO8601Short: 'Y-m-d',
ShortDate: 'n/j/Y',
ShortDate2: 'Y/m/d',
LongDate: 'l, F d, Y',
FullDateTime: 'l, F d, Y g:i:s... -
22 Jan 2010 7:34 AM
Jump to post Thread: Combo box value by dlbjr
- Replies
- 1
- Views
- 511
var cb = new Ext.form.ComboBox({
store: ds,
mode: 'local',
valueField: 'id',
displayField: 'desc',
fieldLabel: 'field Label',
triggerAction: 'all',
width:... -
16 Jan 2010 9:40 AM
- Replies
- 10
- Views
- 10,646
I'm much as you when apportioning with others! I do not have the patience or time to deal with simple questions. It becomes abuse over time! I enjoy pondering a complex issue with acute minds such as...
-
11 Jan 2010 8:18 AM
- Replies
- 4
- Views
- 4,637
//Global Var
var maxLoads = 3; //Amount of needed loads
var loadCounter = 0;
var loadMask = new Ext.LoadMask(Ext.getBody(), {
msg: '<center>Loading - Please wait<br/><br/><img... -
8 Jan 2010 11:59 AM
Jump to post Thread: Onclick on checkbox by dlbjr
- Replies
- 4
- Views
- 1,655
var cb = new Ext.form.Checkbox({
fieldLabel: '',
hideLabel: true,
boxLabel: 'Do you need help',
checked: false// True or false
});
cb.on('check', function() {
//Do Something
});
Results 1 to 25 of 106
