1. #1
    Sencha User
    Join Date
    Feb 2011
    Posts
    3
    Vote Rating
    0
    yx200404 is on a distinguished road

      0  

    Default I can't update the grid's store,pls help me

    I can't update the grid's store,pls help me


    This is my code.
    when a grid was inited,i want to modify some colunms values.
    Code:
    ColumnConfig column = new ColumnConfig();
    		column.setId("net");
    		column.setHeader("net");
    		column.setWidth(100);
    		configs.add(column);
    .....
    if(null!=store){
    			for(BeanModel model : store.getModels()) {
    				model.set("net","ONLINE");
    			}
    			store.commitChanges();
    		 }
    .....
    but when the program running to for,the "net" colunm of the grid was not been changed...please help me to fix it.thanks very much.

  2. #2
    Sencha User
    Join Date
    Feb 2011
    Posts
    3
    Vote Rating
    0
    yx200404 is on a distinguished road

      0  

    Default


    OH..i know..
    it's easy >o<


    store.getRecord(model).set("net",message.getValue());

    that's OK

  3. #3
    Software Architect
    Join Date
    Sep 2007
    Posts
    13,753
    Vote Rating
    113
    sven is just really nice sven is just really nice sven is just really nice sven is just really nice sven is just really nice

      0  

    Default


    store.update(model) will also work if you do not want to use Record's.