Home - Forums-.NET - FlyGrid.Net (Windows Forms) - ellipsis/link at the end of a cell

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

ellipsis/link at the end of a cell
Link Posted: 17-Oct-2006 10:47
Yes.
Problem in incorrect displaying ellipsis [...] button only.
Link Posted: 17-Oct-2006 13:02
Ok, thats not a problem. Like I said I dont care if its ellipses or an arrow, but either way that kind of brings me back to my other question, where do I set the action for this button? Right now its greyed out which I assume is because no action is associated with it.
Link Posted: 17-Oct-2006 23:30
Please use FlyGrid.DialogButtonClick to set action for this button style,
button just incorrectly displaying (really this button is enabled), but FlyGrid.DialogButtonClick will fire when you click on this utton.
Link Posted: 18-Oct-2006 08:28
I'm sorry but can you provide some sample code? I know im probably being a little bit of a PIA but I appreciate all your help.
Link Posted: 18-Oct-2006 09:13
This example shows FolderBrowserDialog when user clicks on ellipsis  button [...]:
[c#]
//FlyGrid initialization
private void InitGrid(FlyGrid flyGrid)
{
  //....
  flyGrid.Columns.Items[0].Caption = \"Application Folder\";
  //setup editor style
  flyGrid.Columns.Items[0].EditorStyle = EditorStyle.Dialog;
  //connect to the DialogButtonClick event handler
  flyGrid.DialogButtonClick += new NineRays.Windows.Forms.FlyGrid.DialogButtonClickHandler(flyGrid_DialogButtonClick);
}

//DialogButtonClick event handler
private void flyGrid_DialogButtonClick(object sender, FlyGridViewPort port, Column col, NodeBase node)
{
  FolderBrowserDialog fbd = new FolderBrowserDialog();
  fbd.Description = \"Choose folder for \" + col.Caption;
  fbd.ShowNewFolderButton = true;
  string value = col.GetTextValue(node);
  if (value != null && value != string.Empty)
    fbd.SelectedPath = value;
  if (fbd.ShowDialog(this) == DialogResult.OK)
  {
    col.SetValue(node, fbd.SelectedPath);
  }
}
Link Posted: 18-Oct-2006 11:01
can you give me a vb.net example?
Link Posted: 18-Oct-2006 12:22
[VB.Net]
'flyGrid initialization
Private Sub InitFlyGrid(ByVal flyGrid As FlyGrid)
  '....
  flyGrid.Columns.Items(0).Caption = \"Application Folder\"
  'setup editor style
  flyGrid.Columns.Items(0).EditorStyle = EditorStyle.Dialog
  'connect to the DialogButtonClick event handler
  AddHandler flyGrid.DialogButtonClick, AddressOf flyGrid_DialogButtonClick
End Sub

'DialogButtonClick event handler
Private Sub flyGrid_DialogButtonClick(ByVal sender As Object, ByVal port As FlyGridViewPort, ByVal col As Column, ByVal node As NodeBase)
  Dim fbd As New FolderBrowserDialog
  fbd.Description = \"Choose folder for \" + col.Caption
  fbd.ShowNewFolderButton = True
  Dim value As String = col.GetTextValue(node)
  If (Not value Is Nothing And value  String.Empty) Then
    fbd.SelectedPath = value
  End If
  If (fbd.ShowDialog(Me) = DialogResult.OK) Then
    col.SetValue(node, fbd.SelectedPath)
  End If
End Sub
Link Posted: 18-Oct-2006 13:12
perfect, I am all set. THank you very much for your help.