-
Posts
145 -
Joined
-
Last visited
-
Days Won
2
Fábio Matte last won the day on October 13 2022
Fábio Matte had the most liked content!
Profile Information
-
Gender
Male
Contact Methods
-
Skype
matriz.fabio
Recent Profile Visitors
1939 profile views
Fábio Matte's Achievements

Active Member (3/4)
9
Reputation
-
roweditor How to Translate RowEditor Buttons in DBGrid? [Solved]
Fábio Matte replied to Fábio Matte's topic in General
Thank you very much, resolved: Here's a mini tutorial to help anyone who comes in the future. Tutorial: 1º ClientEvents > ExtEvents in DBGrid: Code: function afterrender(sender, eOpts) { var edPl=sender.editingPlugin; if (edPl && edPl.isRowEditor) { edPl.saveBtnText='Confirmar!'; edPl.cancelBtnText='Cancelar!'; }; } 2º Ext.grid.Panel > AfterRender: 3º - Result: -
roweditor How to Translate RowEditor Buttons in DBGrid? [Solved]
Fábio Matte replied to Fábio Matte's topic in General
I looked it up but couldn't find the correct search term, thanks for the tip. -
Fábio Matte started following How to Translate RowEditor Buttons in DBGrid? [Solved]
-
roweditor How to Translate RowEditor Buttons in DBGrid? [Solved]
Fábio Matte posted a topic in General
Good Evening, how can I translate or change the Caption of these buttons that are loaded when using the RowEditor function in the DBGrid? -
How to Define a CustomCSS in UniDBGrid.HeaderTitle
Fábio Matte replied to Fábio Matte's topic in General
Very good friend, it worked here. Where could I find all this information that I could use to customize ??- 3 replies
-
- headertitle
- unidbgrid.headertitle
-
(and 3 more)
Tagged with:
-
Hello, how are you guys? How do I define a CustomCSS in UniDBGrid.HeaderTitle. I was able to do it in the rest of the UniDBGrid, but the HeaderTitle property does not apply, how could I do it ??
- 3 replies
-
- headertitle
- unidbgrid.headertitle
-
(and 3 more)
Tagged with:
-
Guys, with insistence I ended up discovering that the reason for appearing Titles of the APPs exchanged, was that the two APPs had the same properties [http_transport] start_port=17384 in the index.cfg file, this caused confusion between the APPs. I believe that's it, but I'm still testing. Att. fabio
-
Good afternoon people! I have two systems hosted on the same IIS server, and from time to time an Application opens the Title with the Description of the other Application, and they keep alternating between one and the other. At times APP 01 opens with the Title of APP 02 and other times APP 02 opens with the Title of APP 01, and they are in this dull joke that I don't know how I should solve it. If anyone has any idea what I can check I'd be grateful.
-
Is Perfectly .
-
How to set Filtering.Editor in UniDBGrid dynamically? [ Solved ]
Fábio Matte replied to Fábio Matte's topic in General
Code: for i := 0 to Self.dbGridSQL_Resultado.Columns.Count - 1 do begin if (Self.dbGridSQL_Resultado.Columns[i].Filtering.Enabled) and (Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor <> nil) then begin if Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor is TUniEdit then TUniEdit(Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor).Clear else if Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor is TUniCheckComboBox then TUniCheckComboBox(Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor).ClearSelection else if Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor is TUniDateTimePicker then TUniDateTimePicker(Self.dbGridSQL_Resultado.Columns[i].Filtering.Editor).Text := ''; end; -
How to set Filtering.Editor in UniDBGrid dynamically? [ Solved ]
Fábio Matte replied to Fábio Matte's topic in General
-
How to set Filtering.Editor in UniDBGrid dynamically? [ Solved ]
Fábio Matte replied to Fábio Matte's topic in General
In fact, it's the way you suggested it to me, but I'm still wrong. I do this by clicking on a Button, TUniButton. -
How to set Filtering.Editor in UniDBGrid dynamically? [ Solved ]
Fábio Matte replied to Fábio Matte's topic in General
But at what point would I put this? Because I would need to pass in my column 0, a filter, according to what I type in UniEdit. FGrid.Columns.Items[0].Filtering.Editor := UniEdit; But that doesn't work, it gives the same error returned in the error image I posted. -
Hi, I'm trying to put the Filtering.Editor option on dynamically created columns in a UniDBGrid, but it doesn't work at all, in all the ways I try, I get the message "Argument out of range" when running. Here is the code I used to apply the filter: dbGridSQL_Resultado.Columns.Clear; if optControl = 1 then begin with dbGridSQL_Resultado do begin DataSource := dsFDMemTable; Columns.Items[0].Filtering.Editor := TUniEdit(Self.FindComponent('UniEdit1').Name); Columns.Items[0].Filtering.Enabled := True; end; end; Image Error:
-
Excellent resource, it worked here for me, it was a lot of show.