Results 1 to 2 of 2

Thread: TANYA : Focus Di DATAGRID AS2

  1. #1
    inderakula is offline Anggota BabaFlash
    Join Date
    Mar 2012
    Posts
    16

    Default TANYA : Focus Di DATAGRID AS2

    Ada yang tau ga cara nya memfokuskan baris di datagrid?
    misalnya saat diklik button maka datagrid akan focus didata baris ke 4.
    saya pake As2.

    mohon pencerahannya ya master..
    thx sebelumnya.

  2. #2
    42Unregistered is offline Flash Geek
    Join Date
    Nov 2008
    Posts
    790

    Default

    Quote Originally Posted by inderakula View Post
    Ada yang tau ga cara nya memfokuskan baris di datagrid?
    misalnya saat diklik button maka datagrid akan focus didata baris ke 4.
    saya pake As2.

    mohon pencerahannya ya master..
    thx sebelumnya.
    namabutton.onRelease=function() {
    namadatagrid.selectedIndex = 3;
    }

    jika kamu ingin datagrid langsung scroll ke index yang dituju maka komponen datagrid harus direfresh (ini berlaku utk semua komponen, termasuk combobox: refresh... refresh.. refresh)
    kita kemudian menyuruh datagrid scroll ke index dengan vPosition (vertical position datagrid ada di posisi index yg kita mau, yakni 3 (atau item ke-4))

    namabutton.onRelease=function() {
    namadatagrid.selectedIndex = 3;
    myInt = setInterval (buildDatagrid, 10, namadatagrid);
    }

    function buildDatagrid() {
    namadatagrid.vPosition = namadatagrid.selectedIndex
    clearInterval(myInt)
    }

Similar Threads

  1. TANYA: UPLOAD gambar ke MySQL dengan PHP dan AS2
    By inderakula in forum Beginner
    Replies: 13
    Last Post: 05-09-2012, 05:42 PM
  2. tanya : AS2 pindah antar scene secara Random
    By brul in forum ActionScript
    Replies: 6
    Last Post: 10-02-2011, 04:46 PM
  3. Cara akses komponen datagrid
    By ickoz in forum ActionScript
    Replies: 1
    Last Post: 10-15-2010, 04:32 PM
  4. about datagrid
    By HyperX in forum Open Source
    Replies: 0
    Last Post: 05-22-2009, 09:57 AM
  5. Photoshop Tutorial: Easy soft focus and glow effect
    By babaforum in forum Feed Milis BabaFlash
    Replies: 0
    Last Post: 04-14-2009, 01:30 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •