Search Type: Posts; User: gigas01

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Hi,

    I'll show you the ui first.

    39406

    there are two event listener on this table.

    if the user click a row, it has to popup a new window with googlemap
  2. Replies
    3
    Views
    567
    var Employee = Ext.data.Record.create([ {name: 'firstname'}, ...]);// update the 2nd record in the store:var rec = myStore.getAt(1);// set the value (shows dirty flag):rec.set('firstname',...
  3. Replies
    3
    Views
    567
    Hi all,

    I have to set some cells that i want to.

    However, i googled some codes related to this. Most of the code was using SelectionModel.

    But this is not what i want. This is used when the...
  4. Thank you for the reply, but i think it has a little problem.

    dataindex: (condition) ? 'field1' : 'field2'

    in the condition i can't use the conditions that i want.

    i want to use one of the...
  5. Hi all,

    This is what i'm getting from the server side

    38924

    and this is the displaying ui
    38925

    Here, you can see two columns Immediate Res~, Extended Res
  6. Hi all,

    This is what i'm getting from the server side

    38924

    and this is the displaying ui
    38925

    Here, you can see two columns Immediate Res~, Extended Res
  7. Replies
    1
    Views
    256
    Solved it :)


    var store = new Ext.data.JsonStore({ fields: ['ID','Name','reportToICRole','action'], url: MyApp.getApiUrl('JobActionsFinalSummaryController'), writer: new...
  8. Replies
    1
    Views
    256
    Hello all,

    In this page there is a grideditor panel and the data loaded from the database will be displayed.

    The Server side response is like this.

    38919

    And i want to display all the data
  9. I have to send this parameter 'name' to the new page, but i don't have any idea to send it.

    onAddStaff: function(name) {

    document.location.hash = "#chain-err-job-action";
    ...
  10. Thank you

    i utilized your guys advice and succeeded :)
  11. my data means what i declared. 'option1' and 'option2'

    i want to display 'option1' on the combobox
  12. Thanks for the reply, but my requirement is a little different.

    I think this setValue is just writing the string on the combobox.

    However, i want my data to be displayed

    I tried

    ...
  13. Here i have a combo box

    In there, it has two options

    option1

    option2

    I want to make the combobox to have been already chosen
  14. Replies
    3
    Views
    436
    Thanks man now it works!
  15. Replies
    3
    Views
    436
    I can't figure it out what is the problem is.

    I can assume that it is cuz of the asynchronous, but i'm not sure how to solve it

    Strange thing is, if i turn on the debug mode and see the watch...
  16. Replies
    11
    Views
    1,188
    easy and simple way :)

    thanks guys

    Ext.Ajax.request({
    url:'Controllers?controller=ChangePW&token='+token,
    method: 'POST',
    params : {},
    success : function(response) {...
  17. Replies
    11
    Views
    1,188
    var emailText;
    var userEmail = new Ext.data.Store({
    reader: new Ext.data.JsonReader({
    fields: [
    'email'
    ],
    ...
  18. Replies
    11
    Views
    1,188
    yes, i know what you are saying. But i'm not used to extjs, so i have to think about what event, and function should i have to use to load the data right after loading the new page. how can i call a...
  19. Replies
    11
    Views
    1,188
    Thanks for the help, but the problem is, time situation is different.

    I have to load the data, right after user gets to this page,

    not after the user press the buttons and submit it :(

    i...
  20. Replies
    11
    Views
    1,188
    Thanks guys

    I'll try to utilze your codes

    thank you!
  21. Replies
    11
    Views
    1,188
    Hello all,

    I have to get data from the controller part.

    I've succeeded getting response from the controller like this.

    {"email":"test@test.com","success":true}

    After this how do i get...
  22. success : function(var) { var.url = "address";}I've realized that i could set the url accessing like this.I don't think this is a good way, but anyway it works.
  23. Hi guys.

    I'm making a sign-up module right now.

    As you know, if the user enters the information and it has to do two tasks.

    The first thing is to valid check, if the id is already exists.
    ...
  24. Hello, I'm gonna use two framework.

    front-end will be sencha

    and

    back-end will be codeigniter

    The problem is these two all have their own auto-generated folder structure.
  25. i solved it. it is coz of the time.

    i had to callback it.

    store.load(
    {
    callback : function(){
    //console.log(this.getData().getAt(0).get('resultText'));
    result =...
Results 1 to 25 of 60
Page 1 of 3 1 2 3