c# - Add SpecialRowPromptField to multiple columns on ultragrid -


i have filter row @ top of grid 2 columns. if use code set specialrowpromptfield sets on second column. there way set multiple columns?

    e.layout.bands[0].specialrowpromptfield = e.layout.bands[0].columns[0].key;     e.layout.bands[0].specialrowpromptfield = e.layout.bands[0].columns[1].key; 

thanks,


answer:

looks not can done.

as

specifies key of column cell position special row prompts in.

you can specify 1 column (by key). other option available (as far know) let property null. in way prompt spans first column on adjacent columns.

of course, code, set, prompt field, column @ index 1 because last 1 used overwrite previous setting.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -