TNxHtmlColumn questions !
#1
Posted 23 January 2008 - 09:18 PM
If so what procedure?
#2
Posted 23 January 2008 - 10:25 PM
I am not sure that I understand. Do you think about parsing html code inside cell and remove specific tag?
Best regards
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#3
Posted 24 January 2008 - 02:08 PM
#4
Posted 25 January 2008 - 01:28 AM
I am not sure that I understand, but try to guess:
- disabling formatting is not possible at this moment.
Best regards
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#5
Posted 26 January 2008 - 05:22 PM
When this is added ?
#6
Posted 26 January 2008 - 05:25 PM
Var
IdX : Integer;
IdY : Integer;
ForceExit : Boolean;
Begin
Result := FromWhere;
ForceExit := False;
Repeat
IdX := Pos( '<', Result );
IdY := Pos( '>', Result );
If ( ( IdX > 0 ) And ( IdY > IdX ) ) Then Begin
Result := Copy( Result, 1, ( IdX - 1 ) ) + Copy( Result, ( IdY + 1 ), MaxInt );
End Else Begin
ForceExit := True;
End;
Until ( ( IdX = 0 ) Or ( IdY = 0 ) Or ( ForceExit ) );
End;
#7
Posted 26 January 2008 - 06:58 PM
#8
Posted 27 January 2008 - 12:02 AM
I will think about this feature, but using this function is good solution.
For Html column, we may add a standard Inplace Editor for text.
Best regards
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#9
Posted 28 January 2008 - 03:13 PM
In my program formatting text with HTML tags is done with a button and not directly in the text!
#10
Posted 28 January 2008 - 05:58 PM
I will enable text inplace editor for this column, but please note that it will contain full content of cell. Example:
cell will be drawn:
this is bold text and this is italic text.
but when you click to edit cell, you will see again:
Best regards
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#11
Posted 02 February 2008 - 12:01 AM
But what it will be good to have an editing mode directly into HTML thumbnail (like Dreamweaver) without showing the tags.
For users who want only change the text without touching the tags and make mistakes.
Excuse my English, I am french !
#12
Posted 02 February 2008 - 01:12 AM
I think that the best solution will be editing cell outside grid (after clicking on button for example) inside some standalone html wyswyg editor component.
Please note that having such component is not a easy task but there are several html editor components for Delphi on market, but I am not sure which is the best.
Now I have in mind, that maybe you can use standard TRichEdit component and use it for editing HTML cells (after clicking on button, or inside OnSelectCell event).
Best regards
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users











