Tuesday, February 16, 2021

Comcast CM-500 with Linksys G wireless

1. Connect Netgear CM500 to Cable wall port

2. Power on CM500

wait to see all light(power,up stream/downsteam/online) turn solid green

(if not, change to a different Cox wall port...), this is a must be before go to next. 


3. Connect PC to Netgear internet port and try to access google.com(if no access, call Camcast for 4 and 5)

4. Active your account

5. Add Netgear to your account

If succeed, go next:

6. Connect Netgear internet port to Linsys Wireless Internet port

192.168.1.1

Change name/password...

Make sure to enable MAC Address Clone(Clone to connected PC)

Don't forget this, otherwise internet will not work for Wireless

connect pc to Linksys Cable port(shall have access)

7. Reboot Linksys

Shall have wireless

Monday, January 11, 2021

APEX: PopUP LOV multiple columns width control

 put following JS in the item 'initial js to run' field to control the columns width:

function(options) {

  var col, columns = options.columns;


  // set a minimum width for the dialog

  options.minWidth = 800;


  // set custom column widths for each column

  col = columns.SERVER_NAME;

  col.width = 120;

  col = columns.ENVIRONMENT;

  col.width = 220;

  col = columns.APP;

  col.width = 220;


  // the last two columns do not stretch

  col = columns.LOCATION;

  col.width = 80;

  col.noStretch = true;

  return options;

}