text_search works on some page but not on some.

Hello all

I am facing some weird situation. I have two pages %98 identically same but one page has text_filter works as it should but other page not.

Here is working page code

[code]//Grid
SOLG = SOLW.attachGrid();
SOLG.setImagePath("/statics/dhtmlx/common/imgs/");
SOLG.setHeader(“No,Firm,Office,Addr,Tel,Pos,Date Created,Date Modified,Date Deleted”);
SOLG.attachHeader("#numeric_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter");
SOLG.setColumnIds(“id,firm,office,Faddr,tel,Fpos,Fdc,Fde,Fdd”);
SOLG.setColSorting(“int,str,str,str,str,str,str,str,str”);
SOLG.setInitWidths(“80,200,200,400,100,100,150,150,150”);
SOLG.setColAlign(“right,left,left,left,left,left,left,left,left”);
SOLG.enablePaging(true,25,3,“pager”);
SOLG.setPagingSkin(“toolbar”);
SOLG.i18n.paging = App.LocalizePaging;
SOLG.load("/api/office/all?system=1",function(){

	        SOLG.loadHiddenColumnsFromCookie("hidden-system-office-column-saving");
	        SOLG.loadSizeFromCookie("save-system-office-size-to-cookie");
	        SOLG.loadSortingFromCookie("sorting-system-office-save");
	        SOLG.loadOrderFromCookie("order-system-office-saving"); 
	
	        SOLW.progressOff();  
	
	    },"js");
	    SOLG.init();
	    SOLG.enableHeaderMenu();
	    SOLG.enableColumnMove(true);
	    SOLG.setEditable(false);[/code]

And this one is not working

[code]//Grid
SULG = SULW.attachGrid();
SULG.setImagePath("/statics/dhtmlx/common/imgs/");
SULG.setHeader(“No,Firm,Office,User Name,First Name,Last Name,Mobile,Level,Pos,Num of Login,Date Created,Date Deleted”);
SULG.attachHeader("#numeric_filter");
SULG.setColumnIds(“id,Ffirm,Foffice,fuser,ffname,flname,mob,Flevel,Fpos,Fcount,Fdc,Fdd”);
SULG.setColSorting(“int,str,str,str,str,str,str,str,str,int,str,str”);
SULG.setInitWidths(“80,250,150,120,120,120,100,202,90,90,150,150”);
SULG.setColAlign(“right,left,left,left,left,left,left,left,left,left,left,left”);
SULG.enablePaging(true,25,3,“pager”);
SULG.setPagingSkin(“toolbar”);
SULG.i18n.paging = App.LocalizePaging;
SULG.load("/api/user/all?system=1",function(){

	         SULG.loadHiddenColumnsFromCookie("hidden-system-user-column-saving");
			 SULG.loadSizeFromCookie("save-system-user-size-to-cookie");
			 SULG.loadSortingFromCookie("sorting-system-user-save");
			 SULG.loadOrderFromCookie("order-system-user-saving"); 
        
            SULW.progressOff();  

        },"js");
        SULG.init();
        SULG.enableHeaderMenu();
        SULG.enableColumnMove(true);
        SULG.setEditable(false);[/code]

Seriously i am trying to find out where the problem is for two days and getting headache but loosing hairs.

Really appreciate for any help

Regards

Unfortunately the problem cannot be reproduced locally.
Please, make sure that you don’t use the dynamic loading in the second example.

If the the problem still occurs for you please, share with a demo link, where the problem can be reconstructed.