Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    executeRemove does not refresh the ListGrid

    we have the followign code

    Code:
    isc.ListGrid.create({
    	ID:"file_itemList",
    	dataSource:"FilesDatasource",
    	width:450,
    	height:"150",
    	canRemoveRecords:true,
    	fields:[
    	 {name:"removeField", title:"", type:"icon", isRemoveField:true, iconWidth: 10, iconHeight:10, canEdit:false},
    	 {name:"Id", title:"Id", width:40},	    
    	 {name:"fileName", title:"File Name",useTextField:true,width:450}
    	]});
    then there is a corresponding datasoruce.xml and a datasoruce.java where we are deleteing the record based on the id, everything is find in the serverside
    but in the Listgrid it does not refresh.

    we are using version8.1 and IE8

    #2
    The FAQ (sticky post in SmartGWT forum) on grids not updating applies to this - please consult it.

    Comment


      #3
      please give me the link for the solution
      im unable to find FAQ (sticky post in SmartGWT forum)

      Comment


        #4
        Here is a direct link.

        Comment

        Working...
        X