// 02/08/2008 We need to build a list of the fields used by the search clause. protected void AppendGridColumns(SplendidGrid grd, string sGRID_NAME, UniqueStringCollection arrSelectFields) { // 11/17/2007 Convert all view requests to a mobile request if appropriate. sGRID_NAME = sGRID_NAME + (this.IsMobile ? ".Mobile" : ""); grd.AppendGridColumns(sGRID_NAME, arrSelectFields); }
protected void AppendGridColumns(SplendidGrid grd, string sGRID_NAME) { AppendGridColumns(grd, sGRID_NAME, null); }