The dropdown contains a grid. Any way to enable the outlook group-by feature in this grid?
TIA, DW
This is not curently supported. Would you basically want 1 group to seperate groups or do you want an interactive Outlook Group By scenario?
Yeah, in which case I suppose I could paginate by group name. But I suppose the real limitation is the inherent maximum of 50 results per page.
Hello,
I am not sure what you mean by maximum of 50 results per page. The combo supports any range of row that you specify using the following properties :
WebCombo1.DropDownLayout.RowsRange
OR for paging
WebCombo1.DropDownLayout.Pager.PageSize
If you want to use a group by grid and a drop down editor box, I would suggest you use the UltraWebGrid itself and use the UltraTextEditor and show a button on the right to make it look like a combo editor.
WebTextEdit.ButtonAppearance.CustomButtonDisplay = OnRight;
Now, handle the WebTextEdit's custom button press event on the client and show you grid underneath the text box. This will require some custom javascript code, but overall should give you the behavior you are looking for.
-Taz.
PageSize returns a maximum of 50 results, regardless of whether or not you set it to higher than that.