6
I Use This!
Activity Not Available

News

Analyzed 3 months ago. based on code collected over 5 years ago.
Posted over 14 years ago by dariusdamalakas
Have you looked at any of examples? There are plenty of samples with your described functionality
Posted over 14 years ago by eitanmiz
Hello, Is there any SourceGrid that available for WPF neither SILVERLIGHT? Is that SourceGrid has the same abilities as the win-form SourceGrid? I need the exact link, please, if any.   Thanks :)
Posted over 14 years ago by aoks
Hello, I need to implement multiple cell selection behaviour like in MSexcel or OOcalc: selection has its star position (the first selected cell), and selection has its end position - ActiveCell, and all cells that are in selection area( between ... [More] start and end positions) are selected when end position of selection changes, then new cells are selected automatically if selection area grows, and cells get deselected when selection area shrinks. is it posiible with the eSourceGrid? ThankYou! [Less]
Posted over 14 years ago by Hypnotron
1) Seems to me if you want to drag and drop from treeview or listview onto the grid, you just grid.AllowDrop = true ,   set your grid.DragEnter, .DragDrop events to a proper handler   and in DragEnter  event make sure to e.Effect = ... [More] e.AllowedEffect   to enable the operation if the data  is kosher.   2) when you want to drag from the grid to something like a listview as you're talking about it doesn't make sense in my mind to have this hard coded into the sourcegrid control.  A good example, if your grid is being used in some plugin dll created by a user and loaded by your host application, then your host application wont necessarily know anything about the custom types employed by the SourceGrid used by the user's custom plugin.  Thus the drag and drop data should be formatted to the listview or treeview in a way that is specified by the host application and which the plugin developer must follow. That is one clear example of why its good these drag/drop handlers within the control are now dead. You should be handling the DoDrag  operation yourself and wrapping the data in a format that your treeview or Listview OnDragDrop event will know how to handle. [Less]
Posted over 14 years ago by borchanii
  "Is it possible to auto size row height with word wrap? To get exactly same result as in case of double click at the edge of row header. I'm trying:" take a look here http://sourcegrid.codeplex.com/Thread/View.aspx?ThreadId=233494 i haven't tested with word wrap
Posted over 14 years ago by Groffy
Hello, I'm just evaluating the Grid and would like to do the same with RTF formated cell. Did you find a solution for your problem?   With best regards - Ulrich Groffy
Posted over 14 years ago by borchanii
I thing i getted  , sorry for disturb   just to share the source from the code   at SourceGrid.Cells.Controllers.Resizable On event OnDoubleClick   public override void OnDoubleClick(CellContext sender, EventArgs e) { ... [More] base.OnDoubleClick(sender, e); Point currentPoint = sender.Grid.PointToClient(System.Windows.Forms.Control.MousePosition); Rectangle cellRect = sender.Grid.PositionToRectangle(sender.Position); float distance; DevAge.Drawing.RectanglePartType partType = LogicalBorder.GetPointPartType(cellRect, currentPoint, out distance); if ((ResizeMode & CellResizeMode.Width) == CellResizeMode.Width && partType == DevAge.Drawing.RectanglePartType.RightBorder) { sender.Grid.Columns.AutoSizeColumn(sender.Position.Column); } else if ((ResizeMode & CellResizeMode.Height) == CellResizeMode.Height && partType == DevAge.Drawing.RectanglePartType.BottomBorder) { sender.Grid.Rows.AutoSizeRow(sender.Position.Row); } }     [Less]
Posted over 14 years ago by borchanii
Hello , I am using sourcegrid  as usual  , a good option appeared for  me under this greategull grid , the event doubleclick on the seperator between two header do a function of autosize for a best show  , i tried this function under excell ... [More] , work well , under the explorer workwell :)) my question is how to reproduce this event by code  ? it can be better the the exist one  autosizecell ( better performance  and  better result ) i tested  this event under windows seven 64 bit but i think it work also under  xp and other version I uploaded the demo if my explication is poor .gif demo low  quality : http://www.multiupload.com/96RDFFEB4Z .avi demo hight quality : http://www.multiupload.com/MIJ9T54IZG i hope some one know the answer  , may be a hook from windows  , may be not .     [Less]
Posted over 14 years ago by dariusdamalakas
subgrids are not supported
Posted over 14 years ago by trapper892
I want to bind relational data to grid,  how can manage multiple table in sourcegrid. For example below picture.