How to reset focus to the ultragrid cell after resizing the form size in C# -


i have ultragrid , resizing form size dynamically according no. of rows when user applied filter on it. want reset focus on ultragrid cell after form resize. have tried in ultragrid1_afterrowfilterchanged event.

ultragridcell acell = this.ultragrid1.activerow.cells["companyname"]; this.ultragrid1.activecell = acell; this.ultragrid1.focus(); this.ultragrid1.performaction(ultragridaction.entereditmode, false, false); 

but didn't work.

i want alternate solution it.

when rows filtered out grid active row not changing. in if active row filtered out assume code not anything. select first not filtered out row may use code in afterrowflterchanged event:

var notfilteredoutrow = this.ultragrid1.rows.firstordefault(r => !r.isfilteredout); if (notfilteredoutrow != null) {     this.ultragrid1.activecell = notfilteredoutrow.cells[0];     this.ultragrid1.focus();     this.ultragrid1.performaction(ultragridaction.entereditmode, false, false); } 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -