Rank: Member Groups: Member
Joined: 10/11/2007 Posts: 12
|
Hi
I have implemented a grid on web form, these are some of the problems im experiencing. The grid is running in client mode.
1. Headers are not aligned with the records display. - I am setting some column widths to 0 is this a problem, if so is there another way to hide the columns 2. Cannot get the edit to work by setting fullrow to false. 3. can i load images into columns for edit, and delelt purposes, dont see a sample where you have done this. 4.how do i change the fixed column cell style.
Your assistance is greatly appreciated.
kind regards, Brandon
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, As to your questions: 1. I don't think you can set column width as 0. Our Grid currently does not support invisible columns. So if you do not wish to see a column, you should try to remove it from the server side code. If you only wish to carry some data to the client side, you can set the Grid's KeyField property; 2. Cell editing only works for editable columns. You can find more details about editing here: http://www.essentialobjects.com/ViewDoc.aspx?t=Grid%2fediting.html3. You can set the EditCommandColumn's EditText to any HTML, for example, an image tag; 4. You would use this property to change the fixed column cell style: http://www.essentialobjects.com/ViewDoc.aspx?t=EO.Web.GridItemStyleSet.FixedColumnCellStyle.htmlHope this helps. Thanks!
|