open detailrow without node

Hi!

is possibile to open detailrow data ( or detail grid too ) without have a column of type "dsnode" ?

I need to open detailed info only for current selected row or only  when is in editing mode.

is already have the "edit" and "post/cancel" buttons ... so node is uneasier to use 

thanks :)


Unfortunately it's currently only possible to open or close a detailrow using a node column.

However, this is a good suggestion and we'll consider adding this functionality in a future version.

there's  pox to change "+" dimension ?  i must use it on a small tablet...

thanks

You can assign an url for an image file of any size to the Nodes.NodeOpenURL and Nodes.NodeClosedURL properties.

thanks :)

There's any way to format a detail field ? 


I have a "memo" with some #13#10 inside but, in grid carriage return is not respected and i see all in a row...

i tried to use onGetCellDetail to overwrite #13#10 with br but the event is never called :(

ok, found:   onGetCellDetail is fired only if detailtemplate is enmpty.


and i made this on event :

 AValue := StringReplace(DATASET.FieldByName('NOTE').AsString , #13#10 , '<br>' , [rfReplaceAll]);

;)